--- title: "Exercice 02 (3e partie)" author: "NEBIE " date: "18 janvier 2025" output: html_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ## Quelques explications ```{r cars} library(ggplot2) ggplot(data = cars)+ geom_line(aes(y=speed,x=dist),color="blue")+ theme_bw() ``` ```{r pressure, echo=FALSE} ggplot(data = cars)+ geom_histogram(aes(x=speed),fill="blue")+ theme_bw() ``` V