From 55afaad2e133838f572acaaf1b20d9a41cbcf983 Mon Sep 17 00:00:00 2001 From: 0e57e1b8e1a23d7aaeee34c5821213f6 <0e57e1b8e1a23d7aaeee34c5821213f6@app-learninglab.inria.fr> Date: Sat, 22 May 2021 17:41:53 +0000 Subject: [PATCH] Update 2 analyse-syndrome-grippal.Rmd --- module3/exo1/analyse-syndrome-grippal.Rmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 2183911..1e5897c 100644 --- a/module3/exo1/analyse-syndrome-grippal.Rmd +++ b/module3/exo1/analyse-syndrome-grippal.Rmd @@ -52,9 +52,9 @@ de ce jeux de données que nous préservons avec notre analyse. Il est inutile e ```{r} data_file = "syndrome-grippal.csv" -if (! file.exists(data_file)) - download.file(url, data_file) - +if (! file.exists(data_file)){ + download.file(data_url, data_file) + } data = read.csv(data_url, skip=1) ``` -- 2.18.1