From 46076015d06f01583e33a797a9e2348c497401aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rok=20Ro=C5=A1kar?= <rok.roskar@sdsc.ethz.ch> Date: Tue, 29 Sep 2020 12:22:18 +0000 Subject: [PATCH] chore: fix ecdc notebook --- notebooks/covid-19-ecdc.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/covid-19-ecdc.ipynb b/notebooks/covid-19-ecdc.ipynb index d647d5059..893b6835a 100644 --- a/notebooks/covid-19-ecdc.ipynb +++ b/notebooks/covid-19-ecdc.ipynb @@ -81,7 +81,7 @@ "metadata": {}, "outputs": [], "source": [ - "nthresh=100000\n", + "nthresh=300000\n", "country_max_ser = df.set_index(['country_label', 'date'])['positive'].groupby(level='country_label').max()\n", "countries_over_thresh = country_max_ser[country_max_ser>nthresh].index\n", "countries_over_thresh = [c for c in countries_over_thresh if c not in set(['Andorra', 'Iceland', 'San Marino'])]\n", @@ -124,7 +124,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Deaths in countries with over 100,000 cases, ordered by total number of deaths. " + "Deaths in countries with over 300,000 cases, ordered by total number of deaths. " ] }, { -- GitLab