From 2fb2c249d6863ed99b444030c01c48cf0d3a19ff Mon Sep 17 00:00:00 2001 From: 9f8ada2c29b8f833ac8af73a374f9b02 <9f8ada2c29b8f833ac8af73a374f9b02@app-learninglab.inria.fr> Date: Thu, 18 Nov 2021 15:42:10 +0000 Subject: [PATCH] add comments --- module3/exo1/analyse-syndrome-grippal.ipynb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/module3/exo1/analyse-syndrome-grippal.ipynb b/module3/exo1/analyse-syndrome-grippal.ipynb index b6b965b..d31c684 100644 --- a/module3/exo1/analyse-syndrome-grippal.ipynb +++ b/module3/exo1/analyse-syndrome-grippal.ipynb @@ -61,7 +61,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 35, "metadata": { "scrolled": true }, @@ -1028,12 +1028,15 @@ "[1933 rows x 10 columns]" ] }, - "execution_count": 34, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ + "# On essaie de lire le fichier csv local si il existe, sinon on le telecharge\n", + "# de maniere a avoir une copie locale\n", + "\n", "try:\n", " raw_data = pd.read_csv(data_filename, skiprows=1)\n", "except FileNotFoundError:\n", -- 2.18.1