Replace exercice_fr.Rmd

parent 30c3561e
......@@ -19,4 +19,12 @@ ecart_type <- sd(données)
min <- min(données)
mediane <- median(données)
max <- max(données)
```
## Affichage graphique
```{r}
par(pty="s") #Avoir des graphiques carrés
plot(données,xlim=c(0,100),ylim=c(0,25),xlab="",ylab="",yaxs="i",xaxs = "i",panel.first=grid(),type="l",col="blue",tck=0.01)
hist(données,breaks = seq(min(données),max(données),length=11),xlim=c(0,25),ylim=c(0,25),xlab="",ylab="",main="",yaxs="i",xaxs = "i",col="blue",tck=0.01)
box()
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment