diff --git a/notebooks/Dashboard.ipynb b/notebooks/Dashboard.ipynb
index 72c5d7c250752ac47bff41d84238aa17041a6e87..81a9f0ea39a8c8382fa5dcb2ae5747d74fa95cd3 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",