diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 21839110d2df9b653fd8d637b706069a7d1ac042..1e5897caddbb85dfe3f9b799786b6dd7e0ede1dc 100644 --- a/module3/exo1/analyse-syndrome-grippal.Rmd +++ b/module3/exo1/analyse-syndrome-grippal.Rmd @@ -52,9 +52,9 @@ de ce jeux de données que nous préservons avec notre analyse. Il est inutile e ```{r} data_file = "syndrome-grippal.csv" -if (! file.exists(data_file)) - download.file(url, data_file) - +if (! file.exists(data_file)){ + download.file(data_url, data_file) + } data = read.csv(data_url, skip=1) ```