diff --git a/module3/exo1/influenza-like-illness-analysis.Rmd b/module3/exo1/influenza-like-illness-analysis.Rmd index 8047fa03d3d3cc003416749dd44be6adbb072d04..2f19de5b6c021ada4515e87bfcae1afb56f78bad 100644 --- a/module3/exo1/influenza-like-illness-analysis.Rmd +++ b/module3/exo1/influenza-like-illness-analysis.Rmd @@ -45,7 +45,15 @@ This is the documentation of the data from [the download site](https://ns.sentiw The first line of the CSV file is a comment, which we ignore with `skip=1`. ```{r} -data = read.csv(data_url, skip=1) +data_file = "syndrome-grippal.csv" +if (!file.exists(data_file)) { + download.file(data_url, data_file, method="auto") +} +``` + +### Lecture +```{r} +data = read.csv(data_file, skip=1) ``` Let's have a look at what we got: