Final comit

parent 19cd997e
...@@ -257,6 +257,25 @@ summary(data) ...@@ -257,6 +257,25 @@ summary(data)
: Max. :2021-11-29 Max. :36298 : 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 * Étude de l'incidence annuelle
** Calcul de l'incidence annuelle ** Calcul de l'incidence annuelle
......
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