From fee0ac094620e71792212293f470a3681f4549bc Mon Sep 17 00:00:00 2001 From: 4596cd1e3e04bd9a5f7a8883519d83c8 <4596cd1e3e04bd9a5f7a8883519d83c8@app-learninglab.inria.fr> Date: Wed, 8 Jun 2022 12:31:33 +0000 Subject: [PATCH] =?UTF-8?q?MinMaxEpid=C3=A9mie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module3/exo1/analyse-syndrome-grippal.ipynb | 34 +++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/module3/exo1/analyse-syndrome-grippal.ipynb b/module3/exo1/analyse-syndrome-grippal.ipynb index 1b28751..039d6dc 100644 --- a/module3/exo1/analyse-syndrome-grippal.ipynb +++ b/module3/exo1/analyse-syndrome-grippal.ipynb @@ -2488,6 +2488,40 @@ "yearly_incidence.hist(xrot=20)" ] }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5466192\n" + ] + } + ], + "source": [ + "print(max(yearly_incidence[year]))" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "938731\n" + ] + } + ], + "source": [ + "print(min(yearly_incidence[year]))" + ] + }, { "cell_type": "code", "execution_count": null, -- 2.18.1