From 85a2fcfe707d100bbd37cda2ccc80edec6078d3e 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:26:55 +0000
Subject: [PATCH] chore: update dashboard

---
 notebooks/Dashboard.ipynb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/notebooks/Dashboard.ipynb b/notebooks/Dashboard.ipynb
index 72c5d7c25..81a9f0ea3 100644
--- a/notebooks/Dashboard.ipynb
+++ b/notebooks/Dashboard.ipynb
@@ -164,7 +164,7 @@
     "    text=alt.Text('positive_100k:Q', format=\".3\")\n",
     ")\n",
     "\n",
-    "chart = (bars + text).properties(height=900, title=f\"Confirmed cases per 100k inhabitants\")\n",
+    "chart = (bars + text).properties(height=1400, title=f\"Confirmed cases per 100k inhabitants\")\n",
     "display(chart)\n",
     "display(HTML('''\n",
     "<p style=\"font-size: smaller\">Data Sources: \n",
@@ -188,7 +188,7 @@
    "outputs": [],
    "source": [
     "# select countries over a certain per capita case threshold\n",
-    "per_capita_thresh = 500\n",
+    "per_capita_thresh = 1200\n",
     "countries_over_thresh_per_capita = latest_df[latest_df.positive_100k > per_capita_thresh].country_label\n",
     "countries_over_thresh_per_capita = [c for c in countries_over_thresh_per_capita if c not in set(['Andorra', 'Iceland', 'San Marino'])]\n",
     "\n",
-- 
GitLab