diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 771e78faac371f23c921f7f7aecc87f2100e9059..c14f755038b6f218a9f4edc5051797a5bf42a712 100644 --- a/module3/exo1/analyse-syndrome-grippal.Rmd +++ b/module3/exo1/analyse-syndrome-grippal.Rmd @@ -47,6 +47,13 @@ La première ligne du fichier CSV est un commentaire, que nous ignorons en préc data = read.csv(data_url, skip=1) ``` +### Dépôt dans fichier local +```{r} +setwd("D:/Utilisateurs/Christine/Documents/maison/travail/MOOC_reproductibilite/mooc-rr/module3") +write.table(data, "data.csv") +``` + + Regardons ce que nous avons obtenu: ```{r} head(data)