Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed lectures/datasets/chapter_3.xlsx
Binary file not shown.
Binary file removed lectures/datasets/longprices.xls
Binary file not shown.
6 changes: 3 additions & 3 deletions lectures/inflation_history.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Let us bring the data into pandas from a spreadsheet that is [hosted on github](

```{code-cell} ipython3
# Import data and clean up the index
data_url = "https://github.com/QuantEcon/lecture-python-intro/raw/main/lectures/datasets/longprices.xls"
data_url = "https://github.com/QuantEcon/data-lectures/raw/main/lectures/longprices.xls"
Comment thread
mmcky marked this conversation as resolved.
Outdated
df_fig5 = pd.read_excel(data_url,
sheet_name='all',
header=2,
Expand Down Expand Up @@ -225,7 +225,7 @@ We have added logarithms of the exchange rates vis-à-vis the US dollar to
from chapter 3 of {cite}`sargent2013rational`.

Data underlying our graphs appear in tables in an appendix to chapter 3 of {cite}`sargent2013rational`.
We have transcribed all of these data into a spreadsheet {download}`chapter_3.xlsx <https://github.com/QuantEcon/lecture-python-intro/raw/main/lectures/datasets/chapter_3.xlsx>` that we read into pandas.
We have transcribed all of these data into a spreadsheet {download}`chapter_3.xlsx <https://github.com/QuantEcon/data-lectures/raw/main/lectures/chapter_3.xlsx>` that we read into pandas.

In the code cell below we clean the data and build a `pandas.dataframe`.

Expand Down Expand Up @@ -355,7 +355,7 @@ We prepare the data for each country

```{code-cell} ipython3
# Import data
data_url = "https://github.com/QuantEcon/lecture-python-intro/raw/main/lectures/datasets/chapter_3.xlsx"
data_url = "https://github.com/QuantEcon/data-lectures/raw/main/lectures/chapter_3.xlsx"
xls = pd.ExcelFile(data_url)

# Select relevant sheets
Expand Down
Loading