diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 771e78faac371f23c921f7f7aecc87f2100e9059..0c340dfa8ad400c3300e03ff7a08ef6f3bbc6f96 100644 --- a/module3/exo1/analyse-syndrome-grippal.Rmd +++ b/module3/exo1/analyse-syndrome-grippal.Rmd @@ -46,6 +46,15 @@ La première ligne du fichier CSV est un commentaire, que nous ignorons en préc ```{r} data = read.csv(data_url, skip=1) ``` +Sauvons une copie localement +```{r} +write.csv(data, "copie_data.csv") +``` + +Ré-importons la copie +```{r} +data <- read.csv("copie_data.csv") +``` Regardons ce que nous avons obtenu: ```{r}