diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 6342d807f7e723f984a4ce4e3ad89d59722dfd4c..de662799d46d08e3490374bb227d6136750ef768 100644 --- a/module3/exo1/analyse-syndrome-grippal.Rmd +++ b/module3/exo1/analyse-syndrome-grippal.Rmd @@ -25,8 +25,7 @@ Les données de l'incidence du syndrome grippal sont disponibles du site Web du ```{r} if(!file.exists("./incidence-PAY-3.csv")){ data_url = "http://www.sentiweb.fr/datasets/incidence-PAY-3.csv" - data_dwnld = read.csv(data_url) - write.csv(data_dwnld, "./incidence-PAY-3.csv", row.names = FALSE) + download.file(data_url, "./incidence-PAY-3.csv") } ```