--- 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} plot(data, type = 'l', col = 'blue') ``` ```{r} hist(data, xlim = c(0, 25), ylim = c(0, 25), main = "", col = 'blue', breaks = 10) ```