From be27fdfc615c90dcf37740e276d930ee8e02242d Mon Sep 17 00:00:00 2001 From: ff40bc33242fae2fc8b9c16cc2f290ca Date: Sat, 17 Apr 2021 21:59:24 +0000 Subject: [PATCH] Update exercice_en.Rmd --- module2/exo3/exercice_en.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module2/exo3/exercice_en.Rmd b/module2/exo3/exercice_en.Rmd index 77d629e..c59533b 100644 --- a/module2/exo3/exercice_en.Rmd +++ b/module2/exo3/exercice_en.Rmd @@ -10,11 +10,11 @@ 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, # Sequence Plot ```{r} -plot(x, type="l") +plot(x, type="l", col="blue") ``` # Histogram ```{r} -hist(x) +hist(x, col="blue") ``` \ No newline at end of file -- 2.18.1