From 2cb591bd21fc4c8244f60a02b3dfa7a15d2e907e Mon Sep 17 00:00:00 2001 From: 8057a7ae58e587eb7d45460ceced4594 <8057a7ae58e587eb7d45460ceced4594@app-learninglab.inria.fr> Date: Thu, 23 Sep 2021 19:02:05 +0000 Subject: [PATCH] added comments --- module3/exo1/influenza-like-illness-analysis.ipynb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/module3/exo1/influenza-like-illness-analysis.ipynb b/module3/exo1/influenza-like-illness-analysis.ipynb index ba1e653..fa6b50e 100644 --- a/module3/exo1/influenza-like-illness-analysis.ipynb +++ b/module3/exo1/influenza-like-illness-analysis.ipynb @@ -26,6 +26,13 @@ "The data on the incidence of influenza-like illness are available from the Web site of the [Réseau Sentinelles](http://www.sentiweb.fr/). We download them as a file in CSV format, in which each line corresponds to a week in the observation period. Only the complete dataset, starting in 1984 and ending with a recent week, is available for download." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Observation**: We now have a local file with the data, so the following line has been commented out:" + ] + }, { "cell_type": "code", "execution_count": 10, @@ -57,6 +64,13 @@ "The first line of the CSV file is a comment, which we ignore with `skip=1`." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Observation**: We modified and now we read the data from the file *raw_data.csv*:" + ] + }, { "cell_type": "code", "execution_count": 11, -- 2.18.1