From e08fdb76ea1a5cb3d3f723c99aeb44ef4c198118 Mon Sep 17 00:00:00 2001 From: ec6c2d38b7cace4ce8fa0c82ca665c1e Date: Fri, 10 Dec 2021 18:22:11 +0000 Subject: [PATCH] Final comit --- module3/exo2/exercice_python_fr.org | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/module3/exo2/exercice_python_fr.org b/module3/exo2/exercice_python_fr.org index a8cdf54..78982ae 100644 --- a/module3/exo2/exercice_python_fr.org +++ b/module3/exo2/exercice_python_fr.org @@ -257,6 +257,25 @@ summary(data) : Max. :2021-11-29 Max. :36298 + +** Inspection +Regardons enfin à quoi ressemblent nos données ! +#+BEGIN_SRC R :results output graphics :file incidence-plot.png :exports both +plot(data, type="l", xlab="Date", ylab="Incidence hebdomadaire") +#+END_SRC + +#+RESULTS: +[[file:incidence-plot.png]] + +Un zoom sur les dernières années montre mieux la situation des pics en hiver. Le creux des incidences se trouve en été. +#+BEGIN_SRC R :results output graphics :file incidence-plot-zoom.png :exports both +plot(tail(data, 200), type="l", xlab="Date", ylab="Incidence hebdomadaire") +#+END_SRC + +#+RESULTS: +[[file:incidence-plot-zoom.png]] + + * Étude de l'incidence annuelle ** Calcul de l'incidence annuelle -- 2.18.1