Update influenza-like-illness-analysis.Rmd

parent 4d25f80f
---
# Vérifier si le fichier local existe, sinon le télécharger
if (!file.exists("module3/exo1/syndrome_grippal.csv")) {
download.file("https://www.sentiweb.fr/datasets/incidence-PAY-FR.csv",
destfile = "module3/exo1/syndrome_grippal.csv",
mode = "wb")
}
# Charger ensuite les données locales
data <- read.csv("module3/exo1/syndrome_grippal.csv", sep = ";", header = TRUE)
# Aperçu rapide
head(data)
title: "Incidence of influenza-like illness in France"
author: "Konrad Hinsen"
output:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment