--- title: "Réaliser un affichage graphique" author: "Jérôme Riera" date: "28/07/24" output: html_document --- ## Création du plot ```{r_plot} plot(values, type = "l",col="blue", xlim=c(1,100),ylim = c(1,25),ylab = "", xlab = "") ``` ## Création de l'histogramme ```{r_histo} hist(values, xlim = c(0,25), ylim = c(0,25), col = "blue", main = "", xlab = "",ylab = "") ```