From 3143a288f89848235005430c419ffbca9d6f1728 Mon Sep 17 00:00:00 2001 From: feee8ecec645c53ceeda57e948ea51be Date: Fri, 23 Jul 2021 22:32:54 +0000 Subject: [PATCH] Update exercice_en.Rmd --- module2/exo2/exercice_en.Rmd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/module2/exo2/exercice_en.Rmd b/module2/exo2/exercice_en.Rmd index 2bfa271..abcef55 100644 --- a/module2/exo2/exercice_en.Rmd +++ b/module2/exo2/exercice_en.Rmd @@ -18,31 +18,31 @@ x <- 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.3, ## Exercice 02-2 -###1. What is the average ? +### 1. What is the average ? ```{r} round(mean(x), digits=2) ``` -###2. What is the minimum ? +### 2. What is the minimum ? ```{r} round(min(x), digits=2) ``` -###3. What is the maximum ? +### 3. What is the maximum ? ```{r} round(max(x), digits=2) ``` -###4. What is the median ? +### 4. What is the median ? ```{r} round(median(x), digits=2) ``` -###5. What is the standard deviation ? +### 5. What is the standard deviation ? ```{r} round(sd(x), digits=2) -- 2.18.1