Skip to content

Commit

Permalink
update all fl to data_url
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcky committed Feb 20, 2024
1 parent 5fb3ffd commit 7129b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lectures/simple_linear_regression.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ So let's built a list of the columns we want to import
```{code-cell} ipython3
cols = ['Code', 'Year', 'Life expectancy at birth (historical)', 'GDP per capita']
df = pd.read_csv(fl, usecols=cols)
df = pd.read_csv(data_url, usecols=cols)
df
```
Expand Down

0 comments on commit 7129b6b

Please sign in to comment.