Skip to content

Instantly share code, notes, and snippets.

@ccerv1
Created April 26, 2019 05:14
Show Gist options
  • Select an option

  • Save ccerv1/5b3d8e0ef6656fb787db0ff544e83555 to your computer and use it in GitHub Desktop.

Select an option

Save ccerv1/5b3d8e0ef6656fb787db0ff544e83555 to your computer and use it in GitHub Desktop.
Ingests our three datasets for our price analysis
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