From c4491f9af9e1a2828ee5550cbe7f25bdbd4908f7 Mon Sep 17 00:00:00 2001 From: 15900e6525d86148f1e934934f31b393 <15900e6525d86148f1e934934f31b393@app-learninglab.inria.fr> Date: Mon, 20 Sep 2021 20:52:27 +0000 Subject: [PATCH] Update influenza-like-illness-analysis.Rmd --- module3/exo1/influenza-like-illness-analysis.Rmd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/module3/exo1/influenza-like-illness-analysis.Rmd b/module3/exo1/influenza-like-illness-analysis.Rmd index af27f47..25ca1b1 100644 --- a/module3/exo1/influenza-like-illness-analysis.Rmd +++ b/module3/exo1/influenza-like-illness-analysis.Rmd @@ -27,7 +27,6 @@ data_url = "http://www.sentiweb.fr/datasets/incidence-PAY-3.csv" ``` ### Download -The first line of the CSV file is a comment, which we ignore with `skip=1`. ```{r} data_file = "syndrome-grippal.csv" if (!file.exists(data_file)) { @@ -52,6 +51,9 @@ This is the documentation of the data from [the download site](https://ns.sentiw ### Lecture + + +The first line of the CSV file is a comment, which we ignore with `skip=1`. ```{r} data = read.csv(data_file, skip=1) ``` -- 2.18.1