From 89dca04d16f5969a7abb7cc3e2e9fff3a249fefc Mon Sep 17 00:00:00 2001 From: Liubov Kurafeeva Date: Wed, 9 Apr 2025 22:11:14 -0700 Subject: [PATCH] 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. --- site/en/tutorials/structured_data/time_series.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/en/tutorials/structured_data/time_series.ipynb b/site/en/tutorials/structured_data/time_series.ipynb index 31aab38485..c1dd25b1c6 100644 --- a/site/en/tutorials/structured_data/time_series.ipynb +++ b/site/en/tutorials/structured_data/time_series.ipynb @@ -158,7 +158,7 @@ }, "outputs": [], "source": [ - "df = pd.read_csv(csv_path)\n", + "df = pd.read_csv(os.path.join(csv_path,"jena_climate_2009_2016.csv"))\n", "# Slice [start:stop:step], starting from index 5 take every 6th record.\n", "df = df[5::6]\n", "\n",