From 7129b6bcf9ece91f4c6df8b7038e5488b6051a73 Mon Sep 17 00:00:00 2001 From: mmcky Date: Tue, 20 Feb 2024 16:52:30 +1100 Subject: [PATCH] update all fl to data_url --- lectures/simple_linear_regression.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/simple_linear_regression.md b/lectures/simple_linear_regression.md index af7ac960..770902bd 100644 --- a/lectures/simple_linear_regression.md +++ b/lectures/simple_linear_regression.md @@ -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 ```