--- title: "Votre titre" author: "Votre nom" date: "La date du jour" output: html_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ``` {r} data_url = "https://www.sentiweb.fr/datasets/incidence-PAY-7.csv" ``` ``` {r} data = read.csv(data_url,skip=1) head(data) ```