Created
April 26, 2019 05:14
-
-
Save ccerv1/5b3d8e0ef6656fb787db0ff544e83555 to your computer and use it in GitHub Desktop.
Ingests our three datasets for our price analysis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| parent_url = 'https://raw.githubusercontent.com/numbers-coffee/blog/master/real_prices/' | |
| currency = pd.read_csv(parent_url + 'currency.csv') | |
| inflation = pd.read_csv(parent_url + 'inflation.csv') | |
| prices = pd.read_csv(parent_url + 'prices.csv') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment