├── .github └── workflows │ └── actions.yml ├── Makefile ├── README.md ├── archive ├── FP.CPI.TOTL.ZG.csv └── NY.GDP.DEFL.KD.ZG.csv ├── data ├── inflation-consumer.csv └── inflation-gdp.csv ├── datapackage.json └── scripts └── process.py /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/README.md -------------------------------------------------------------------------------- /archive/FP.CPI.TOTL.ZG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/archive/FP.CPI.TOTL.ZG.csv -------------------------------------------------------------------------------- /archive/NY.GDP.DEFL.KD.ZG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/archive/NY.GDP.DEFL.KD.ZG.csv -------------------------------------------------------------------------------- /data/inflation-consumer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/data/inflation-consumer.csv -------------------------------------------------------------------------------- /data/inflation-gdp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/data/inflation-gdp.csv -------------------------------------------------------------------------------- /datapackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/datapackage.json -------------------------------------------------------------------------------- /scripts/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasets/inflation/HEAD/scripts/process.py --------------------------------------------------------------------------------