diff --git a/module3/exo1/influenza-like-illness-analysis.Rmd b/module3/exo1/influenza-like-illness-analysis.Rmd index af27f47276616bc4c00a3736d2d21ff0b66ccb66..25ca1b1f57fba4ce4aa0f04cf8c48b9eddab7346 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) ```