From d0b185d7ce8fcf7e201d866bdb7c238bddb492cc Mon Sep 17 00:00:00 2001 From: kp992 Date: Sat, 19 Apr 2025 11:55:11 -0700 Subject: [PATCH] Update data url for fetching the dataset --- lectures/long_run_growth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/long_run_growth.md b/lectures/long_run_growth.md index 93e01f07..b39e8965 100644 --- a/lectures/long_run_growth.md +++ b/lectures/long_run_growth.md @@ -94,7 +94,7 @@ Here we read the Maddison data into a pandas `DataFrame`: ```{code-cell} ipython3 pyodide_http.patch_all() -data_url = "https://github.com/QuantEcon/lecture-python-intro/raw/main/lectures/datasets/mpd2020.xlsx" +data_url = "https://raw.githubusercontent.com/QuantEcon/lecture-python-intro/main/lectures/datasets/mpd2020.xlsx" data = pd.read_excel(data_url, sheet_name='Full data') data.head()