From e4bbbc119c6d08f014a4d61bf7e0d331f76f0d58 Mon Sep 17 00:00:00 2001 From: 3f03c2c14c4cd9d0ee79b67f37ac25fe <3f03c2c14c4cd9d0ee79b67f37ac25fe@app-learninglab.inria.fr> Date: Thu, 18 Mar 2021 14:01:51 +0000 Subject: [PATCH] Update influenza-like-illness-analysis.Rmd --- module3/exo1/influenza-like-illness-analysis.Rmd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/module3/exo1/influenza-like-illness-analysis.Rmd b/module3/exo1/influenza-like-illness-analysis.Rmd index cd788fa..d1ea11a 100644 --- a/module3/exo1/influenza-like-illness-analysis.Rmd +++ b/module3/exo1/influenza-like-illness-analysis.Rmd @@ -26,13 +26,13 @@ The data on the incidence of influenza-like illness are available from the Web s data_url = "http://www.sentiweb.fr/datasets/incidence-PAY-3.csv" ``` -In order to protect us in case the Réseau Sentinelles Web server disappears or is modified, we make a local copy of this dataset that we store together with our analysis. It is unnecessary and even risky to download the data at each execution, because in case of a malfunction we might be replacing our file by a corrupted version. Therefore we download the data only if no local copy exists. +In order to protect us in case the Réseau Sentinelles Web server disappears or is modified, we make a local copy of this dataset that we store together with our analysis. It is unnecessary and even risky to download the data at each execution, because in case of a malfunction we might be replacing our file by a corrupted version. Therefore we download the data only if no local copy exists. -```{r} -data_file = "syndrome-grippal.csv" -if (!file.exists(data_file)) { - download.file(data_url, data_file, method="auto") -} +```{r} +data_file = "syndrome-grippal.csv" +if (!file.exists(data_file)) { + download.file(data_url, data_file, method="auto") +} ``` This is the documentation of the data from [the download site](https://ns.sentiweb.fr/incidence/csv-schema-v1.json): -- 2.18.1