diff --git a/module2/exo2/exercice_fr.Rmd b/module2/exo2/exercice_fr.Rmd index 1052ef55a50f81eb5e683f4afd9791dd16224712..859b72499bf0f26cf7417bb960c09038ba0a7a14 100644 --- a/module2/exo2/exercice_fr.Rmd +++ b/module2/exo2/exercice_fr.Rmd @@ -20,3 +20,16 @@ La moyenne: mean(dataset) ``` +Le maximum: +```{r} +max(dataset) +``` +La médiane: +```{r} +median(dataset) +``` +L'écart-type: +```{r} +sd(dataset) +``` +