diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 771e78faac371f23c921f7f7aecc87f2100e9059..d8fef4945eb576a14f89d42157c549c91e468804 100644 --- a/module3/exo1/analyse-syndrome-grippal.Rmd +++ b/module3/exo1/analyse-syndrome-grippal.Rmd @@ -43,8 +43,17 @@ Voici l'explication des colonnes donnée sur le [sur le site d'origine](https:// La première ligne du fichier CSV est un commentaire, que nous ignorons en précisant `skip=1`. ### Téléchargement +```{r} +if (file.exists("D:/Mes Donnees/MyPhd/Reproductibilite/mooc-rr/module3/exo1/incidence-PAY-3.csv")==F){ +local = read.csv(data_url) +write.csv(local,"D:/Mes Donnees/MyPhd/Reproductibilite/mooc-rr/module3/exo1/incidence-PAY-3.csv") +} + +``` + ```{r} data = read.csv(data_url, skip=1) +data ``` Regardons ce que nous avons obtenu: