Commit 92228c9e authored by Thibault Leboucher's avatar Thibault Leboucher

resolution_exo2_suite

parent c6aaf2f2
......@@ -16,11 +16,26 @@ vec <- c(14.0, 7.6, 11.2, 12.8, 12.5, 9.9, 14.9, 9.4, 16.9, 10.2, 14.9, 18.1, 7.
## Moyenne
```{r}
mean(vec)
round(mean(vec),2)
```
## Minimum
```{r}
round(min(vec),2)
```
## Maximum
```{r}
round(max(vec),2)
```
## Médiane
```{r}
round(median(vec),2)
```
## Écart-type
```{r}
sd(vec)
round(sd(vec),2)
```
This diff is collapsed.
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