Skip to content

Commit 89dca04

Browse files
authored
Bug fix: Update time_series.ipynb
Running this notebook in Google Colab produces an error because the file being unzipped in a folder and previous code is unable to find it.
1 parent 18c3a45 commit 89dca04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/structured_data/time_series.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
},
159159
"outputs": [],
160160
"source": [
161-
"df = pd.read_csv(csv_path)\n",
161+
"df = pd.read_csv(os.path.join(csv_path,"jena_climate_2009_2016.csv"))\n",
162162
"# Slice [start:stop:step], starting from index 5 take every 6th record.\n",
163163
"df = df[5::6]\n",
164164
"\n",

0 commit comments

Comments
 (0)