--- title: "Exo3" author: "Votre nom" date: "22/11/24" output: html_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ## Graphique 1 ```{r} plot(x, type = "l", col = "blue", xlab = "", ylab = "") ``` ## Graphique 2 ```{r} hist(x, col = "blue", xlab = "", ylab = "", main = "") ```