diff --git a/notebooks/Dashboard.ipynb b/notebooks/Dashboard.ipynb index 24e40e7f408df93e3941560cc31627b5311984e2..228a2c62598068229ae6119b56aeb407554c86cd 100644 --- a/notebooks/Dashboard.ipynb +++ b/notebooks/Dashboard.ipynb @@ -50,7 +50,9 @@ "geodata_df = helper.read_geodata(geodata_path)\n", "\n", "# Identify countries with 100 or more cases\n", - "countries_over_thresh = helper.countries_with_number_of_cases(jhu_frames_map, 'confirmed', 100)" + "countries_over_thresh = helper.countries_with_number_of_cases(jhu_frames_map, 'confirmed', 100)\n", + "# Filter out some very small countries\n", + "countries_over_thresh = [c for c in countries_over_thresh if c not in set(['San Marino', 'Iceland'])]" ] }, {