diff --git a/notebooks/Dashboard.ipynb b/notebooks/Dashboard.ipynb
index 0ceeacd7136eb53b9c59b219971debb67183e916..102054769eb5f7a858d9f159184a874f777e8129 100644
--- a/notebooks/Dashboard.ipynb
+++ b/notebooks/Dashboard.ipynb
@@ -188,7 +188,7 @@
    "outputs": [],
    "source": [
     "# select countries over a certain per capita case threshold\n",
-    "per_capita_thresh = 200\n",
+    "per_capita_thresh = 300\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",