Commit 2c789534 authored by Sophie Drogue's avatar Sophie Drogue

Fin de l'exo

parent d9e26d56
...@@ -38,3 +38,13 @@ max(mydata) ...@@ -38,3 +38,13 @@ max(mydata)
```{r min, echo=FALSE} ```{r min, echo=FALSE}
min(mydata) min(mydata)
``` ```
## 1er graphique plot
```{r graf1, echo=FALSE}
plot(mydata, type="l", col="blue", yaxs="i",xaxs="i", xlim=c(0,100), xaxp = c(0,100,5), ylim=c(0,25), yaxp= c(0,25,5), panel.first=grid())
```
## 2ème graphique hit
```{r graf2, echo=FALSE}
hist(mydata, breaks=seq(min(mydata), max(mydata),length.out = 11), col="blue",yaxs="i",xaxs="i",xlim=c(0,25),xaxp= c(0,25,5), ylim=c(0,25), yaxp= c(0,25,5), panel.first=grid())
```
\ 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