@@ -408,12 +408,12 @@ Let's consider two economic variables GDP per capita and Life Expectancy.
|
408 | 408 | <iframe src="https://ourworldindata.org/grapher/life-expectancy-vs-gdp-per-capita" loading="lazy" style="width: 100%; height: 600px; border: 0px none;"></iframe> |
409 | 409 | ::: |
410 | 410 | |
411 | | -You can download {download}`a copy of the data here <https://github.com/QuantEcon/lecture-python-intro/raw/main/lectures/_static/lecture_specific/simple_linear_regression/life-expectancy-vs-gdp-per-capita.csv>` if you get stuck |
| 411 | +You can download {download}`a copy of the data here <https://raw.githubusercontent.com/QuantEcon/data-lectures/main/lectures/life-expectancy-vs-gdp-per-capita.csv>` if you get stuck |
412 | 412 | |
413 | 413 | **Q3:** Use `pandas` to import the `csv` formatted data and plot a few different countries of interest |
414 | 414 | |
415 | 415 | ```{code-cell} ipython3 |
416 | | -data_url = "https://github.com/QuantEcon/lecture-python-intro/raw/main/lectures/_static/lecture_specific/simple_linear_regression/life-expectancy-vs-gdp-per-capita.csv" |
| 416 | +data_url = "https://raw.githubusercontent.com/QuantEcon/data-lectures/main/lectures/life-expectancy-vs-gdp-per-capita.csv" |
417 | 417 | df = pd.read_csv(data_url, nrows=10) |
418 | 418 | ``` |
419 | 419 | |
|