From 7921418c4a8b8dc334d310bdf855882de40a1640 Mon Sep 17 00:00:00 2001 From: Jeanne Combes Date: Tue, 28 Apr 2020 23:00:45 +0200 Subject: [PATCH] ex1 --- module3/exo1/analyse-syndrome-grippal.Rmd | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/module3/exo1/analyse-syndrome-grippal.Rmd b/module3/exo1/analyse-syndrome-grippal.Rmd index 771e78f..1094cc3 100644 --- a/module3/exo1/analyse-syndrome-grippal.Rmd +++ b/module3/exo1/analyse-syndrome-grippal.Rmd @@ -1,6 +1,6 @@ --- title: "Analyse de l'incidence du syndrôme grippal" -author: "Konrad Hinsen" +author: "Jeanne Combes" output: pdf_document: toc: true @@ -26,6 +26,14 @@ Les données de l'incidence du syndrome grippal sont disponibles du site Web du data_url = "http://www.sentiweb.fr/datasets/incidence-PAY-3.csv" ``` +```{r} +data_file = "syndrome-grippal.csv" +if (!file.exists(data_file)) { + download.file(data_url, data_file, method="auto") +} +``` + + Voici l'explication des colonnes donnée sur le [sur le site d'origine](https://ns.sentiweb.fr/incidence/csv-schema-v1.json): | Nom de colonne | Libellé de colonne | -- 2.18.1