From 156de0d52c10ca37c38f87da631eefa1a1ae8459 Mon Sep 17 00:00:00 2001 From: 4fca29d42687043eaa4d6014ad8dd57f <4fca29d42687043eaa4d6014ad8dd57f@app-learninglab.inria.fr> Date: Mon, 7 Jul 2025 09:30:11 +0000 Subject: [PATCH] Update analyse-syndrome-grippal.Rmd --- module3/exo1/analyse-syndrome-grippal.Rmd | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 771e78f..0c340df 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} -- 2.18.1