Skip to content

Instantly share code, notes, and snippets.

@jason-curtis
Last active March 27, 2020 16:37
Show Gist options
  • Save jason-curtis/4206ee5f59171165acce87467067dae6 to your computer and use it in GitHub Desktop.
Save jason-curtis/4206ee5f59171165acce87467067dae6 to your computer and use it in GitHub Desktop.
Plotly coronavirus exploration.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "Coronavirus data exploration quickstart.ipynb",
"provenance": [],
"collapsed_sections": [],
"authorship_tag": "ABX9TyPCAovSii/SEM6mo6VlXxSD",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/thatneat/e1e8f25852f4dbe548cb09443c9163a1/coronavirus-data-exploration-quickstart.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "XkFsnmyY-zww",
"colab_type": "text"
},
"source": [
"# Plotly + Coronavirus quickstart notebook\n",
"\n",
"This notebook pulls data from the [Corona Data Scraper](https://coronadatascraper.com) and generates plots.\n",
"\n",
"Feel free to copy & modify it. There is also a version available as a [Gist](https://gist.github.com/thatneat/4206ee5f59171165acce87467067dae6).\n",
"\n",
"\n",
"**⬇ If you just want to see the pretty plots, scroll down ⬇**\n",
"\n",
"\n",
"### Ideas\n",
"\n",
"* ☑️ plot confirmed cases over time\n",
" * ☑️ log plot\n",
" * ☑️ normalize start date\n",
"* ☑️ compare confirmed cases to deaths\n",
"* ☑️ look at per capita numbers\n",
"* ☐ make a plot showing recovery (hopefully) catching up to infections\n",
"* ☐ somehow include number of testing kits per capita (or other indicators of response), and see how that relates to the infections/deaths rate\n",
"* ☐ make this interactive using dropdowns or something\n",
"* ☐ look at doubling rate based on latitude"
]
},
{
"cell_type": "code",
"metadata": {
"id": "mHZKukeMluNJ",
"colab_type": "code",
"colab": {}
},
"source": [
"# In colab, these dependencies are already installed.\n",
"# If you're running this locally you may need to install a few packages by uncommenting the following lines and running the cell\n",
"# %pip install plotly\n",
"# %pip install pandas\n",
"\n",
"import numpy as np\n",
"import plotly.io as pio\n",
"import plotly.express as px\n",
"import pandas as pd\n",
"import cufflinks # Monkeypatch pandas DataFrames to have .iplot() functions.\n",
"nan = pd.np.nan\n",
"\n",
"pio.templates.default = \"plotly_white\""
],
"execution_count": 0,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "xbyVJ-ITT4Z5",
"colab_type": "text"
},
"source": [
"## Load raw data"
]
},
{
"cell_type": "code",
"metadata": {
"id": "C-W32I_BS2pC",
"colab_type": "code",
"outputId": "e835f822-a49f-4b0e-eaf4-81778b11717c",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 326
}
},
"source": [
"timeseries = pd.read_csv('http://blog.lazd.net/coronadatascraper/timeseries.csv', parse_dates=['date'])\n",
"\n",
"display('Timeseries:')\n",
"display(timeseries.head())"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"'Timeseries:'"
]
},
"metadata": {
"tags": []
}
},
{
"output_type": "display_data",
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>city</th>\n",
" <th>county</th>\n",
" <th>state</th>\n",
" <th>country</th>\n",
" <th>population</th>\n",
" <th>lat</th>\n",
" <th>long</th>\n",
" <th>url</th>\n",
" <th>cases</th>\n",
" <th>deaths</th>\n",
" <th>recovered</th>\n",
" <th>active</th>\n",
" <th>tested</th>\n",
" <th>growthFactor</th>\n",
" <th>date</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-22</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>1.500000</td>\n",
" <td>2020-01-23</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>1.666667</td>\n",
" <td>2020-01-24</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>7.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>7.0</td>\n",
" <td>NaN</td>\n",
" <td>1.400000</td>\n",
" <td>2020-01-25</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>8.0</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>6.0</td>\n",
" <td>NaN</td>\n",
" <td>1.142857</td>\n",
" <td>2020-01-26</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" city county state country ... active tested growthFactor date\n",
"0 NaN NaN NaN THA ... 2.0 NaN NaN 2020-01-22\n",
"1 NaN NaN NaN THA ... 3.0 NaN 1.500000 2020-01-23\n",
"2 NaN NaN NaN THA ... 5.0 NaN 1.666667 2020-01-24\n",
"3 NaN NaN NaN THA ... 7.0 NaN 1.400000 2020-01-25\n",
"4 NaN NaN NaN THA ... 6.0 NaN 1.142857 2020-01-26\n",
"\n",
"[5 rows x 15 columns]"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "LY-0lnQGUs0b",
"colab_type": "code",
"outputId": "1cc5c3c5-804d-4bc7-c82e-c94679911f78",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 830
}
},
"source": [
"# the source DataFrame includes three-letter country codes, and separate city, county, state and country fields.\n",
"# Combine these into one, with the full country name to make them easy to use\n",
"\n",
"country_codes = pd.read_csv('https://github.com/lukes/ISO-3166-Countries-with-Regional-Codes/raw/master/all/all.csv').set_index('alpha-3')['name']\n",
"country_codes.name = 'country'\n",
"\n",
"# Override a few names that are too long or awkward\n",
"country_codes.update(pd.Series({\n",
" 'USA': 'USA',\n",
" 'GBR': 'UK',\n",
" 'KOR': 'South Korea',\n",
"}))\n",
"\n",
"display('Country code mapping:')\n",
"display(country_codes.head())\n",
"\n",
"def get_combined_location(row):\n",
" location_segments = [\n",
" row['city'], row['county'], row['state'], row['country']\n",
" ]\n",
" cleaned_location_segments = [\n",
" segment\n",
" for segment in location_segments\n",
" if type(segment) is str\n",
" ]\n",
" return ', '.join(cleaned_location_segments)\n",
"\n",
"cleaned_timeseries = (\n",
" timeseries\n",
" .rename(\n",
" {\n",
" 'country': 'country_code'\n",
" },\n",
" axis='columns'\n",
" )\n",
" .join(country_codes, 'country_code')\n",
")\n",
"cleaned_timeseries['location'] = cleaned_timeseries.apply(get_combined_location, axis='columns')\n",
"cleaned_timeseries"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"'Country code mapping:'"
]
},
"metadata": {
"tags": []
}
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"alpha-3\n",
"AFG Afghanistan\n",
"ALA Åland Islands\n",
"ALB Albania\n",
"DZA Algeria\n",
"ASM American Samoa\n",
"Name: country, dtype: object"
]
},
"metadata": {
"tags": []
}
},
{
"output_type": "execute_result",
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>city</th>\n",
" <th>county</th>\n",
" <th>state</th>\n",
" <th>country_code</th>\n",
" <th>population</th>\n",
" <th>lat</th>\n",
" <th>long</th>\n",
" <th>url</th>\n",
" <th>cases</th>\n",
" <th>deaths</th>\n",
" <th>recovered</th>\n",
" <th>active</th>\n",
" <th>tested</th>\n",
" <th>growthFactor</th>\n",
" <th>date</th>\n",
" <th>country</th>\n",
" <th>location</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-22</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>1.500000</td>\n",
" <td>2020-01-23</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>1.666667</td>\n",
" <td>2020-01-24</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>7.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>7.0</td>\n",
" <td>NaN</td>\n",
" <td>1.400000</td>\n",
" <td>2020-01-25</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>8.0</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>6.0</td>\n",
" <td>NaN</td>\n",
" <td>1.142857</td>\n",
" <td>2020-01-26</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9396</th>\n",
" <td>NaN</td>\n",
" <td>Sumner County</td>\n",
" <td>TN</td>\n",
" <td>USA</td>\n",
" <td>187149.0</td>\n",
" <td>36.448775</td>\n",
" <td>-86.480131</td>\n",
" <td>https://www.tn.gov/health/cedep/ncov.html</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-03-18</td>\n",
" <td>USA</td>\n",
" <td>Sumner County, TN, USA</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9397</th>\n",
" <td>NaN</td>\n",
" <td>Ashland County</td>\n",
" <td>OH</td>\n",
" <td>USA</td>\n",
" <td>53745.0</td>\n",
" <td>40.810381</td>\n",
" <td>-82.280962</td>\n",
" <td>https://coronavirus.ohio.gov/wps/portal/gov/co...</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-03-18</td>\n",
" <td>USA</td>\n",
" <td>Ashland County, OH, USA</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9398</th>\n",
" <td>NaN</td>\n",
" <td>Delaware County</td>\n",
" <td>OH</td>\n",
" <td>USA</td>\n",
" <td>204826.0</td>\n",
" <td>40.284922</td>\n",
" <td>-82.996763</td>\n",
" <td>https://coronavirus.ohio.gov/wps/portal/gov/co...</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-03-18</td>\n",
" <td>USA</td>\n",
" <td>Delaware County, OH, USA</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9399</th>\n",
" <td>NaN</td>\n",
" <td>Huron County</td>\n",
" <td>OH</td>\n",
" <td>USA</td>\n",
" <td>58504.0</td>\n",
" <td>41.141483</td>\n",
" <td>-82.588985</td>\n",
" <td>https://coronavirus.ohio.gov/wps/portal/gov/co...</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-03-18</td>\n",
" <td>USA</td>\n",
" <td>Huron County, OH, USA</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9400</th>\n",
" <td>NaN</td>\n",
" <td>Middlesex County</td>\n",
" <td>CT</td>\n",
" <td>USA</td>\n",
" <td>162682.0</td>\n",
" <td>41.451322</td>\n",
" <td>-72.529236</td>\n",
" <td>https://portal.ct.gov/Coronavirus</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-03-18</td>\n",
" <td>USA</td>\n",
" <td>Middlesex County, CT, USA</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>9401 rows × 17 columns</p>\n",
"</div>"
],
"text/plain": [
" city county ... country location\n",
"0 NaN NaN ... Thailand Thailand\n",
"1 NaN NaN ... Thailand Thailand\n",
"2 NaN NaN ... Thailand Thailand\n",
"3 NaN NaN ... Thailand Thailand\n",
"4 NaN NaN ... Thailand Thailand\n",
"... ... ... ... ... ...\n",
"9396 NaN Sumner County ... USA Sumner County, TN, USA\n",
"9397 NaN Ashland County ... USA Ashland County, OH, USA\n",
"9398 NaN Delaware County ... USA Delaware County, OH, USA\n",
"9399 NaN Huron County ... USA Huron County, OH, USA\n",
"9400 NaN Middlesex County ... USA Middlesex County, CT, USA\n",
"\n",
"[9401 rows x 17 columns]"
]
},
"metadata": {
"tags": []
},
"execution_count": 50
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "9YZoOKSY0tUh",
"colab_type": "text"
},
"source": [
"# Add calculated columns\n",
"If you want to add extra columns to analyze, this is probably the best place."
]
},
{
"cell_type": "code",
"metadata": {
"id": "xwTilzX50o2y",
"colab_type": "code",
"outputId": "a9f29d01-4cd9-4ec3-f6c7-7a9f984190a0",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 617
}
},
"source": [
"cleaned_timeseries['cases/deaths'] = cleaned_timeseries['cases'] / cleaned_timeseries['deaths']\n",
"cleaned_timeseries['cases per 100k capita'] = cleaned_timeseries['cases'] / cleaned_timeseries['population'] * 1e5\n",
"\n",
"# Add diff columns for looking at change rate\n",
"timeseries_by_location = cleaned_timeseries.groupby('location')\n",
"for days_shift in [1,3,7]:\n",
" for orig_column in ['recovered', 'deaths', 'cases', 'active']:\n",
" cleaned_timeseries[f'{days_shift}d new {orig_column}'] = timeseries_by_location[orig_column].diff(periods=days_shift)\n",
"\n",
"\n",
"# Hack: add date in a format that plotly can deal with in hover text\n",
"cleaned_timeseries['Date'] = cleaned_timeseries['date'].apply(lambda date: date.strftime('%Y-%m-%d'))\n",
"\n",
"\n",
"# Support shifting things by the time that the location reached 100 as well as 1 per 100k population\n",
"day_location_reached_100 = cleaned_timeseries[cleaned_timeseries['cases']>100].groupby('location')['date'].min().to_dict()\n",
"day_location_reached_1_per_100k = cleaned_timeseries[cleaned_timeseries['cases per 100k capita']>1].groupby('location')['date'].min().to_dict()\n",
"\n",
"def shift_dates(row, offset_by_location):\n",
" date = row['date']\n",
" location = row['location']\n",
" if location in offset_by_location:\n",
" return (date - offset_by_location[location]) / pd.Timedelta(days=1)\n",
"\n",
"cleaned_timeseries['days since 100 cases'] = cleaned_timeseries.apply(\n",
" shift_dates,\n",
" offset_by_location=day_location_reached_100,\n",
" axis='columns'\n",
")\n",
"cleaned_timeseries['days since 1 case/100k people'] = cleaned_timeseries.apply(\n",
" shift_dates,\n",
" offset_by_location=day_location_reached_1_per_100k,\n",
" axis='columns'\n",
")\n",
"\n",
"print('columns available:')\n",
"display(cleaned_timeseries.head(10))"
],
"execution_count": 0,
"outputs": [
{
"output_type": "stream",
"text": [
"columns available:\n"
],
"name": "stdout"
},
{
"output_type": "display_data",
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>city</th>\n",
" <th>county</th>\n",
" <th>state</th>\n",
" <th>country_code</th>\n",
" <th>population</th>\n",
" <th>lat</th>\n",
" <th>long</th>\n",
" <th>url</th>\n",
" <th>cases</th>\n",
" <th>deaths</th>\n",
" <th>recovered</th>\n",
" <th>active</th>\n",
" <th>tested</th>\n",
" <th>growthFactor</th>\n",
" <th>date</th>\n",
" <th>country</th>\n",
" <th>location</th>\n",
" <th>cases/deaths</th>\n",
" <th>cases per 100k capita</th>\n",
" <th>1d new recovered</th>\n",
" <th>1d new deaths</th>\n",
" <th>1d new cases</th>\n",
" <th>1d new active</th>\n",
" <th>3d new recovered</th>\n",
" <th>3d new deaths</th>\n",
" <th>3d new cases</th>\n",
" <th>3d new active</th>\n",
" <th>7d new recovered</th>\n",
" <th>7d new deaths</th>\n",
" <th>7d new cases</th>\n",
" <th>7d new active</th>\n",
" <th>Date</th>\n",
" <th>days since 100 cases</th>\n",
" <th>days since 1 case/100k people</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-22</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.002923</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-22</td>\n",
" <td>-53.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>1.500000</td>\n",
" <td>2020-01-23</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.004385</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>1.0</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-23</td>\n",
" <td>-52.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>1.666667</td>\n",
" <td>2020-01-24</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.007308</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-24</td>\n",
" <td>-51.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>7.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>7.0</td>\n",
" <td>NaN</td>\n",
" <td>1.400000</td>\n",
" <td>2020-01-25</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.010232</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-25</td>\n",
" <td>-50.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>8.0</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>6.0</td>\n",
" <td>NaN</td>\n",
" <td>1.142857</td>\n",
" <td>2020-01-26</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.011693</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>1.0</td>\n",
" <td>-1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-26</td>\n",
" <td>-49.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>8.0</td>\n",
" <td>NaN</td>\n",
" <td>2.0</td>\n",
" <td>6.0</td>\n",
" <td>NaN</td>\n",
" <td>1.000000</td>\n",
" <td>2020-01-27</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.011693</td>\n",
" <td>0.0</td>\n",
" <td>NaN</td>\n",
" <td>0.0</td>\n",
" <td>0.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>3.0</td>\n",
" <td>1.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-27</td>\n",
" <td>-48.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>14.0</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>9.0</td>\n",
" <td>NaN</td>\n",
" <td>1.750000</td>\n",
" <td>2020-01-28</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.020464</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>6.0</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>7.0</td>\n",
" <td>2.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>2020-01-28</td>\n",
" <td>-47.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>14.0</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>9.0</td>\n",
" <td>NaN</td>\n",
" <td>1.000000</td>\n",
" <td>2020-01-29</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.020464</td>\n",
" <td>0.0</td>\n",
" <td>NaN</td>\n",
" <td>0.0</td>\n",
" <td>0.0</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>6.0</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>12.0</td>\n",
" <td>7.0</td>\n",
" <td>2020-01-29</td>\n",
" <td>-46.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>14.0</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>9.0</td>\n",
" <td>NaN</td>\n",
" <td>1.000000</td>\n",
" <td>2020-01-30</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.020464</td>\n",
" <td>0.0</td>\n",
" <td>NaN</td>\n",
" <td>0.0</td>\n",
" <td>0.0</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>6.0</td>\n",
" <td>3.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>11.0</td>\n",
" <td>6.0</td>\n",
" <td>2020-01-30</td>\n",
" <td>-45.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>THA</td>\n",
" <td>68414135.0</td>\n",
" <td>13.040833</td>\n",
" <td>101.544556</td>\n",
" <td>https://github.com/CSSEGISandData/COVID-19</td>\n",
" <td>19.0</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>14.0</td>\n",
" <td>NaN</td>\n",
" <td>1.357143</td>\n",
" <td>2020-01-31</td>\n",
" <td>Thailand</td>\n",
" <td>Thailand</td>\n",
" <td>NaN</td>\n",
" <td>0.027772</td>\n",
" <td>0.0</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>5.0</td>\n",
" <td>0.0</td>\n",
" <td>NaN</td>\n",
" <td>5.0</td>\n",
" <td>5.0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>14.0</td>\n",
" <td>9.0</td>\n",
" <td>2020-01-31</td>\n",
" <td>-44.0</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" city county ... days since 100 cases days since 1 case/100k people\n",
"0 NaN NaN ... -53.0 NaN\n",
"1 NaN NaN ... -52.0 NaN\n",
"2 NaN NaN ... -51.0 NaN\n",
"3 NaN NaN ... -50.0 NaN\n",
"4 NaN NaN ... -49.0 NaN\n",
"5 NaN NaN ... -48.0 NaN\n",
"6 NaN NaN ... -47.0 NaN\n",
"7 NaN NaN ... -46.0 NaN\n",
"8 NaN NaN ... -45.0 NaN\n",
"9 NaN NaN ... -44.0 NaN\n",
"\n",
"[10 rows x 34 columns]"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "oXp8-DpZ1BjP",
"colab_type": "text"
},
"source": [
"## There are a lot of places. Let's filter them down to just a few"
]
},
{
"cell_type": "code",
"metadata": {
"id": "Wt_k34pNwvgw",
"colab_type": "code",
"outputId": "ab7910d9-5e77-4c22-c2a3-53bb13e67f3f",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 449
}
},
"source": [
"from IPython.display import HTML\n",
"list_content = '</li><li>'.join(cleaned_timeseries.location.unique())\n",
"HTML(\n",
" f'<ul style=\"max-height: 30em; overflow-y: scroll\"><li>{list_content}</li></ul>'\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/html": [
"<ul style=\"max-height: 30em; overflow-y: scroll\"><li>Thailand</li><li>Japan</li><li>Singapore</li><li>Nepal</li><li>Malaysia</li><li>New South Wales, Australia</li><li>Victoria, Australia</li><li>Queensland, Australia</li><li>Cambodia</li><li>Sri Lanka</li><li>Germany</li><li>Finland</li><li>United Arab Emirates</li><li>Philippines</li><li>India</li><li>Italy</li><li>Sweden</li><li>Spain</li><li>South Australia, Australia</li><li>Belgium</li><li>Egypt</li><li>Lebanon</li><li>Iraq</li><li>Oman</li><li>Afghanistan</li><li>Bahrain</li><li>Kuwait</li><li>Algeria</li><li>Croatia</li><li>Switzerland</li><li>Austria</li><li>Israel</li><li>Pakistan</li><li>Brazil</li><li>Georgia</li><li>Greece</li><li>North Macedonia</li><li>Norway</li><li>Romania</li><li>Estonia</li><li>Netherlands</li><li>San Marino</li><li>Belarus</li><li>Iceland</li><li>Lithuania</li><li>Mexico</li><li>New Zealand</li><li>Nigeria</li><li>Western Australia, Australia</li><li>Ireland</li><li>Luxembourg</li><li>Monaco</li><li>Qatar</li><li>Ecuador</li><li>Azerbaijan</li><li>Armenia</li><li>Dominican Republic</li><li>Indonesia</li><li>Portugal</li><li>Andorra</li><li>Tasmania, Australia</li><li>Latvia</li><li>Morocco</li><li>Saudi Arabia</li><li>Senegal</li><li>Argentina</li><li>Chile</li><li>Jordan</li><li>Ukraine</li><li>Hungary</li><li>Northern Territory, Australia</li><li>Liechtenstein</li><li>Poland</li><li>Tunisia</li><li>Bosnia and Herzegovina</li><li>Slovenia</li><li>South Africa</li><li>Bhutan</li><li>Cameroon</li><li>Colombia</li><li>Costa Rica</li><li>Peru</li><li>Serbia</li><li>Slovakia</li><li>Togo</li><li>French Guiana</li><li>Malta</li><li>Martinique</li><li>Bulgaria</li><li>Maldives</li><li>Bangladesh</li><li>Paraguay</li><li>Albania</li><li>Cyprus</li><li>Brunei Darussalam</li><li>WA, USA</li><li>NY, USA</li><li>CA, USA</li><li>MA, USA</li><li>GA, USA</li><li>CO, USA</li><li>FL, USA</li><li>NJ, USA</li><li>OR, USA</li><li>TX, USA</li><li>IL, USA</li><li>PA, USA</li><li>IA, USA</li><li>MD, USA</li><li>NC, USA</li><li>SC, USA</li><li>TN, USA</li><li>VA, USA</li><li>AZ, USA</li><li>IN, USA</li><li>KY, USA</li><li>DC, USA</li><li>NV, USA</li><li>NH, USA</li><li>MN, USA</li><li>NE, USA</li><li>OH, USA</li><li>RI, USA</li><li>WI, USA</li><li>CT, USA</li><li>HI, USA</li><li>OK, USA</li><li>UT, USA</li><li>Burkina Faso</li><li>Holy See</li><li>Mongolia</li><li>Panama</li><li>KS, USA</li><li>LA, USA</li><li>MO, USA</li><li>VT, USA</li><li>AK, USA</li><li>AR, USA</li><li>DE, USA</li><li>ID, USA</li><li>ME, USA</li><li>MI, USA</li><li>MS, USA</li><li>MT, USA</li><li>NM, USA</li><li>ND, USA</li><li>SD, USA</li><li>WV, USA</li><li>WY, USA</li><li>Hubei, China</li><li>Iran (Islamic Republic of)</li><li>South Korea</li><li>France</li><li>Guangdong, China</li><li>Henan, China</li><li>Zhejiang, China</li><li>Hunan, China</li><li>Anhui, China</li><li>Jiangxi, China</li><li>Shandong, China</li><li>Jiangsu, China</li><li>Chongqing, China</li><li>Sichuan, China</li><li>Heilongjiang, China</li><li>UK, UK</li><li>Denmark</li><li>Beijing, China</li><li>Shanghai, China</li><li>Hebei, China</li><li>Fujian, China</li><li>Guangxi, China</li><li>Shaanxi, China</li><li>Yunnan, China</li><li>Hainan, China</li><li>Guizhou, China</li><li>Tianjin, China</li><li>Shanxi, China</li><li>Gansu, China</li><li>Hong Kong, China</li><li>Liaoning, China</li><li>Jilin, China</li><li>Czechia</li><li>Xinjiang, China</li><li>Inner Mongolia, China</li><li>Ningxia, China</li><li>Taiwan, Province of China</li><li>Viet Nam</li><li>Russian Federation</li><li>Qinghai, China</li><li>Macau, China</li><li>Moldova, Republic of</li><li>Bolivia (Plurinational State of)</li><li>Faroe Islands, Denmark</li><li>St Martin, France</li><li>Honduras</li><li>Channel Islands, UK</li><li>Tibet, China</li><li>Congo, Democratic Republic of the</li><li>Côte d'Ivoire</li><li>Saint Barthelemy, France</li><li>Jamaica</li><li>Réunion</li><li>Turkey</li><li>Gibraltar, UK</li><li>Kitsap County, WA, USA</li><li>Solano County, CA, USA</li><li>Santa Cruz County, CA, USA</li><li>Napa County, CA, USA</li><li>Ventura County, CA, USA</li><li>Worcester County, MA, USA</li><li>Gwinnett County, GA, USA</li><li>DeKalb County, GA, USA</li><li>Floyd County, KY, USA</li><li>Fayette County, GA, USA</li><li>Gregg County, TX, USA</li><li>Monmouth County, NJ, USA</li><li>Burlington County, NJ, USA</li><li>Camden County, NJ, USA</li><li>Passaic County, NJ, USA</li><li>Union County, NJ, USA</li><li>Eagle County, CO, USA</li><li>Larimer County, CO, USA</li><li>Arapahoe County, CO, USA</li><li>Gunnison County, CO, USA</li><li>Kane County, IL, USA</li><li>Monroe County, PA, USA</li><li>Philadelphia County, PA, USA</li><li>Norfolk County, VA, USA</li><li>Arlington County, VA, USA</li><li>Spotsylvania County, VA, USA</li><li>Loudoun County, VA, USA</li><li>Prince George's County, MD, USA</li><li>Pottawattamie County, IA, USA</li><li>Kershaw County, SC, USA</li><li>Pima County, AZ, USA</li><li>Noble County, IN, USA</li><li>Adams County, PA, USA</li><li>Boone County, IN, USA</li><li>Dane County, WI, USA</li><li>Pierce County, WI, USA</li><li>Cuyahoga County, OH, USA</li><li>Weber County, UT, USA</li><li>Bennington County, VT, USA</li><li>Carver County, MN, USA</li><li>Charlotte County, FL, USA</li><li>Cherokee County, GA, USA</li><li>Collin County, TX, USA</li><li>Jefferson County, KY, USA</li><li>Jefferson County, LA, USA</li><li>Shasta County, CA, USA</li><li>Spartanburg County, SC, USA</li><li>Harrison County, KY, USA</li><li>Johnson County, IA, USA</li><li>Berkshire County, MA, USA</li><li>Davidson County, TN, USA</li><li>Douglas County, OR, USA</li><li>Fresno County, CA, USA</li><li>Harford County, MD, USA</li><li>Hendricks County, IN, USA</li><li>Hudson County, NJ, USA</li><li>Johnson County, KS, USA</li><li>Kittitas County, WA, USA</li><li>Manatee County, FL, USA</li><li>Marion County, OR, USA</li><li>Okaloosa County, FL, USA</li><li>Polk County, GA, USA</li><li>Riverside County, CA, USA</li><li>Shelby County, TN, USA</li><li>St. Louis County, MO, USA</li><li>Suffolk County, NY, USA</li><li>Ulster County, NY, USA</li><li>Volusia County, FL, USA</li><li>Fairfax County, VA, USA</li><li>Rockingham County, NH, USA</li><li>District of Columbia, USA</li><li>Montgomery County, PA, USA</li><li>Alameda County, CA, USA</li><li>Broward County, FL, USA</li><li>Lee County, FL, USA</li><li>Pinal County, AZ, USA</li><li>Rockland County, NY, USA</li><li>Saratoga County, NY, USA</li><li>Charleston County, SC, USA</li><li>Clark County, WA, USA</li><li>Cobb County, GA, USA</li><li>Davis County, UT, USA</li><li>El Paso County, CO, USA</li><li>Honolulu County, HI, USA</li><li>Jackson County, OR, USA</li><li>Jefferson County, WA, USA</li><li>Klamath County, OR, USA</li><li>Madera County, CA, USA</li><li>Pierce County, WA, USA</li><li>Tulsa County, OK, USA</li><li>Douglas County, CO, USA</li><li>Providence County, RI, USA</li><li>Chatham County, NC, USA</li><li>Delaware County, PA, USA</li><li>Douglas County, NE, USA</li><li>Fayette County, KY, USA</li><li>Marion County, IN, USA</li><li>Middlesex County, MA, USA</li><li>Nassau County, NY, USA</li><li>Ramsey County, MN, USA</li><li>Washoe County, NV, USA</li><li>Wayne County, PA, USA</li><li>Yolo County, CA, USA</li><li>Santa Clara County, CA, USA</li><li>Clark County, NV, USA</li><li>Fort Bend County, TX, USA</li><li>Grant County, WA, USA</li><li>Santa Rosa County, FL, USA</li><li>Williamson County, TN, USA</li><li>New York County, NY, USA</li><li>Montgomery County, MD, USA</li><li>Suffolk County, MA, USA</li><li>Denver County, CO, USA</li><li>Summit County, CO, USA</li><li>Bergen County, NJ, USA</li><li>Harris County, TX, USA</li><li>San Francisco County, CA, USA</li><li>Contra Costa County, CA, USA</li><li>Orange County, CA, USA</li><li>Norfolk County, MA, USA</li><li>Maricopa County, AZ, USA</li><li>Wake County, NC, USA</li><li>Westchester County, NY, USA</li><li>Grafton County, NH, USA</li><li>Hillsborough County, FL, USA</li><li>Placer County, CA, USA</li><li>San Mateo County, CA, USA</li><li>Sonoma County, CA, USA</li><li>Umatilla County, OR, USA</li><li>Fulton County, GA, USA</li><li>Washington County, OR, USA</li><li>Snohomish County, WA, USA</li><li>Humboldt County, CA, USA</li><li>Sacramento County, CA, USA</li><li>San Diego County, CA, USA</li><li>San Benito County, CA, USA</li><li>Los Angeles County, CA, USA</li><li>King County, WA, USA</li><li>Cook County, IL, USA</li><li>Skagit County, WA, USA</li><li>Thurston County, WA, USA</li><li>Whatcom County, WA, USA</li><li>Marin County, CA, USA</li><li>Calaveras County, CA, USA</li><li>Stanislaus County, CA, USA</li><li>Essex County, MA, USA</li><li>Charlton County, GA, USA</li><li>Collier County, FL, USA</li><li>Pinellas County, FL, USA</li><li>Alachua County, FL, USA</li><li>Nassau County, FL, USA</li><li>Pasco County, FL, USA</li><li>Dallas County, TX, USA</li><li>Tarrant County, TX, USA</li><li>Montgomery County, TX, USA</li><li>Middlesex County, NJ, USA</li><li>Jefferson County, CO, USA</li><li>Multnomah County, OR, USA</li><li>Polk County, OR, USA</li><li>Deschutes County, OR, USA</li><li>McHenry County, IL, USA</li><li>Lake County, IL, USA</li><li>Bucks County, PA, USA</li><li>Hanover County, VA, USA</li><li>Lancaster County, SC, USA</li><li>Sullivan County, TN, USA</li><li>Johnson County, IN, USA</li><li>Howard County, IN, USA</li><li>St. Joseph County, IN, USA</li><li>Knox County, NE, USA</li><li>Stark County, OH, USA</li><li>Anoka County, MN, USA</li><li>Olmsted County, MN, USA</li><li>Summit County, UT, USA</li><li>Fairfield County, CT, USA</li><li>Litchfield County, CT, USA</li><li>Orleans County, LA, USA</li><li>Pennington County, SD, USA</li><li>Beadle County, SD, USA</li><li>Charles Mix County, SD, USA</li><li>Davison County, SD, USA</li><li>Minnehaha County, SD, USA</li><li>Bon Homme County, SD, USA</li><li>Socorro County, NM, USA</li><li>Bernalillo County, NM, USA</li><li>Oakland County, MI, USA</li><li>Wayne County, MI, USA</li><li>New Castle County, DE, USA</li><li>Nouvelle-Aquitaine, France</li><li>MG, Brazil</li><li>RJ, Brazil</li><li>SC, Brazil</li><li>SP, Brazil</li><li>RS, Brazil</li><li>PR, Brazil</li><li>CE, Brazil</li><li>DF, Brazil</li><li>Abruzzo, Italy</li><li>Basilicata, Italy</li><li>P.A. Bolzano, Italy</li><li>Calabria, Italy</li><li>Campania, Italy</li><li>Emilia Romagna, Italy</li><li>Friuli Venezia Giulia, Italy</li><li>Lazio, Italy</li><li>Liguria, Italy</li><li>Lombardia, Italy</li><li>Marche, Italy</li><li>Molise, Italy</li><li>Piemonte, Italy</li><li>Puglia, Italy</li><li>Sardegna, Italy</li><li>Sicilia, Italy</li><li>Toscana, Italy</li><li>P.A. Trento, Italy</li><li>Umbria, Italy</li><li>Valle d'Aosta, Italy</li><li>Veneto, Italy</li><li>Hauts-de-France, France</li><li>Grand-Est, France</li><li>BA, Brazil</li><li>PE, Brazil</li><li>ES, Brazil</li><li>Zurich, Switzerland</li><li>Auvergne Rhône-Alpes, France</li><li>RN, Brazil</li><li>AL, Brazil</li><li>MS, Brazil</li><li>GO, Brazil</li><li>Normandie, France</li><li>AM, Brazil</li><li>SE, Brazil</li><li>Bourgogne-Franche-Comté, France</li><li>Saint-Barthélemy, France</li><li>Saint-Martin, France</li><li>Guadeloupe, France</li><li>Martinique, France</li><li>Guyane, France</li><li>La Réunion, France</li><li>Mayotte, France</li><li>Ile-de-France, France</li><li>Centre-Val de Loire, France</li><li>Grand Est, France</li><li>Pays de la Loire, France</li><li>Bretagne, France</li><li>Occitanie, France</li><li>Auvergne-Rhône-Alpes, France</li><li>Provence-Alpes-Côte d’Azur, France</li><li>Corse, France</li><li>Centre Val de Loire, France</li><li>Saint-Barthélémy, France</li><li>Cuba</li><li>Guyana</li><li>Australian Capital Territory, Australia</li><li>UK</li><li>Kazakhstan</li><li>French Polynesia, France</li><li>Ethiopia</li><li>Sudan</li><li>Guinea</li><li>Kenya</li><li>Antigua and Barbuda</li><li>AL, USA</li><li>Uruguay</li><li>Ghana</li><li>PR, USA</li><li>Namibia</li><li>Seychelles</li><li>Trinidad and Tobago</li><li>Venezuela (Bolivarian Republic of)</li><li>Eswatini</li><li>Gabon</li><li>Guatemala</li><li>Mauritania</li><li>Rwanda</li><li>Saint Lucia</li><li>Saint Vincent and the Grenadines</li><li>Suriname</li><li>French Guiana, France</li><li>GU, USA</li><li></li><li>Central African Republic</li><li>Congo</li><li>Equatorial Guinea</li><li>Uzbekistan</li><li>Benin</li><li>Greenland</li><li>Liberia</li><li>Curacao, Netherlands</li><li>Somalia</li><li>VI, USA</li><li>Cayman Islands, UK</li><li>Reunion, France</li><li>Barbados</li><li>Montenegro</li><li>Kyrgyzstan</li><li>Mauritius</li><li>Aruba, Netherlands</li><li>Zambia</li><li>Djibouti</li><li>Montserrat, UK</li><li>Lafourche Parish, LA, USA</li><li>Jefferson Parish, LA, USA</li><li>Orleans Parish, LA, USA</li><li>Adams County, IN, USA</li><li>Madison County, IN, USA</li><li>Hamilton County, IN, USA</li><li>Lake County, IN, USA</li><li>LaPorte County, IN, USA</li><li>Floyd County, IN, USA</li><li>Franklin County, IN, USA</li><li>Wells County, IN, USA</li><li>Bartholomew County, IN, USA</li><li>Clark County, IN, USA</li><li>Fayette County, IN, USA</li><li>Jennings County, IN, USA</li><li>Guilford County, NC, USA</li><li>Wayne County, NC, USA</li><li>Watauga County, NC, USA</li><li>Forsyth County, NC, USA</li><li>Durham County, NC, USA</li><li>Wilson County, NC, USA</li><li>Johnston County, NC, USA</li><li>Harnett County, NC, USA</li><li>Craven County, NC, USA</li><li>Sampson County, NC, USA</li><li>Onslow County, NC, USA</li><li>Brunswick County, NC, USA</li><li>Iredell County, NC, USA</li><li>Lincoln County, NC, USA</li><li>Mecklenburg County, NC, USA</li><li>Cabarrus County, NC, USA</li><li>Atlantic County, NJ, USA</li><li>Cumberland County, NJ, USA</li><li>Essex County, NJ, USA</li><li>Gloucester County, NJ, USA</li><li>Hunterdon County, NJ, USA</li><li>Mercer County, NJ, USA</li><li>Ocean County, NJ, USA</li><li>Somerset County, NJ, USA</li><li>Sussex County, NJ, USA</li><li>Warren County, NJ, USA</li><li>Morris County, NJ, USA</li><li>British Columbia, Canada</li><li>Alberta, Canada</li><li>Saskatchewan, Canada</li><li>Manitoba, Canada</li><li>Ontario, Canada</li><li>Quebec, Canada</li><li>New Brunswick, Canada</li><li>Elmore County, AL, USA</li><li>Jefferson County, AL, USA</li><li>Limestone County, AL, USA</li><li>Montgomery County, AL, USA</li><li>Tuscaloosa County, AL, USA</li><li>Clackamas County, OR, USA</li><li>Linn County, OR, USA</li><li>St. Bernard Parish, LA, USA</li><li>St. Charles Parish, LA, USA</li><li>St. Tammany Parish, LA, USA</li><li>Terrebonne Parish, LA, USA</li><li>Carroll County, IA, USA</li><li>Harrison County, IA, USA</li><li>Bell County, TX, USA</li><li>Smith County, TX, USA</li><li>Travis County, TX, USA</li><li>Miami-Dade County, FL, USA</li><li>Seminole County, FL, USA</li><li>Palm Beach County, FL, USA</li><li>Sarasota County, FL, USA</li><li>Duval County, FL, USA</li><li>Clay County, FL, USA</li><li>Columbia County, WA, USA</li><li>Grays Harbor County, WA, USA</li><li>Island County, WA, USA</li><li>Yakima County, WA, USA</li><li>(unassigned), WA, USA</li><li>Prince Edward Island, Canada</li><li>Baldwin County, AL, USA</li><li>Adams County, CO, USA</li><li>Mesa County, CO, USA</li><li>Pitkin County, CO, USA</li><li>Pueblo County, CO, USA</li><li>Weld County, CO, USA</li><li>St. John the Baptist Parish, LA, USA</li><li>Caddo Parish, LA, USA</li><li>Washington Parish, LA, USA</li><li>East Baton Rouge Parish, LA, USA</li><li>Bossier Parish, LA, USA</li><li>Ascension Parish, LA, USA</li><li>(unassigned), LA, USA</li><li>Dallas County, IA, USA</li><li>Bexar County, TX, USA</li><li>Brazoria County, TX, USA</li><li>El Paso County, TX, USA</li><li>Galveston County, TX, USA</li><li>Hays County, TX, USA</li><li>Lavaca County, TX, USA</li><li>Orange County, FL, USA</li><li>Osceola County, FL, USA</li><li>Spokane County, WA, USA</li><li>Fond du Lac County, WI, USA</li><li>Milwaukee County, WI, USA</li><li>Racine County, WI, USA</li><li>Sheboygan County, WI, USA</li><li>Waukesha County, WI, USA</li><li>Winnebago County, WI, USA</li><li>McCook County, SD, USA</li><li>Salt Lake County, UT, USA</li><li>Utah County, UT, USA</li><li>Weber-Morgan County, UT, USA</li><li>Allegheny County, PA, USA</li><li>Chester County, PA, USA</li><li>Cumberland County, PA, USA</li><li>Northampton County, PA, USA</li><li>Pike County, PA, USA</li><li>Washington County, PA, USA</li><li>Campbell County, TN, USA</li><li>Hamilton County, TN, USA</li><li>Jefferson County, TN, USA</li><li>Knox County, TN, USA</li><li>Rutherford County, TN, USA</li><li>Belmont County, OH, USA</li><li>Butler County, OH, USA</li><li>Franklin County, OH, USA</li><li>Lorain County, OH, USA</li><li>Summit County, OH, USA</li><li>Trumbull County, OH, USA</li><li>Hartford County, CT, USA</li><li>New Haven County, CT, USA</li><li>Nova Scotia, Canada</li><li>Copiah County, MS, USA</li><li>Hinds County, MS, USA</li><li>Forrest County, MS, USA</li><li>Leflore County, MS, USA</li><li>Pearl River County, MS, USA</li><li>Lee County, AL, USA</li><li>Shelby County, AL, USA</li><li>Yamhill County, OR, USA</li><li>Matagorda County, TX, USA</li><li>Citrus County, FL, USA</li><li>St. Johns County, FL, USA</li><li>Lincoln County, WA, USA</li><li>San Bernardino County, CA, USA</li><li>San Joaquin County, CA, USA</li><li>Mendocino County, CA, USA</li><li>Lehigh County, PA, USA</li><li>Luzerne County, PA, USA</li><li>Lucas County, OH, USA</li><li>Medina County, OH, USA</li><li>Tuscarawas County, OH, USA</li><li>Anne Arundel County, MD, USA</li><li>Baltimore City, MD, USA</li><li>Baltimore County, MD, USA</li><li>Carroll County, MD, USA</li><li>Charles County, MD, USA</li><li>Barking and Dagenham, UK</li><li>Barnet, UK</li><li>Barnsley, UK</li><li>Bath and North East Somerset, UK</li><li>Bedford, UK</li><li>Bexley, UK</li><li>Birmingham, UK</li><li>Blackburn with Darwen, UK</li><li>Blackpool, UK</li><li>Bolton, UK</li><li>Bournemouth, Christchurch and Poole, UK</li><li>Bracknell Forest, UK</li><li>Bradford, UK</li><li>Brent, UK</li><li>Brighton and Hove, UK</li><li>Bristol, City of, UK</li><li>Bromley, UK</li><li>Buckinghamshire, UK</li><li>Bury, UK</li><li>Calderdale, UK</li><li>Cambridgeshire, UK</li><li>Camden, UK</li><li>Central Bedfordshire, UK</li><li>Cheshire East, UK</li><li>Cheshire West and Chester, UK</li><li>Cornwall and Isles of Scilly, UK</li><li>County Durham, UK</li><li>Coventry, UK</li><li>Croydon, UK</li><li>Cumbria, UK</li><li>Darlington, UK</li><li>Derby, UK</li><li>Derbyshire, UK</li><li>Devon, UK</li><li>Doncaster, UK</li><li>Dorset, UK</li><li>Dudley, UK</li><li>Ealing, UK</li><li>East Riding of Yorkshire, UK</li><li>East Sussex, UK</li><li>Enfield, UK</li><li>Essex, UK</li><li>Gateshead, UK</li><li>Gloucestershire, UK</li><li>Greenwich, UK</li><li>Hackney and City of London, UK</li><li>Halton, UK</li><li>Hammersmith and Fulham, UK</li><li>Hampshire, UK</li><li>Haringey, UK</li><li>Harrow, UK</li><li>Hartlepool, UK</li><li>Havering, UK</li><li>Herefordshire, County of, UK</li><li>Hertfordshire, UK</li><li>Hillingdon, UK</li><li>Hounslow, UK</li><li>Isle of Wight, UK</li><li>Islington, UK</li><li>Kensington and Chelsea, UK</li><li>Kent, UK</li><li>Kingston upon Hull, City of, UK</li><li>Kingston upon Thames, UK</li><li>Kirklees, UK</li><li>Knowsley, UK</li><li>Lambeth, UK</li><li>Lancashire, UK</li><li>Leeds, UK</li><li>Leicester, UK</li><li>Leicestershire, UK</li><li>Lewisham, UK</li><li>Lincolnshire, UK</li><li>Liverpool, UK</li><li>Luton, UK</li><li>Manchester, UK</li><li>Medway, UK</li><li>Merton, UK</li><li>Milton Keynes, UK</li><li>Newcastle upon Tyne, UK</li><li>Newham, UK</li><li>Norfolk, UK</li><li>North Lincolnshire, UK</li><li>North Somerset, UK</li><li>North Tyneside, UK</li><li>North Yorkshire, UK</li><li>Northamptonshire, UK</li><li>Northumberland, UK</li><li>Nottingham, UK</li><li>Nottinghamshire, UK</li><li>Oldham, UK</li><li>Oxfordshire, UK</li><li>Peterborough, UK</li><li>Plymouth, UK</li><li>Portsmouth, UK</li><li>Reading, UK</li><li>Redbridge, UK</li><li>Redcar and Cleveland, UK</li><li>Richmond upon Thames, UK</li><li>Rochdale, UK</li><li>Rotherham, UK</li><li>Salford, UK</li><li>Sandwell, UK</li><li>Sefton, UK</li><li>Sheffield, UK</li><li>Shropshire, UK</li><li>Slough, UK</li><li>Solihull, UK</li><li>Somerset, UK</li><li>South Gloucestershire, UK</li><li>South Tyneside, UK</li><li>Southampton, UK</li><li>Southend-on-Sea, UK</li><li>Southwark, UK</li><li>St. Helens, UK</li><li>Staffordshire, UK</li><li>Stockport, UK</li><li>Stockton-on-Tees, UK</li><li>Stoke-on-Trent, UK</li><li>Suffolk, UK</li><li>Sunderland, UK</li><li>Surrey, UK</li><li>Sutton, UK</li><li>Swindon, UK</li><li>Tameside, UK</li><li>Thurrock, UK</li><li>Torbay, UK</li><li>Tower Hamlets, UK</li><li>Trafford, UK</li><li>Wakefield, UK</li><li>Walsall, UK</li><li>Waltham Forest, UK</li><li>Wandsworth, UK</li><li>Warrington, UK</li><li>Warwickshire, UK</li><li>West Berkshire, UK</li><li>West Sussex, UK</li><li>Westminster, UK</li><li>Wigan, UK</li><li>Wiltshire, UK</li><li>Windsor and Maidenhead, UK</li><li>Wirral, UK</li><li>Wokingham, UK</li><li>Wolverhampton, UK</li><li>Worcestershire, UK</li><li>York, UK</li><li>Hancock County, MS, USA</li><li>Monroe County, MS, USA</li><li>Total County, MS, USA</li><li>Benton County, OR, USA</li><li>Allamakee County, IA, USA</li><li>Polk County, IA, USA</li><li>New Castle, DE, USA</li><li>Kent, DE, USA</li><li>Sussex, DE, USA</li><li>Alachua, FL, USA</li><li>Broward, FL, USA</li><li>Charlotte, FL, USA</li><li>Citrus, FL, USA</li><li>Clay, FL, USA</li><li>Collier, FL, USA</li><li>Miami-Dade, FL, USA</li><li>Duval, FL, USA</li><li>Escambia, FL, USA</li><li>Hillsborough, FL, USA</li><li>Lake, FL, USA</li><li>Lee, FL, USA</li><li>Manatee, FL, USA</li><li>Nassau, FL, USA</li><li>Okaloosa, FL, USA</li><li>Orange, FL, USA</li><li>Osceola, FL, USA</li><li>Palm Beach, FL, USA</li><li>Pasco, FL, USA</li><li>Pinellas, FL, USA</li><li>Santa Rosa, FL, USA</li><li>Sarasota, FL, USA</li><li>Seminole, FL, USA</li><li>St. Johns, FL, USA</li><li>Volusia, FL, USA</li><li>Lewis County, WA, USA</li><li>Del Norte County, CA, USA</li><li>Outagamie County, WI, USA</li><li>Wood County, WI, USA</li><li>Bucks, PA, USA</li><li>Chester, PA, USA</li><li>Cumberland, PA, USA</li><li>Delaware, PA, USA</li><li>Lehigh, PA, USA</li><li>Luzerne, PA, USA</li><li>Monroe, PA, USA</li><li>Montgomery, PA, USA</li><li>Northampton, PA, USA</li><li>Philadelphia, PA, USA</li><li>Pike, PA, USA</li><li>Wayne, PA, USA</li><li>Washington, PA, USA</li><li>Sevier County, TN, USA</li><li>Geauga County, OH, USA</li><li>Andalucía, Spain</li><li>Aragón, Spain</li><li>Principado de Asturias, Spain</li><li>Illes Balears, Spain</li><li>Canarias, Spain</li><li>Cantabria, Spain</li><li>Castilla y León, Spain</li><li>Castilla-La Mancha, Spain</li><li>Cataluña, Spain</li><li>Comunitat Valenciana, Spain</li><li>Extremadura, Spain</li><li>Galicia, Spain</li><li>Comunidad de Madrid, Spain</li><li>Región de Murcia, Spain</li><li>Comunidad Foral de Navarra, Spain</li><li>País Vasco, Spain</li><li>La Rioja, Spain</li><li>Ceuta, Spain</li><li>Melilla, Spain</li><li>Howard County, MD, USA</li><li>Talbot County, MD, USA</li><li>Champaign County, IL, USA</li><li>Clinton County, IL, USA</li><li>Cumberland County, IL, USA</li><li>DuPage County, IL, USA</li><li>Peoria County, IL, USA</li><li>St. Clair County, IL, USA</li><li>Sangamon County, IL, USA</li><li>Whiteside County, IL, USA</li><li>Will County, IL, USA</li><li>Winnebago County, IL, USA</li><li>Woodford County, IL, USA</li><li>Harrison County, MS, USA</li><li>Jackson County, MS, USA</li><li>Madison County, AL, USA</li><li>St. Clair County, AL, USA</li><li>Adair County, IA, USA</li><li>Black Hawk County, IA, USA</li><li>Denton County, TX, USA</li><li>Webb County, TX, USA</li><li>Brevard, FL, USA</li><li>Polk, FL, USA</li><li>Albany County, NY, USA</li><li>Dutchess County, NY, USA</li><li>Orange County, NY, USA</li><li>Monroe County, NY, USA</li><li>Erie County, NY, USA</li><li>Schenectady County, NY, USA</li><li>Allegany County, NY, USA</li><li>Greene County, NY, USA</li><li>Putnam County, NY, USA</li><li>Onondaga County, NY, USA</li><li>Tompkins County, NY, USA</li><li>Broome County, NY, USA</li><li>Clinton County, NY, USA</li><li>Delaware County, NY, USA</li><li>Herkimer County, NY, USA</li><li>Tioga County, NY, USA</li><li>Montgomery County, NY, USA</li><li>Ontario County, NY, USA</li><li>Rensselaer County, NY, USA</li><li>Sullivan County, NY, USA</li><li>Wyoming County, NY, USA</li><li>Chelan County, WA, USA</li><li>Klickitat County, WA, USA</li><li>Kenosha County, WI, USA</li><li>Allegheny, PA, USA</li><li>Beaver, PA, USA</li><li>Coshocton County, OH, USA</li><li>Darke County, OH, USA</li><li>Lake County, OH, USA</li><li>Mahoning County, OH, USA</li><li>Frederick County, MD, USA</li><li>Australia</li><li>Hong Kong</li><li>Macao</li><li>Bolivar County, MS, USA</li><li>Coahoma County, MS, USA</li><li>DeSoto County, MS, USA</li><li>Madison County, MS, USA</li><li>Perry County, MS, USA</li><li>Calhoun County, AL, USA</li><li>Boulder County, CO, USA</li><li>Garfield County, CO, USA</li><li>Routt County, CO, USA</li><li>Clear Creek County, CO, USA</li><li>Grand County, CO, USA</li><li>Lane County, OR, USA</li><li>Washington County, IA, USA</li><li>Winneshiek County, IA, USA</li><li>Bowie County, TX, USA</li><li>Brazos County, TX, USA</li><li>Medina County, TX, USA</li><li>Rusk County, TX, USA</li><li>Gadsden, FL, USA</li><li>Leon, FL, USA</li><li>Sumter, FL, USA</li><li>Walton, FL, USA</li><li>Chenango County, NY, USA</li><li>Essex County, NY, USA</li><li>Hamilton County, NY, USA</li><li>Warren County, NY, USA</li><li>Washington County, NY, USA</li><li>Total Number of Positive Cases County, NY, USA</li><li>Franklin County, WA, USA</li><li>Mason County, WA, USA</li><li>Brown County, WI, USA</li><li>La Crosse County, WI, USA</li><li>Washington County, WI, USA</li><li>Berks, PA, USA</li><li>Lackawanna, PA, USA</li><li>York, PA, USA</li><li>Cheatham County, TN, USA</li><li>Robertson County, TN, USA</li><li>Sumner County, TN, USA</li><li>Ashland County, OH, USA</li><li>Delaware County, OH, USA</li><li>Huron County, OH, USA</li><li>Middlesex County, CT, USA</li></ul>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {
"tags": []
},
"execution_count": 90
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "u7b4ygHfse-n",
"colab_type": "code",
"colab": {}
},
"source": [
"locations_of_interest = {\n",
" 'Beijing, China',\n",
" 'Hubei, China',\n",
" 'Whatcom County, WA, USA',\n",
" 'King County, WA, USA',\n",
" 'Pierce County, WA, USA',\n",
" 'WA, USA',\n",
" 'San Francisco County, CA, USA',\n",
" 'UK',\n",
" 'Italy',\n",
" 'Germany',\n",
" 'Singapore',\n",
" 'Sweden',\n",
" 'South Korea',\n",
"}\n",
"bad_locations = locations_of_interest.difference(cleaned_timeseries.location)\n",
"if bad_locations:\n",
" raise Exception(f'Bad locations: {bad_locations}')\n",
"\n",
"data_for_locations_of_interest = cleaned_timeseries[cleaned_timeseries.location.isin(locations_of_interest)]"
],
"execution_count": 0,
"outputs": []
},
{
"cell_type": "markdown",
"metadata": {
"id": "jr2W4sDGz7mE",
"colab_type": "text"
},
"source": [
"# Plotting\n",
"\n",
"## Let's get down to business!\n",
"\n",
"Starting with the basics: confirmed cases over time."
]
},
{
"cell_type": "code",
"metadata": {
"id": "UOVLJ6dqz8jE",
"colab_type": "code",
"outputId": "e2c68e2e-3bb1-48d1-e153-b1171cedbe31",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
}
},
"source": [
"display(\n",
" px.line(\n",
" data_for_locations_of_interest,\n",
" title='Cases over time',\n",
" x='date',\n",
" y='cases',\n",
" log_y=True,\n",
" color='location'\n",
" )\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"2f06d136-5bf3-47b8-9fb6-a394396a7af9\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"2f06d136-5bf3-47b8-9fb6-a394396a7af9\")) {\n",
" Plotly.newPlot(\n",
" '2f06d136-5bf3-47b8-9fb6-a394396a7af9',\n",
" [{\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Singapore\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Singapore\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [1.0, 3.0, 3.0, 4.0, 5.0, 7.0, 7.0, 10.0, 13.0, 16.0, 18.0, 18.0, 24.0, 28.0, 28.0, 30.0, 33.0, 40.0, 45.0, 47.0, 50.0, 58.0, 67.0, 72.0, 75.0, 77.0, 81.0, 84.0, 84.0, 85.0, 85.0, 89.0, 89.0, 91.0, 93.0, 93.0, 93.0, 102.0, 106.0, 108.0, 110.0, 110.0, 117.0, 130.0, 138.0, 150.0, 150.0, 160.0, 178.0, 178.0, 200.0, 212.0, 226.0, 243.0, 266.0, 313.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Germany\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Germany\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [1.0, 4.0, 4.0, 4.0, 5.0, 8.0, 10.0, 12.0, 12.0, 12.0, 12.0, 13.0, 13.0, 14.0, 14.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 17.0, 27.0, 46.0, 48.0, 79.0, 130.0, 159.0, 196.0, 262.0, 482.0, 670.0, 799.0, 1040.0, 1176.0, 1457.0, 1908.0, 2078.0, 3675.0, 4585.0, 5795.0, 7272.0, 9257.0, 12327.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Italy\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Italy\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 20.0, 62.0, 155.0, 229.0, 322.0, 453.0, 655.0, 888.0, 1128.0, 1694.0, 2036.0, 2502.0, 3089.0, 3858.0, 4636.0, 5883.0, 7375.0, 9172.0, 10149.0, 12462.0, 12462.0, 17660.0, 21157.0, 24747.0, 27980.0, 31506.0, 35713.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Sweden\", \"line\": {\"color\": \"#ab63fa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Sweden\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0, 7.0, 7.0, 12.0, 14.0, 15.0, 21.0, 35.0, 94.0, 101.0, 161.0, 203.0, 248.0, 355.0, 500.0, 599.0, 814.0, 961.0, 1022.0, 1103.0, 1190.0, 1279.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=WA, USA\", \"line\": {\"color\": \"#FFA15A\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [267.0, 366.0, 442.0, 568.0, 642.0, 769.0, 904.0, 1012.0, 1187.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Hubei, China\", \"line\": {\"color\": \"#19d3f3\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Hubei, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [444.0, 444.0, 549.0, 761.0, 1058.0, 1423.0, 3554.0, 3554.0, 4903.0, 5806.0, 7153.0, 11177.0, 13522.0, 16678.0, 19665.0, 22112.0, 24953.0, 27100.0, 29631.0, 31728.0, 33366.0, 33366.0, 48206.0, 54406.0, 56249.0, 58182.0, 59989.0, 61682.0, 62031.0, 62442.0, 62662.0, 64084.0, 64084.0, 64287.0, 64786.0, 65187.0, 65596.0, 65914.0, 66337.0, 66907.0, 67103.0, 67217.0, 67332.0, 67466.0, 67592.0, 67666.0, 67707.0, 67743.0, 67760.0, 67773.0, 67781.0, 67786.0, 67790.0, 67794.0, 67798.0, 67799.0, 67800.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=South Korea\", \"line\": {\"color\": \"#FF6692\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=South Korea\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [1.0, 1.0, 2.0, 2.0, 3.0, 4.0, 4.0, 4.0, 4.0, 11.0, 12.0, 15.0, 15.0, 16.0, 19.0, 23.0, 24.0, 24.0, 25.0, 27.0, 28.0, 28.0, 28.0, 28.0, 28.0, 29.0, 30.0, 31.0, 31.0, 104.0, 204.0, 433.0, 602.0, 833.0, 977.0, 1261.0, 1766.0, 2337.0, 3150.0, 3736.0, 4335.0, 5186.0, 5621.0, 6088.0, 6593.0, 7041.0, 7314.0, 7478.0, 7513.0, 7755.0, 7869.0, 7979.0, 8086.0, 8162.0, 8236.0, 8320.0, 8413.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Beijing, China\", \"line\": {\"color\": \"#B6E880\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Beijing, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [14.0, 22.0, 36.0, 41.0, 68.0, 80.0, 91.0, 111.0, 114.0, 139.0, 168.0, 191.0, 212.0, 228.0, 253.0, 274.0, 297.0, 315.0, 326.0, 337.0, 342.0, 352.0, 366.0, 372.0, 375.0, 380.0, 381.0, 387.0, 393.0, 395.0, 396.0, 399.0, 399.0, 399.0, 400.0, 400.0, 410.0, 410.0, 411.0, 413.0, 414.0, 414.0, 418.0, 418.0, 422.0, 426.0, 428.0, 428.0, 429.0, 435.0, 435.0, 436.0, 437.0, 442.0, 452.0, 456.0, 469.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Pierce County, WA, USA<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Pierce County, WA, USA\", \"line\": {\"color\": \"#FF97FF\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Pierce County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [1.0, 4.0, 4.0, 4.0, 14.0, 19.0, 26.0, 29.0, 38.0, 45.0, 56.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=San Francisco County, CA, USA<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=San Francisco County, CA, USA\", \"line\": {\"color\": \"#FECB52\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=San Francisco County, CA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [2.0, 2.0, 9.0, 9.0, 9.0, 14.0, 14.0, 21.0, 28.0, 37.0, 40.0, 43.0, 51.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=King County, WA, USA\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=King County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 6.0, 9.0, 14.0, 21.0, 31.0, 51.0, 58.0, 71.0, 83.0, 83.0, 116.0, 190.0, 328.0, 387.0, 420.0, 488.0, 569.0, 562.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Whatcom County, WA, USA<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=Whatcom County, WA, USA\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Whatcom County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [1.0, 1.0, 2.0, 3.0, 3.0, 6.0, 7.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>date=%{x}<br>cases=%{y}\", \"legendgroup\": \"location=UK\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=UK\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [456.0, 798.0, 1140.0, 1140.0, 1543.0, 1950.0, 2626.0], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Cases over time\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"date\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"cases\"}, \"type\": \"log\"}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('2f06d136-5bf3-47b8-9fb6-a394396a7af9');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "0BoB0UsQ0HlQ",
"colab_type": "text"
},
"source": [
"## What about deaths over time?"
]
},
{
"cell_type": "code",
"metadata": {
"id": "8GNfwXPm0G2r",
"colab_type": "code",
"outputId": "a4814d47-f024-4cf7-c31b-617d465f6001",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
}
},
"source": [
"display(\n",
" px.line(\n",
" data_for_locations_of_interest,\n",
" title='Deaths over time',\n",
" x='date',\n",
" y='deaths',\n",
" log_y=True,\n",
" color='location'\n",
" )\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"b0c9a543-a471-486c-b14a-9ded3714b9e5\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"b0c9a543-a471-486c-b14a-9ded3714b9e5\")) {\n",
" Plotly.newPlot(\n",
" 'b0c9a543-a471-486c-b14a-9ded3714b9e5',\n",
" [{\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Singapore\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Singapore\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Germany\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Germany\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 2.0, 2.0, 3.0, 3.0, 7.0, 9.0, 11.0, 17.0, 24.0, 28.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Italy\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Italy\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 2.0, 3.0, 7.0, 10.0, 12.0, 17.0, 21.0, 29.0, 34.0, 52.0, 79.0, 107.0, 148.0, 197.0, 233.0, 366.0, 463.0, 631.0, 827.0, 827.0, 1266.0, 1441.0, 1809.0, 2158.0, 2503.0, 2978.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Sweden\", \"line\": {\"color\": \"#ab63fa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Sweden\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 1.0, 1.0, 2.0, 3.0, 6.0, 7.0, 10.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=WA, USA\", \"line\": {\"color\": \"#FFA15A\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [23.0, 29.0, 31.0, 37.0, 40.0, 42.0, 48.0, 52.0, 66.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Hubei, China\", \"line\": {\"color\": \"#19d3f3\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Hubei, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [17.0, 17.0, 24.0, 40.0, 52.0, 76.0, 125.0, 125.0, 162.0, 204.0, 249.0, 350.0, 414.0, 479.0, 549.0, 618.0, 699.0, 780.0, 871.0, 974.0, 1068.0, 1068.0, 1310.0, 1457.0, 1596.0, 1696.0, 1789.0, 1921.0, 2029.0, 2144.0, 2144.0, 2346.0, 2346.0, 2495.0, 2563.0, 2615.0, 2641.0, 2682.0, 2727.0, 2761.0, 2803.0, 2835.0, 2871.0, 2902.0, 2931.0, 2959.0, 2986.0, 3008.0, 3024.0, 3046.0, 3056.0, 3062.0, 3075.0, 3085.0, 3099.0, 3111.0, 3122.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=South Korea\", \"line\": {\"color\": \"#FF6692\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=South Korea\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 2.0, 2.0, 6.0, 8.0, 10.0, 12.0, 13.0, 13.0, 16.0, 17.0, 28.0, 28.0, 35.0, 35.0, 42.0, 44.0, 50.0, 53.0, 54.0, 60.0, 66.0, 66.0, 72.0, 75.0, 75.0, 81.0, 84.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Beijing, China\", \"line\": {\"color\": \"#B6E880\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Beijing, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 5.0, 7.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Pierce County, WA, USA<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Pierce County, WA, USA\", \"line\": {\"color\": \"#FF97FF\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Pierce County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=San Francisco County, CA, USA<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=San Francisco County, CA, USA\", \"line\": {\"color\": \"#FECB52\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=San Francisco County, CA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=King County, WA, USA\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=King County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 1.0, 5.0, 6.0, 9.0, 10.0, 12.0, 15.0, 17.0, 17.0, 21.0, 22.0, 32.0, 35.0, 37.0, 43.0, 43.0, 56.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Whatcom County, WA, USA<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Whatcom County, WA, USA\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Whatcom County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>date=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=UK\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=UK\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [8.0, 8.0, 21.0, 21.0, 55.0, 55.0, 71.0], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Deaths over time\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"date\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"deaths\"}, \"type\": \"log\"}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('b0c9a543-a471-486c-b14a-9ded3714b9e5');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "JhyS0BB00PWH",
"colab_type": "text"
},
"source": [
"## Interesting...\n",
"that's a similar pattern to the number of confirmed cases over time. Is there a linear relationship? Let's see."
]
},
{
"cell_type": "code",
"metadata": {
"id": "ffGEIrp90Obo",
"colab_type": "code",
"outputId": "c3ca249f-616d-4de3-83b2-8d27adfca2dc",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
}
},
"source": [
"display(\n",
" px.line(\n",
" data_for_locations_of_interest,\n",
" title='Cases/deaths over time',\n",
" x='date',\n",
" y='cases/deaths',\n",
" log_y=True,\n",
" color='location'\n",
" )\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"76520b55-3a91-41d4-a991-577b849de10a\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"76520b55-3a91-41d4-a991-577b849de10a\")) {\n",
" Plotly.newPlot(\n",
" '76520b55-3a91-41d4-a991-577b849de10a',\n",
" [{\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Singapore\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Singapore\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Germany\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Germany\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 588.0, 728.5, 636.0, 692.6666666666666, 525.0, 509.44444444444446, 526.8181818181819, 427.7647058823529, 385.7083333333333, 440.25], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Italy\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Italy\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 20.0, 31.0, 51.666666666666664, 32.714285714285715, 32.2, 37.75, 38.529411764705884, 42.285714285714285, 38.89655172413793, 49.8235294117647, 39.15384615384615, 31.670886075949365, 28.869158878504674, 26.06756756756757, 23.532994923857867, 25.248927038626608, 20.150273224043715, 19.809935205183585, 16.083993660855786, 15.068923821039903, 15.068923821039903, 13.949447077409163, 14.682165163081194, 13.679933665008292, 12.965708989805375, 12.587295245705153, 11.992276695768972], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Sweden\", \"line\": {\"color\": \"#ab63fa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Sweden\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 500.0, 599.0, 814.0, 480.5, 340.6666666666667, 183.83333333333334, 170.0, 127.9], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=WA, USA\", \"line\": {\"color\": \"#FFA15A\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [11.608695652173912, 12.620689655172415, 14.258064516129032, 15.35135135135135, 16.05, 18.30952380952381, 18.833333333333332, 19.46153846153846, 17.984848484848484], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Hubei, China\", \"line\": {\"color\": \"#19d3f3\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Hubei, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [26.11764705882353, 26.11764705882353, 22.875, 19.025, 20.346153846153847, 18.723684210526315, 28.432, 28.432, 30.265432098765434, 28.46078431372549, 28.72690763052209, 31.934285714285714, 32.66183574879227, 34.81837160751566, 35.81967213114754, 35.77993527508091, 35.698140200286126, 34.743589743589745, 34.0195177956372, 32.57494866529774, 31.241573033707866, 31.241573033707866, 36.79847328244275, 37.34111187371311, 35.2437343358396, 34.305424528301884, 33.5321408608161, 32.10931806350859, 30.57220305569246, 29.124067164179106, 29.22667910447761, 27.316283034953113, 27.316283034953113, 25.766332665330662, 25.277409285992977, 24.92810707456979, 24.83756152972359, 24.576435495898583, 24.325999266593325, 24.232886635277072, 23.939707456296826, 23.709700176366844, 23.452455590386624, 23.248104755341146, 23.061071306721256, 22.867860763771546, 22.674815807099797, 22.52094414893617, 22.40740740740741, 22.24983585029547, 22.17964659685864, 22.13781841933377, 22.045528455284554, 21.975364667747165, 21.87737979993546, 21.79331404693025, 21.71684817424728], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=South Korea\", \"line\": {\"color\": \"#FF6692\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=South Korea\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 104.0, 102.0, 216.5, 100.33333333333333, 104.125, 97.7, 105.08333333333333, 135.84615384615384, 179.76923076923077, 196.875, 219.76470588235293, 154.82142857142858, 185.21428571428572, 160.6, 173.94285714285715, 156.97619047619048, 160.02272727272728, 146.28, 141.0943396226415, 139.12962962962962, 129.25, 119.22727272727273, 120.89393939393939, 112.30555555555556, 108.82666666666667, 109.81333333333333, 102.71604938271605, 100.1547619047619], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Beijing, China\", \"line\": {\"color\": \"#B6E880\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Beijing, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, 80.0, 91.0, 111.0, 114.0, 139.0, 168.0, 191.0, 212.0, 228.0, 253.0, 274.0, 297.0, 157.5, 163.0, 168.5, 114.0, 117.33333333333333, 122.0, 124.0, 93.75, 95.0, 95.25, 96.75, 98.25, 98.75, 99.0, 99.75, 99.75, 99.75, 100.0, 100.0, 82.0, 58.57142857142857, 51.375, 51.625, 51.75, 51.75, 52.25, 52.25, 52.75, 53.25, 53.5, 53.5, 53.625, 54.375, 54.375, 54.5, 54.625, 55.25, 56.5, 57.0, 58.625], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Pierce County, WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Pierce County, WA, USA\", \"line\": {\"color\": \"#FF97FF\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Pierce County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=San Francisco County, CA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=San Francisco County, CA, USA\", \"line\": {\"color\": \"#FECB52\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=San Francisco County, CA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=King County, WA, USA\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=King County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 6.0, 9.0, 2.8, 3.5, 3.4444444444444446, 5.1, 4.833333333333333, 4.733333333333333, 4.882352941176471, 4.882352941176471, 5.523809523809524, 8.636363636363637, 10.25, 11.057142857142857, 11.35135135135135, 11.348837209302326, 13.232558139534884, 10.035714285714286], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Whatcom County, WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=Whatcom County, WA, USA\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Whatcom County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"location=UK\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=UK\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [57.0, 99.75, 54.285714285714285, 54.285714285714285, 28.054545454545455, 35.45454545454545, 36.985915492957744], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Cases/deaths over time\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"date\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"cases/deaths\"}, \"type\": \"log\"}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('76520b55-3a91-41d4-a991-577b849de10a');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "FP2RzhqH5NaO",
"colab_type": "text"
},
"source": [
"That's surprisingly consistent for a particular location. Let's look at that differently."
]
},
{
"cell_type": "code",
"metadata": {
"id": "C6ONniMd4ucj",
"colab_type": "code",
"outputId": "885eaff5-05b5-4015-8c38-03f6d9280070",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 1000
}
},
"source": [
"display(\n",
" px.box(\n",
" data_for_locations_of_interest,\n",
" title='Cases/deaths boxplot',\n",
" x='location',\n",
" y='cases/deaths',\n",
" )\n",
")\n",
"display(\n",
" px.line(\n",
" data_for_locations_of_interest,\n",
" title='Cases/deaths by location over time',\n",
" facet_col='location',\n",
" x='date',\n",
" y='cases/deaths',\n",
" )\n",
")\n",
"display(\n",
" px.line(\n",
" data_for_locations_of_interest,\n",
" title='Cases vs. deaths by location',\n",
" color='location',\n",
" x='cases',\n",
" y='deaths',\n",
" log_x=True,\n",
" log_y=True,\n",
" )\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"c235477d-bd2e-4005-b21d-5b351f3b50cb\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"c235477d-bd2e-4005-b21d-5b351f3b50cb\")) {\n",
" Plotly.newPlot(\n",
" 'c235477d-bd2e-4005-b21d-5b351f3b50cb',\n",
" [{\"alignmentgroup\": \"True\", \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"marker\": {\"color\": \"#636efa\"}, \"name\": \"\", \"notched\": false, \"offsetgroup\": \"\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"box\", \"x\": [\"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Singapore\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Germany\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Italy\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"Sweden\", \"WA, USA\", \"WA, USA\", \"WA, USA\", \"WA, USA\", \"WA, USA\", \"WA, USA\", \"WA, USA\", \"WA, USA\", \"WA, USA\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"Hubei, China\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"South Korea\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Beijing, China\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"Pierce County, WA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"San Francisco County, CA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"King County, WA, USA\", \"Whatcom County, WA, USA\", \"Whatcom County, WA, USA\", \"Whatcom County, WA, USA\", \"Whatcom County, WA, USA\", \"Whatcom County, WA, USA\", \"Whatcom County, WA, USA\", \"Whatcom County, WA, USA\", \"UK\", \"UK\", \"UK\", \"UK\", \"UK\", \"UK\", \"UK\"], \"x0\": \" \", \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 588.0, 728.5, 636.0, 692.6666666666666, 525.0, 509.44444444444446, 526.8181818181819, 427.7647058823529, 385.7083333333333, 440.25, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 20.0, 31.0, 51.666666666666664, 32.714285714285715, 32.2, 37.75, 38.529411764705884, 42.285714285714285, 38.89655172413793, 49.8235294117647, 39.15384615384615, 31.670886075949365, 28.869158878504674, 26.06756756756757, 23.532994923857867, 25.248927038626608, 20.150273224043715, 19.809935205183585, 16.083993660855786, 15.068923821039903, 15.068923821039903, 13.949447077409163, 14.682165163081194, 13.679933665008292, 12.965708989805375, 12.587295245705153, 11.992276695768972, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 500.0, 599.0, 814.0, 480.5, 340.6666666666667, 183.83333333333334, 170.0, 127.9, 11.608695652173912, 12.620689655172415, 14.258064516129032, 15.35135135135135, 16.05, 18.30952380952381, 18.833333333333332, 19.46153846153846, 17.984848484848484, 26.11764705882353, 26.11764705882353, 22.875, 19.025, 20.346153846153847, 18.723684210526315, 28.432, 28.432, 30.265432098765434, 28.46078431372549, 28.72690763052209, 31.934285714285714, 32.66183574879227, 34.81837160751566, 35.81967213114754, 35.77993527508091, 35.698140200286126, 34.743589743589745, 34.0195177956372, 32.57494866529774, 31.241573033707866, 31.241573033707866, 36.79847328244275, 37.34111187371311, 35.2437343358396, 34.305424528301884, 33.5321408608161, 32.10931806350859, 30.57220305569246, 29.124067164179106, 29.22667910447761, 27.316283034953113, 27.316283034953113, 25.766332665330662, 25.277409285992977, 24.92810707456979, 24.83756152972359, 24.576435495898583, 24.325999266593325, 24.232886635277072, 23.939707456296826, 23.709700176366844, 23.452455590386624, 23.248104755341146, 23.061071306721256, 22.867860763771546, 22.674815807099797, 22.52094414893617, 22.40740740740741, 22.24983585029547, 22.17964659685864, 22.13781841933377, 22.045528455284554, 21.975364667747165, 21.87737979993546, 21.79331404693025, 21.71684817424728, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 104.0, 102.0, 216.5, 100.33333333333333, 104.125, 97.7, 105.08333333333333, 135.84615384615384, 179.76923076923077, 196.875, 219.76470588235293, 154.82142857142858, 185.21428571428572, 160.6, 173.94285714285715, 156.97619047619048, 160.02272727272728, 146.28, 141.0943396226415, 139.12962962962962, 129.25, 119.22727272727273, 120.89393939393939, 112.30555555555556, 108.82666666666667, 109.81333333333333, 102.71604938271605, 100.1547619047619, null, null, null, null, null, 80.0, 91.0, 111.0, 114.0, 139.0, 168.0, 191.0, 212.0, 228.0, 253.0, 274.0, 297.0, 157.5, 163.0, 168.5, 114.0, 117.33333333333333, 122.0, 124.0, 93.75, 95.0, 95.25, 96.75, 98.25, 98.75, 99.0, 99.75, 99.75, 99.75, 100.0, 100.0, 82.0, 58.57142857142857, 51.375, 51.625, 51.75, 51.75, 52.25, 52.25, 52.75, 53.25, 53.5, 53.5, 53.625, 54.375, 54.375, 54.5, 54.625, 55.25, 56.5, 57.0, 58.625, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 6.0, 9.0, 2.8, 3.5, 3.4444444444444446, 5.1, 4.833333333333333, 4.733333333333333, 4.882352941176471, 4.882352941176471, 5.523809523809524, 8.636363636363637, 10.25, 11.057142857142857, 11.35135135135135, 11.348837209302326, 13.232558139534884, 10.035714285714286, null, null, null, null, null, null, null, 57.0, 99.75, 54.285714285714285, 54.285714285714285, 28.054545454545455, 35.45454545454545, 36.985915492957744], \"y0\": \" \", \"yaxis\": \"y\"}],\n",
" {\"boxmode\": \"group\", \"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Cases/deaths boxplot\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"location\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"cases/deaths\"}}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('c235477d-bd2e-4005-b21d-5b351f3b50cb');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
},
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"c0f67cad-d798-4332-8a5b-e522af774783\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"c0f67cad-d798-4332-8a5b-e522af774783\")) {\n",
" Plotly.newPlot(\n",
" 'c0f67cad-d798-4332-8a5b-e522af774783',\n",
" [{\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x2\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 588.0, 728.5, 636.0, 692.6666666666666, 525.0, 509.44444444444446, 526.8181818181819, 427.7647058823529, 385.7083333333333, 440.25], \"yaxis\": \"y2\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x3\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 20.0, 31.0, 51.666666666666664, 32.714285714285715, 32.2, 37.75, 38.529411764705884, 42.285714285714285, 38.89655172413793, 49.8235294117647, 39.15384615384615, 31.670886075949365, 28.869158878504674, 26.06756756756757, 23.532994923857867, 25.248927038626608, 20.150273224043715, 19.809935205183585, 16.083993660855786, 15.068923821039903, 15.068923821039903, 13.949447077409163, 14.682165163081194, 13.679933665008292, 12.965708989805375, 12.587295245705153, 11.992276695768972], \"yaxis\": \"y3\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x4\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 500.0, 599.0, 814.0, 480.5, 340.6666666666667, 183.83333333333334, 170.0, 127.9], \"yaxis\": \"y4\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x5\", \"y\": [11.608695652173912, 12.620689655172415, 14.258064516129032, 15.35135135135135, 16.05, 18.30952380952381, 18.833333333333332, 19.46153846153846, 17.984848484848484], \"yaxis\": \"y5\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x6\", \"y\": [26.11764705882353, 26.11764705882353, 22.875, 19.025, 20.346153846153847, 18.723684210526315, 28.432, 28.432, 30.265432098765434, 28.46078431372549, 28.72690763052209, 31.934285714285714, 32.66183574879227, 34.81837160751566, 35.81967213114754, 35.77993527508091, 35.698140200286126, 34.743589743589745, 34.0195177956372, 32.57494866529774, 31.241573033707866, 31.241573033707866, 36.79847328244275, 37.34111187371311, 35.2437343358396, 34.305424528301884, 33.5321408608161, 32.10931806350859, 30.57220305569246, 29.124067164179106, 29.22667910447761, 27.316283034953113, 27.316283034953113, 25.766332665330662, 25.277409285992977, 24.92810707456979, 24.83756152972359, 24.576435495898583, 24.325999266593325, 24.232886635277072, 23.939707456296826, 23.709700176366844, 23.452455590386624, 23.248104755341146, 23.061071306721256, 22.867860763771546, 22.674815807099797, 22.52094414893617, 22.40740740740741, 22.24983585029547, 22.17964659685864, 22.13781841933377, 22.045528455284554, 21.975364667747165, 21.87737979993546, 21.79331404693025, 21.71684817424728], \"yaxis\": \"y6\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x7\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 104.0, 102.0, 216.5, 100.33333333333333, 104.125, 97.7, 105.08333333333333, 135.84615384615384, 179.76923076923077, 196.875, 219.76470588235293, 154.82142857142858, 185.21428571428572, 160.6, 173.94285714285715, 156.97619047619048, 160.02272727272728, 146.28, 141.0943396226415, 139.12962962962962, 129.25, 119.22727272727273, 120.89393939393939, 112.30555555555556, 108.82666666666667, 109.81333333333333, 102.71604938271605, 100.1547619047619], \"yaxis\": \"y7\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x8\", \"y\": [null, null, null, null, null, 80.0, 91.0, 111.0, 114.0, 139.0, 168.0, 191.0, 212.0, 228.0, 253.0, 274.0, 297.0, 157.5, 163.0, 168.5, 114.0, 117.33333333333333, 122.0, 124.0, 93.75, 95.0, 95.25, 96.75, 98.25, 98.75, 99.0, 99.75, 99.75, 99.75, 100.0, 100.0, 82.0, 58.57142857142857, 51.375, 51.625, 51.75, 51.75, 52.25, 52.25, 52.75, 53.25, 53.5, 53.5, 53.625, 54.375, 54.375, 54.5, 54.625, 55.25, 56.5, 57.0, 58.625], \"yaxis\": \"y8\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Pierce County, WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x9\", \"y\": [null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y9\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=San Francisco County, CA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x10\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y10\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x11\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 6.0, 9.0, 2.8, 3.5, 3.4444444444444446, 5.1, 4.833333333333333, 4.733333333333333, 4.882352941176471, 4.882352941176471, 5.523809523809524, 8.636363636363637, 10.25, 11.057142857142857, 11.35135135135135, 11.348837209302326, 13.232558139534884, 10.035714285714286], \"yaxis\": \"y11\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Whatcom County, WA, USA<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x12\", \"y\": [null, null, null, null, null, null, null], \"yaxis\": \"y12\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>date=%{x}<br>cases/deaths=%{y}\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [\"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x13\", \"y\": [57.0, 99.75, 54.285714285714285, 54.285714285714285, 28.054545454545455, 35.45454545454545, 36.985915492957744], \"yaxis\": \"y13\"}],\n",
" {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"location=Singapore\", \"x\": 0.029230769230769234, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=Germany\", \"x\": 0.1076923076923077, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=Italy\", \"x\": 0.18615384615384617, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=Sweden\", \"x\": 0.26461538461538464, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=WA, USA\", \"x\": 0.3430769230769231, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=Hubei, China\", \"x\": 0.4215384615384616, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=South Korea\", \"x\": 0.5, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=Beijing, China\", \"x\": 0.5784615384615384, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=Pierce County, WA, USA\", \"x\": 0.6569230769230769, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=San Francisco County, CA, USA\", \"x\": 0.7353846153846153, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=King County, WA, USA\", \"x\": 0.8138461538461539, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=Whatcom County, WA, USA\", \"x\": 0.8923076923076922, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"location=UK\", \"x\": 0.9707692307692308, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Cases/deaths by location over time\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.05846153846153847], \"title\": {\"text\": \"date\"}}, \"xaxis10\": {\"anchor\": \"y10\", \"domain\": [0.7061538461538461, 0.7646153846153846], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis11\": {\"anchor\": \"y11\", \"domain\": [0.7846153846153847, 0.8430769230769232], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis12\": {\"anchor\": \"y12\", \"domain\": [0.8630769230769231, 0.9215384615384615], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis13\": {\"anchor\": \"y13\", \"domain\": [0.9415384615384615, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.07846153846153847, 0.13692307692307693], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis3\": {\"anchor\": \"y3\", \"domain\": [0.15692307692307694, 0.2153846153846154], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis4\": {\"anchor\": \"y4\", \"domain\": [0.23538461538461541, 0.29384615384615387], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis5\": {\"anchor\": \"y5\", \"domain\": [0.3138461538461539, 0.37230769230769234], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis6\": {\"anchor\": \"y6\", \"domain\": [0.39230769230769236, 0.4507692307692308], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis7\": {\"anchor\": \"y7\", \"domain\": [0.4707692307692308, 0.5292307692307693], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis8\": {\"anchor\": \"y8\", \"domain\": [0.5492307692307692, 0.6076923076923076], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"xaxis9\": {\"anchor\": \"y9\", \"domain\": [0.6276923076923077, 0.6861538461538461], \"matches\": \"x\", \"title\": {\"text\": \"date\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"cases/deaths\"}}, \"yaxis10\": {\"anchor\": \"x10\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis11\": {\"anchor\": \"x11\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis12\": {\"anchor\": \"x12\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis13\": {\"anchor\": \"x13\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis3\": {\"anchor\": \"x3\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis4\": {\"anchor\": \"x4\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis5\": {\"anchor\": \"x5\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis6\": {\"anchor\": \"x6\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis7\": {\"anchor\": \"x7\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis8\": {\"anchor\": \"x8\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}, \"yaxis9\": {\"anchor\": \"x9\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('c0f67cad-d798-4332-8a5b-e522af774783');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
},
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"e6020d2e-b2ed-46fb-9179-f29752795f3a\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"e6020d2e-b2ed-46fb-9179-f29752795f3a\")) {\n",
" Plotly.newPlot(\n",
" 'e6020d2e-b2ed-46fb-9179-f29752795f3a',\n",
" [{\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Singapore\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Singapore\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [1.0, 3.0, 3.0, 4.0, 5.0, 7.0, 7.0, 10.0, 13.0, 16.0, 18.0, 18.0, 24.0, 28.0, 28.0, 30.0, 33.0, 40.0, 45.0, 47.0, 50.0, 58.0, 67.0, 72.0, 75.0, 77.0, 81.0, 84.0, 84.0, 85.0, 85.0, 89.0, 89.0, 91.0, 93.0, 93.0, 93.0, 102.0, 106.0, 108.0, 110.0, 110.0, 117.0, 130.0, 138.0, 150.0, 150.0, 160.0, 178.0, 178.0, 200.0, 212.0, 226.0, 243.0, 266.0, 313.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Germany\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Germany\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [1.0, 4.0, 4.0, 4.0, 5.0, 8.0, 10.0, 12.0, 12.0, 12.0, 12.0, 13.0, 13.0, 14.0, 14.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 17.0, 27.0, 46.0, 48.0, 79.0, 130.0, 159.0, 196.0, 262.0, 482.0, 670.0, 799.0, 1040.0, 1176.0, 1457.0, 1908.0, 2078.0, 3675.0, 4585.0, 5795.0, 7272.0, 9257.0, 12327.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 2.0, 2.0, 3.0, 3.0, 7.0, 9.0, 11.0, 17.0, 24.0, 28.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Italy\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Italy\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 20.0, 62.0, 155.0, 229.0, 322.0, 453.0, 655.0, 888.0, 1128.0, 1694.0, 2036.0, 2502.0, 3089.0, 3858.0, 4636.0, 5883.0, 7375.0, 9172.0, 10149.0, 12462.0, 12462.0, 17660.0, 21157.0, 24747.0, 27980.0, 31506.0, 35713.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 2.0, 3.0, 7.0, 10.0, 12.0, 17.0, 21.0, 29.0, 34.0, 52.0, 79.0, 107.0, 148.0, 197.0, 233.0, 366.0, 463.0, 631.0, 827.0, 827.0, 1266.0, 1441.0, 1809.0, 2158.0, 2503.0, 2978.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Sweden\", \"line\": {\"color\": \"#ab63fa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Sweden\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0, 7.0, 7.0, 12.0, 14.0, 15.0, 21.0, 35.0, 94.0, 101.0, 161.0, 203.0, 248.0, 355.0, 500.0, 599.0, 814.0, 961.0, 1022.0, 1103.0, 1190.0, 1279.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 1.0, 1.0, 2.0, 3.0, 6.0, 7.0, 10.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=WA, USA\", \"line\": {\"color\": \"#FFA15A\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [267.0, 366.0, 442.0, 568.0, 642.0, 769.0, 904.0, 1012.0, 1187.0], \"xaxis\": \"x\", \"y\": [23.0, 29.0, 31.0, 37.0, 40.0, 42.0, 48.0, 52.0, 66.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Hubei, China\", \"line\": {\"color\": \"#19d3f3\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Hubei, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [444.0, 444.0, 549.0, 761.0, 1058.0, 1423.0, 3554.0, 3554.0, 4903.0, 5806.0, 7153.0, 11177.0, 13522.0, 16678.0, 19665.0, 22112.0, 24953.0, 27100.0, 29631.0, 31728.0, 33366.0, 33366.0, 48206.0, 54406.0, 56249.0, 58182.0, 59989.0, 61682.0, 62031.0, 62442.0, 62662.0, 64084.0, 64084.0, 64287.0, 64786.0, 65187.0, 65596.0, 65914.0, 66337.0, 66907.0, 67103.0, 67217.0, 67332.0, 67466.0, 67592.0, 67666.0, 67707.0, 67743.0, 67760.0, 67773.0, 67781.0, 67786.0, 67790.0, 67794.0, 67798.0, 67799.0, 67800.0], \"xaxis\": \"x\", \"y\": [17.0, 17.0, 24.0, 40.0, 52.0, 76.0, 125.0, 125.0, 162.0, 204.0, 249.0, 350.0, 414.0, 479.0, 549.0, 618.0, 699.0, 780.0, 871.0, 974.0, 1068.0, 1068.0, 1310.0, 1457.0, 1596.0, 1696.0, 1789.0, 1921.0, 2029.0, 2144.0, 2144.0, 2346.0, 2346.0, 2495.0, 2563.0, 2615.0, 2641.0, 2682.0, 2727.0, 2761.0, 2803.0, 2835.0, 2871.0, 2902.0, 2931.0, 2959.0, 2986.0, 3008.0, 3024.0, 3046.0, 3056.0, 3062.0, 3075.0, 3085.0, 3099.0, 3111.0, 3122.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=South Korea\", \"line\": {\"color\": \"#FF6692\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=South Korea\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [1.0, 1.0, 2.0, 2.0, 3.0, 4.0, 4.0, 4.0, 4.0, 11.0, 12.0, 15.0, 15.0, 16.0, 19.0, 23.0, 24.0, 24.0, 25.0, 27.0, 28.0, 28.0, 28.0, 28.0, 28.0, 29.0, 30.0, 31.0, 31.0, 104.0, 204.0, 433.0, 602.0, 833.0, 977.0, 1261.0, 1766.0, 2337.0, 3150.0, 3736.0, 4335.0, 5186.0, 5621.0, 6088.0, 6593.0, 7041.0, 7314.0, 7478.0, 7513.0, 7755.0, 7869.0, 7979.0, 8086.0, 8162.0, 8236.0, 8320.0, 8413.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 2.0, 2.0, 6.0, 8.0, 10.0, 12.0, 13.0, 13.0, 16.0, 17.0, 28.0, 28.0, 35.0, 35.0, 42.0, 44.0, 50.0, 53.0, 54.0, 60.0, 66.0, 66.0, 72.0, 75.0, 75.0, 81.0, 84.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Beijing, China\", \"line\": {\"color\": \"#B6E880\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Beijing, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [14.0, 22.0, 36.0, 41.0, 68.0, 80.0, 91.0, 111.0, 114.0, 139.0, 168.0, 191.0, 212.0, 228.0, 253.0, 274.0, 297.0, 315.0, 326.0, 337.0, 342.0, 352.0, 366.0, 372.0, 375.0, 380.0, 381.0, 387.0, 393.0, 395.0, 396.0, 399.0, 399.0, 399.0, 400.0, 400.0, 410.0, 410.0, 411.0, 413.0, 414.0, 414.0, 418.0, 418.0, 422.0, 426.0, 428.0, 428.0, 429.0, 435.0, 435.0, 436.0, 437.0, 442.0, 452.0, 456.0, 469.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 5.0, 7.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Pierce County, WA, USA<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Pierce County, WA, USA\", \"line\": {\"color\": \"#FF97FF\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Pierce County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [1.0, 4.0, 4.0, 4.0, 14.0, 19.0, 26.0, 29.0, 38.0, 45.0, 56.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=San Francisco County, CA, USA<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=San Francisco County, CA, USA\", \"line\": {\"color\": \"#FECB52\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=San Francisco County, CA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [2.0, 2.0, 9.0, 9.0, 9.0, 14.0, 14.0, 21.0, 28.0, 37.0, 40.0, 43.0, 51.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=King County, WA, USA\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=King County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 6.0, 9.0, 14.0, 21.0, 31.0, 51.0, 58.0, 71.0, 83.0, 83.0, 116.0, 190.0, 328.0, 387.0, 420.0, 488.0, 569.0, 562.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1.0, 1.0, 5.0, 6.0, 9.0, 10.0, 12.0, 15.0, 17.0, 17.0, 21.0, 22.0, 32.0, 35.0, 37.0, 43.0, 43.0, 56.0], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Whatcom County, WA, USA<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=Whatcom County, WA, USA\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Whatcom County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [1.0, 1.0, 2.0, 3.0, 3.0, 6.0, 7.0], \"xaxis\": \"x\", \"y\": [null, null, null, null, null, null, null], \"yaxis\": \"y\"}, {\"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>cases=%{x}<br>deaths=%{y}\", \"legendgroup\": \"location=UK\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=UK\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [456.0, 798.0, 1140.0, 1140.0, 1543.0, 1950.0, 2626.0], \"xaxis\": \"x\", \"y\": [8.0, 8.0, 21.0, 21.0, 55.0, 55.0, 71.0], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Cases vs. deaths by location\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"cases\"}, \"type\": \"log\"}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"deaths\"}, \"type\": \"log\"}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('e6020d2e-b2ed-46fb-9179-f29752795f3a');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "ecCOClXUxqDv",
"colab_type": "code",
"outputId": "e2281109-f874-40bb-cda8-03f221d833ac",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
}
},
"source": [
"display(\n",
" px.line(\n",
" data_for_locations_of_interest[~pd.np.isnan(data_for_locations_of_interest['days since 100 cases'])],\n",
" title='Cases over time<br><i>log Y axis. X axis shifted to match 1st day each location exceeded 100 cases</i>',\n",
" x='days since 100 cases',\n",
" y='cases',\n",
" hover_data=['Date'],\n",
" log_y=True,\n",
" color='location'\n",
" )\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"0a70c306-3d2b-43f3-af08-9c7c52a70c91\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"0a70c306-3d2b-43f3-af08-9c7c52a70c91\")) {\n",
" Plotly.newPlot(\n",
" '0a70c306-3d2b-43f3-af08-9c7c52a70c91',\n",
" [{\"customdata\": [[\"2020-01-23\"], [\"2020-01-24\"], [\"2020-01-25\"], [\"2020-01-26\"], [\"2020-01-27\"], [\"2020-01-28\"], [\"2020-01-29\"], [\"2020-01-30\"], [\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=Singapore\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Singapore\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-37.0, -36.0, -35.0, -34.0, -33.0, -32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0], \"xaxis\": \"x\", \"y\": [1.0, 3.0, 3.0, 4.0, 5.0, 7.0, 7.0, 10.0, 13.0, 16.0, 18.0, 18.0, 24.0, 28.0, 28.0, 30.0, 33.0, 40.0, 45.0, 47.0, 50.0, 58.0, 67.0, 72.0, 75.0, 77.0, 81.0, 84.0, 84.0, 85.0, 85.0, 89.0, 89.0, 91.0, 93.0, 93.0, 93.0, 102.0, 106.0, 108.0, 110.0, 110.0, 117.0, 130.0, 138.0, 150.0, 150.0, 160.0, 178.0, 178.0, 200.0, 212.0, 226.0, 243.0, 266.0, 313.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-01-27\"], [\"2020-01-28\"], [\"2020-01-29\"], [\"2020-01-30\"], [\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=Germany\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Germany\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-34.0, -33.0, -32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0], \"xaxis\": \"x\", \"y\": [1.0, 4.0, 4.0, 4.0, 5.0, 8.0, 10.0, 12.0, 12.0, 12.0, 12.0, 13.0, 13.0, 14.0, 14.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 17.0, 27.0, 46.0, 48.0, 79.0, 130.0, 159.0, 196.0, 262.0, 482.0, 670.0, 799.0, 1040.0, 1176.0, 1457.0, 1908.0, 2078.0, 3675.0, 4585.0, 5795.0, 7272.0, 9257.0, 12327.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=Italy\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Italy\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0], \"xaxis\": \"x\", \"y\": [2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 20.0, 62.0, 155.0, 229.0, 322.0, 453.0, 655.0, 888.0, 1128.0, 1694.0, 2036.0, 2502.0, 3089.0, 3858.0, 4636.0, 5883.0, 7375.0, 9172.0, 10149.0, 12462.0, 12462.0, 17660.0, 21157.0, 24747.0, 27980.0, 31506.0, 35713.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=Sweden\", \"line\": {\"color\": \"#ab63fa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Sweden\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-35.0, -34.0, -33.0, -32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0], \"xaxis\": \"x\", \"y\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0, 7.0, 7.0, 12.0, 14.0, 15.0, 21.0, 35.0, 94.0, 101.0, 161.0, 203.0, 248.0, 355.0, 500.0, 599.0, 814.0, 961.0, 1022.0, 1103.0, 1190.0, 1279.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=WA, USA\", \"line\": {\"color\": \"#FFA15A\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], \"xaxis\": \"x\", \"y\": [267.0, 366.0, 442.0, 568.0, 642.0, 769.0, 904.0, 1012.0, 1187.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-01-22\"], [\"2020-01-23\"], [\"2020-01-24\"], [\"2020-01-25\"], [\"2020-01-26\"], [\"2020-01-27\"], [\"2020-01-28\"], [\"2020-01-29\"], [\"2020-01-30\"], [\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=Hubei, China\", \"line\": {\"color\": \"#19d3f3\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Hubei, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0, 40.0, 41.0, 42.0, 43.0, 44.0, 45.0, 46.0, 47.0, 48.0, 49.0, 50.0, 51.0, 52.0, 53.0, 54.0, 55.0, 56.0], \"xaxis\": \"x\", \"y\": [444.0, 444.0, 549.0, 761.0, 1058.0, 1423.0, 3554.0, 3554.0, 4903.0, 5806.0, 7153.0, 11177.0, 13522.0, 16678.0, 19665.0, 22112.0, 24953.0, 27100.0, 29631.0, 31728.0, 33366.0, 33366.0, 48206.0, 54406.0, 56249.0, 58182.0, 59989.0, 61682.0, 62031.0, 62442.0, 62662.0, 64084.0, 64084.0, 64287.0, 64786.0, 65187.0, 65596.0, 65914.0, 66337.0, 66907.0, 67103.0, 67217.0, 67332.0, 67466.0, 67592.0, 67666.0, 67707.0, 67743.0, 67760.0, 67773.0, 67781.0, 67786.0, 67790.0, 67794.0, 67798.0, 67799.0, 67800.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-01-22\"], [\"2020-01-23\"], [\"2020-01-24\"], [\"2020-01-25\"], [\"2020-01-26\"], [\"2020-01-27\"], [\"2020-01-28\"], [\"2020-01-29\"], [\"2020-01-30\"], [\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=South Korea\", \"line\": {\"color\": \"#FF6692\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=South Korea\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0], \"xaxis\": \"x\", \"y\": [1.0, 1.0, 2.0, 2.0, 3.0, 4.0, 4.0, 4.0, 4.0, 11.0, 12.0, 15.0, 15.0, 16.0, 19.0, 23.0, 24.0, 24.0, 25.0, 27.0, 28.0, 28.0, 28.0, 28.0, 28.0, 29.0, 30.0, 31.0, 31.0, 104.0, 204.0, 433.0, 602.0, 833.0, 977.0, 1261.0, 1766.0, 2337.0, 3150.0, 3736.0, 4335.0, 5186.0, 5621.0, 6088.0, 6593.0, 7041.0, 7314.0, 7478.0, 7513.0, 7755.0, 7869.0, 7979.0, 8086.0, 8162.0, 8236.0, 8320.0, 8413.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-01-22\"], [\"2020-01-23\"], [\"2020-01-24\"], [\"2020-01-25\"], [\"2020-01-26\"], [\"2020-01-27\"], [\"2020-01-28\"], [\"2020-01-29\"], [\"2020-01-30\"], [\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=Beijing, China\", \"line\": {\"color\": \"#B6E880\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Beijing, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0, 40.0, 41.0, 42.0, 43.0, 44.0, 45.0, 46.0, 47.0, 48.0, 49.0], \"xaxis\": \"x\", \"y\": [14.0, 22.0, 36.0, 41.0, 68.0, 80.0, 91.0, 111.0, 114.0, 139.0, 168.0, 191.0, 212.0, 228.0, 253.0, 274.0, 297.0, 315.0, 326.0, 337.0, 342.0, 352.0, 366.0, 372.0, 375.0, 380.0, 381.0, 387.0, 393.0, 395.0, 396.0, 399.0, 399.0, 399.0, 400.0, 400.0, 410.0, 410.0, 411.0, 413.0, 414.0, 414.0, 418.0, 418.0, 422.0, 426.0, 428.0, 428.0, 429.0, 435.0, 435.0, 436.0, 437.0, 442.0, 452.0, 456.0, 469.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-01-22\"], [\"2020-01-23\"], [\"2020-01-24\"], [\"2020-01-25\"], [\"2020-01-26\"], [\"2020-01-27\"], [\"2020-01-28\"], [\"2020-01-29\"], [\"2020-01-30\"], [\"2020-01-31\"], [\"2020-02-01\"], [\"2020-02-02\"], [\"2020-02-03\"], [\"2020-02-04\"], [\"2020-02-05\"], [\"2020-02-06\"], [\"2020-02-07\"], [\"2020-02-08\"], [\"2020-02-09\"], [\"2020-02-10\"], [\"2020-02-11\"], [\"2020-02-12\"], [\"2020-02-13\"], [\"2020-02-14\"], [\"2020-02-15\"], [\"2020-02-16\"], [\"2020-02-17\"], [\"2020-02-18\"], [\"2020-02-19\"], [\"2020-02-20\"], [\"2020-02-21\"], [\"2020-02-22\"], [\"2020-02-23\"], [\"2020-02-24\"], [\"2020-02-25\"], [\"2020-02-26\"], [\"2020-02-27\"], [\"2020-02-28\"], [\"2020-02-29\"], [\"2020-03-01\"], [\"2020-03-02\"], [\"2020-03-03\"], [\"2020-03-04\"], [\"2020-03-05\"], [\"2020-03-06\"], [\"2020-03-07\"], [\"2020-03-08\"], [\"2020-03-09\"], [\"2020-03-10\"], [\"2020-03-11\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=King County, WA, USA\", \"line\": {\"color\": \"#FF97FF\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=King County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-48.0, -47.0, -46.0, -45.0, -44.0, -43.0, -42.0, -41.0, -40.0, -39.0, -38.0, -37.0, -36.0, -35.0, -34.0, -33.0, -32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], \"xaxis\": \"x\", \"y\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 6.0, 9.0, 14.0, 21.0, 31.0, 51.0, 58.0, 71.0, 83.0, 83.0, 116.0, 190.0, 328.0, 387.0, 420.0, 488.0, 569.0, 562.0], \"yaxis\": \"y\"}, {\"customdata\": [[\"2020-03-12\"], [\"2020-03-13\"], [\"2020-03-14\"], [\"2020-03-15\"], [\"2020-03-16\"], [\"2020-03-17\"], [\"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>days since 100 cases=%{x}<br>cases=%{y}<br>Date=%{customdata[0]}\", \"legendgroup\": \"location=UK\", \"line\": {\"color\": \"#FECB52\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=UK\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0], \"xaxis\": \"x\", \"y\": [456.0, 798.0, 1140.0, 1140.0, 1543.0, 1950.0, 2626.0], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Cases over time<br><i>log Y axis. X axis shifted to match 1st day each location exceeded 100 cases</i>\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"days since 100 cases\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"cases\"}, \"type\": \"log\"}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('0a70c306-3d2b-43f3-af08-9c7c52a70c91');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "cak4aipMvNlj",
"colab_type": "code",
"outputId": "9d42724f-e6fe-4396-a4fe-3f00c3608f19",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
}
},
"source": [
"display(\n",
" px.line(\n",
" data_for_locations_of_interest[~pd.np.isnan(data_for_locations_of_interest['cases per 100k capita'])],\n",
" title='Cases per capita over time<br><i>log Y axis. X axis shifted to match 1st day each location exceeded 1 case / 100k capita</i>',\n",
" x='days since 1 case/100k people',\n",
" y='cases per 100k capita',\n",
" hover_data=['cases', 'Date'],\n",
" log_y=True,\n",
" color='location',\n",
" )\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"f197a9a2-c43b-4434-a967-703d16115a2b\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"f197a9a2-c43b-4434-a967-703d16115a2b\")) {\n",
" Plotly.newPlot(\n",
" 'f197a9a2-c43b-4434-a967-703d16115a2b',\n",
" [{\"customdata\": [[1.0, \"2020-01-23\"], [3.0, \"2020-01-24\"], [3.0, \"2020-01-25\"], [4.0, \"2020-01-26\"], [5.0, \"2020-01-27\"], [7.0, \"2020-01-28\"], [7.0, \"2020-01-29\"], [10.0, \"2020-01-30\"], [13.0, \"2020-01-31\"], [16.0, \"2020-02-01\"], [18.0, \"2020-02-02\"], [18.0, \"2020-02-03\"], [24.0, \"2020-02-04\"], [28.0, \"2020-02-05\"], [28.0, \"2020-02-06\"], [30.0, \"2020-02-07\"], [33.0, \"2020-02-08\"], [40.0, \"2020-02-09\"], [45.0, \"2020-02-10\"], [47.0, \"2020-02-11\"], [50.0, \"2020-02-12\"], [58.0, \"2020-02-13\"], [67.0, \"2020-02-14\"], [72.0, \"2020-02-15\"], [75.0, \"2020-02-16\"], [77.0, \"2020-02-17\"], [81.0, \"2020-02-18\"], [84.0, \"2020-02-19\"], [84.0, \"2020-02-20\"], [85.0, \"2020-02-21\"], [85.0, \"2020-02-22\"], [89.0, \"2020-02-23\"], [89.0, \"2020-02-24\"], [91.0, \"2020-02-25\"], [93.0, \"2020-02-26\"], [93.0, \"2020-02-27\"], [93.0, \"2020-02-28\"], [102.0, \"2020-02-29\"], [106.0, \"2020-03-01\"], [108.0, \"2020-03-02\"], [110.0, \"2020-03-03\"], [110.0, \"2020-03-04\"], [117.0, \"2020-03-05\"], [130.0, \"2020-03-06\"], [138.0, \"2020-03-07\"], [150.0, \"2020-03-08\"], [150.0, \"2020-03-09\"], [160.0, \"2020-03-10\"], [178.0, \"2020-03-11\"], [178.0, \"2020-03-12\"], [200.0, \"2020-03-13\"], [212.0, \"2020-03-14\"], [226.0, \"2020-03-15\"], [243.0, \"2020-03-16\"], [266.0, \"2020-03-17\"], [313.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Singapore\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Singapore\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0, 31.0, 32.0, 33.0], \"xaxis\": \"x\", \"y\": [0.016981025062974133, 0.050943075188922396, 0.050943075188922396, 0.06792410025189653, 0.08490512531487066, 0.11886717544081891, 0.11886717544081891, 0.1698102506297413, 0.22075332581866372, 0.27169640100758613, 0.30565845113353435, 0.30565845113353435, 0.40754460151137917, 0.47546870176327566, 0.47546870176327566, 0.5094307518892239, 0.5603738270781463, 0.6792410025189652, 0.764146127833836, 0.7981081779597843, 0.8490512531487066, 0.9848994536524995, 1.137728679219267, 1.2226338045341374, 1.2735768797230598, 1.307538929849008, 1.3754630301009048, 1.4264061052898271, 1.4264061052898271, 1.4433871303528012, 1.4433871303528012, 1.5113112306046976, 1.5113112306046976, 1.5452732807306462, 1.5792353308565943, 1.5792353308565943, 1.5792353308565943, 1.7320645564233614, 1.7999886566752579, 1.8339507068012062, 1.8679127569271545, 1.8679127569271545, 1.9867799323679733, 2.207533258186637, 2.34338145869043, 2.5471537594461195, 2.5471537594461195, 2.716964010075861, 3.0226224612093953, 3.0226224612093953, 3.396205012594826, 3.5999773133505157, 3.837711664232154, 4.126389090302714, 4.516952666751119, 5.315060844710903], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-27\"], [4.0, \"2020-01-28\"], [4.0, \"2020-01-29\"], [4.0, \"2020-01-30\"], [5.0, \"2020-01-31\"], [8.0, \"2020-02-01\"], [10.0, \"2020-02-02\"], [12.0, \"2020-02-03\"], [12.0, \"2020-02-04\"], [12.0, \"2020-02-05\"], [12.0, \"2020-02-06\"], [13.0, \"2020-02-07\"], [13.0, \"2020-02-08\"], [14.0, \"2020-02-09\"], [14.0, \"2020-02-10\"], [16.0, \"2020-02-11\"], [16.0, \"2020-02-12\"], [16.0, \"2020-02-13\"], [16.0, \"2020-02-14\"], [16.0, \"2020-02-15\"], [16.0, \"2020-02-16\"], [16.0, \"2020-02-17\"], [16.0, \"2020-02-18\"], [16.0, \"2020-02-19\"], [16.0, \"2020-02-20\"], [16.0, \"2020-02-21\"], [16.0, \"2020-02-22\"], [16.0, \"2020-02-23\"], [16.0, \"2020-02-24\"], [17.0, \"2020-02-25\"], [27.0, \"2020-02-26\"], [46.0, \"2020-02-27\"], [48.0, \"2020-02-28\"], [79.0, \"2020-02-29\"], [130.0, \"2020-03-01\"], [159.0, \"2020-03-02\"], [196.0, \"2020-03-03\"], [262.0, \"2020-03-04\"], [482.0, \"2020-03-05\"], [670.0, \"2020-03-06\"], [799.0, \"2020-03-07\"], [1040.0, \"2020-03-08\"], [1176.0, \"2020-03-09\"], [1457.0, \"2020-03-10\"], [1908.0, \"2020-03-11\"], [2078.0, \"2020-03-12\"], [3675.0, \"2020-03-13\"], [4585.0, \"2020-03-14\"], [5795.0, \"2020-03-15\"], [7272.0, \"2020-03-16\"], [9257.0, \"2020-03-17\"], [12327.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Germany\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Germany\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-41.0, -40.0, -39.0, -38.0, -37.0, -36.0, -35.0, -34.0, -33.0, -32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0], \"xaxis\": \"x\", \"y\": [0.0012407868936474527, 0.004963147574589811, 0.004963147574589811, 0.004963147574589811, 0.0062039344682372636, 0.009926295149179622, 0.012407868936474527, 0.014889442723769433, 0.014889442723769433, 0.014889442723769433, 0.014889442723769433, 0.016130229617416884, 0.016130229617416884, 0.01737101651106434, 0.01737101651106434, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.019852590298359243, 0.0210933771920067, 0.033501246128481224, 0.057076197107782826, 0.05955777089507773, 0.09802216459814876, 0.16130229617416886, 0.197285116089945, 0.24319423115490077, 0.3250861661356326, 0.5980592827380722, 0.8313272187437935, 0.9913887280243148, 1.2904183693933509, 1.4591653869294046, 1.8078265040443386, 2.36742139307934, 2.5783551649994068, 4.559891834154389, 5.689007907373571, 7.190360048686989, 9.023002290604277, 11.48596427449447, 15.295180037992152], \"yaxis\": \"y\"}, {\"customdata\": [[2.0, \"2020-01-31\"], [2.0, \"2020-02-01\"], [2.0, \"2020-02-02\"], [2.0, \"2020-02-03\"], [2.0, \"2020-02-04\"], [2.0, \"2020-02-05\"], [2.0, \"2020-02-06\"], [3.0, \"2020-02-07\"], [3.0, \"2020-02-08\"], [3.0, \"2020-02-09\"], [3.0, \"2020-02-10\"], [3.0, \"2020-02-11\"], [3.0, \"2020-02-12\"], [3.0, \"2020-02-13\"], [3.0, \"2020-02-14\"], [3.0, \"2020-02-15\"], [3.0, \"2020-02-16\"], [3.0, \"2020-02-17\"], [3.0, \"2020-02-18\"], [3.0, \"2020-02-19\"], [3.0, \"2020-02-20\"], [20.0, \"2020-02-21\"], [62.0, \"2020-02-22\"], [155.0, \"2020-02-23\"], [229.0, \"2020-02-24\"], [322.0, \"2020-02-25\"], [453.0, \"2020-02-26\"], [655.0, \"2020-02-27\"], [888.0, \"2020-02-28\"], [1128.0, \"2020-02-29\"], [1694.0, \"2020-03-01\"], [2036.0, \"2020-03-02\"], [2502.0, \"2020-03-03\"], [3089.0, \"2020-03-04\"], [3858.0, \"2020-03-05\"], [4636.0, \"2020-03-06\"], [5883.0, \"2020-03-07\"], [7375.0, \"2020-03-08\"], [9172.0, \"2020-03-09\"], [10149.0, \"2020-03-10\"], [12462.0, \"2020-03-11\"], [12462.0, \"2020-03-12\"], [17660.0, \"2020-03-13\"], [21157.0, \"2020-03-14\"], [24747.0, \"2020-03-15\"], [27980.0, \"2020-03-16\"], [31506.0, \"2020-03-17\"], [35713.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Italy\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Italy\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0], \"xaxis\": \"x\", \"y\": [0.003218652632740373, 0.003218652632740373, 0.003218652632740373, 0.003218652632740373, 0.003218652632740373, 0.003218652632740373, 0.003218652632740373, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.0048279789491105585, 0.03218652632740373, 0.09977823161495156, 0.24944557903737888, 0.3685357264487727, 0.5182030738712, 0.7290248213156945, 1.0541087372224722, 1.4290817689367254, 1.8153200848655702, 2.726198779931096, 3.2765883801296996, 4.026534443558206, 4.971208991267506, 6.208780928556179, 7.460836802692184, 9.467666719205807, 11.868781583230124, 14.760740973747351, 16.333052784841023, 20.055424554605263, 20.055424554605263, 28.42070274709749, 34.04851687544404, 39.825998351213, 45.028950332037816, 50.703434923559094, 57.47387073652847], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-31\"], [1.0, \"2020-02-01\"], [1.0, \"2020-02-02\"], [1.0, \"2020-02-03\"], [1.0, \"2020-02-04\"], [1.0, \"2020-02-05\"], [1.0, \"2020-02-06\"], [1.0, \"2020-02-07\"], [1.0, \"2020-02-08\"], [1.0, \"2020-02-09\"], [1.0, \"2020-02-10\"], [1.0, \"2020-02-11\"], [1.0, \"2020-02-12\"], [1.0, \"2020-02-13\"], [1.0, \"2020-02-14\"], [1.0, \"2020-02-15\"], [1.0, \"2020-02-16\"], [1.0, \"2020-02-17\"], [1.0, \"2020-02-18\"], [1.0, \"2020-02-19\"], [1.0, \"2020-02-20\"], [1.0, \"2020-02-21\"], [1.0, \"2020-02-22\"], [1.0, \"2020-02-23\"], [1.0, \"2020-02-24\"], [1.0, \"2020-02-25\"], [2.0, \"2020-02-26\"], [7.0, \"2020-02-27\"], [7.0, \"2020-02-28\"], [12.0, \"2020-02-29\"], [14.0, \"2020-03-01\"], [15.0, \"2020-03-02\"], [21.0, \"2020-03-03\"], [35.0, \"2020-03-04\"], [94.0, \"2020-03-05\"], [101.0, \"2020-03-06\"], [161.0, \"2020-03-07\"], [203.0, \"2020-03-08\"], [248.0, \"2020-03-09\"], [355.0, \"2020-03-10\"], [500.0, \"2020-03-11\"], [599.0, \"2020-03-12\"], [814.0, \"2020-03-13\"], [961.0, \"2020-03-14\"], [1022.0, \"2020-03-15\"], [1103.0, \"2020-03-16\"], [1190.0, \"2020-03-17\"], [1279.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Sweden\", \"line\": {\"color\": \"#ab63fa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Sweden\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-35.0, -34.0, -33.0, -32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0], \"xaxis\": \"x\", \"y\": [0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.010039669747071604, 0.020079339494143207, 0.07027768822950123, 0.07027768822950123, 0.12047603696485924, 0.14055537645900246, 0.15059504620607406, 0.21083306468850369, 0.3513884411475061, 0.9437289562247307, 1.014006644454232, 1.6163868292785282, 2.0380529586555354, 2.4898380972737577, 3.5640827602104195, 5.019834873535801, 6.013762178495891, 8.172291174116285, 9.64812262693581, 10.260542481507178, 11.073755731019979, 11.947206999015208, 12.84073760650458], \"yaxis\": \"y\"}, {\"customdata\": [[267.0, \"2020-03-10\"], [366.0, \"2020-03-11\"], [442.0, \"2020-03-12\"], [568.0, \"2020-03-13\"], [642.0, \"2020-03-14\"], [769.0, \"2020-03-15\"], [904.0, \"2020-03-16\"], [1012.0, \"2020-03-17\"], [1187.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=WA, USA\", \"line\": {\"color\": \"#FFA15A\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], \"xaxis\": \"x\", \"y\": [3.5062869563630112, 4.806370884003229, 5.804415111282588, 7.459067382824684, 8.430847288333533, 10.098631720760883, 11.87147344027027, 13.289746815877782, 15.587874970797357], \"yaxis\": \"y\"}, {\"customdata\": [[444.0, \"2020-01-22\"], [444.0, \"2020-01-23\"], [549.0, \"2020-01-24\"], [761.0, \"2020-01-25\"], [1058.0, \"2020-01-26\"], [1423.0, \"2020-01-27\"], [3554.0, \"2020-01-28\"], [3554.0, \"2020-01-29\"], [4903.0, \"2020-01-30\"], [5806.0, \"2020-01-31\"], [7153.0, \"2020-02-01\"], [11177.0, \"2020-02-02\"], [13522.0, \"2020-02-03\"], [16678.0, \"2020-02-04\"], [19665.0, \"2020-02-05\"], [22112.0, \"2020-02-06\"], [24953.0, \"2020-02-07\"], [27100.0, \"2020-02-08\"], [29631.0, \"2020-02-09\"], [31728.0, \"2020-02-10\"], [33366.0, \"2020-02-11\"], [33366.0, \"2020-02-12\"], [48206.0, \"2020-02-13\"], [54406.0, \"2020-02-14\"], [56249.0, \"2020-02-15\"], [58182.0, \"2020-02-16\"], [59989.0, \"2020-02-17\"], [61682.0, \"2020-02-18\"], [62031.0, \"2020-02-19\"], [62442.0, \"2020-02-20\"], [62662.0, \"2020-02-21\"], [64084.0, \"2020-02-22\"], [64084.0, \"2020-02-23\"], [64287.0, \"2020-02-24\"], [64786.0, \"2020-02-25\"], [65187.0, \"2020-02-26\"], [65596.0, \"2020-02-27\"], [65914.0, \"2020-02-28\"], [66337.0, \"2020-02-29\"], [66907.0, \"2020-03-01\"], [67103.0, \"2020-03-02\"], [67217.0, \"2020-03-03\"], [67332.0, \"2020-03-04\"], [67466.0, \"2020-03-05\"], [67592.0, \"2020-03-06\"], [67666.0, \"2020-03-07\"], [67707.0, \"2020-03-08\"], [67743.0, \"2020-03-09\"], [67760.0, \"2020-03-10\"], [67773.0, \"2020-03-11\"], [67781.0, \"2020-03-12\"], [67786.0, \"2020-03-13\"], [67790.0, \"2020-03-14\"], [67794.0, \"2020-03-15\"], [67798.0, \"2020-03-16\"], [67799.0, \"2020-03-17\"], [67800.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Hubei, China\", \"line\": {\"color\": \"#19d3f3\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Hubei, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0, 40.0, 41.0, 42.0, 43.0, 44.0, 45.0, 46.0, 47.0, 48.0, 49.0, 50.0, 51.0, 52.0, 53.0], \"xaxis\": \"x\", \"y\": [0.7503802602670272, 0.7503802602670272, 0.9278350515463917, 1.286124725367585, 1.788068277843502, 2.4049349332431977, 6.006422173398682, 6.006422173398682, 8.286293729930708, 9.812404934933243, 12.088896400202804, 18.889640020280545, 22.85279702551969, 28.18658103768802, 33.23474733817813, 37.370288997802945, 42.171708636133175, 45.800236606388374, 50.07774209903667, 53.62176778773026, 56.39006253168836, 56.39006253168836, 81.47033969917187, 91.94862261281054, 95.0633767111712, 98.33023491634275, 101.38414737197905, 104.24539462565488, 104.83522055095489, 105.52982930539123, 105.90163934426229, 108.30488423187427, 108.30488423187427, 108.64796349501437, 109.49129626499916, 110.16900456312321, 110.8602332262971, 111.3976677370289, 112.11255703904004, 113.07588304884231, 113.4071319925638, 113.59979719452426, 113.79415244211594, 114.02061855670102, 114.23356430623626, 114.35862768294743, 114.42791955382796, 114.4887611965523, 114.51749197228325, 114.53946256548926, 114.55298293053913, 114.56143315869528, 114.56819334122021, 114.57495352374514, 114.58171370627008, 114.5834037519013, 114.58509379753254], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-22\"], [1.0, \"2020-01-23\"], [2.0, \"2020-01-24\"], [2.0, \"2020-01-25\"], [3.0, \"2020-01-26\"], [4.0, \"2020-01-27\"], [4.0, \"2020-01-28\"], [4.0, \"2020-01-29\"], [4.0, \"2020-01-30\"], [11.0, \"2020-01-31\"], [12.0, \"2020-02-01\"], [15.0, \"2020-02-02\"], [15.0, \"2020-02-03\"], [16.0, \"2020-02-04\"], [19.0, \"2020-02-05\"], [23.0, \"2020-02-06\"], [24.0, \"2020-02-07\"], [24.0, \"2020-02-08\"], [25.0, \"2020-02-09\"], [27.0, \"2020-02-10\"], [28.0, \"2020-02-11\"], [28.0, \"2020-02-12\"], [28.0, \"2020-02-13\"], [28.0, \"2020-02-14\"], [28.0, \"2020-02-15\"], [29.0, \"2020-02-16\"], [30.0, \"2020-02-17\"], [31.0, \"2020-02-18\"], [31.0, \"2020-02-19\"], [104.0, \"2020-02-20\"], [204.0, \"2020-02-21\"], [433.0, \"2020-02-22\"], [602.0, \"2020-02-23\"], [833.0, \"2020-02-24\"], [977.0, \"2020-02-25\"], [1261.0, \"2020-02-26\"], [1766.0, \"2020-02-27\"], [2337.0, \"2020-02-28\"], [3150.0, \"2020-02-29\"], [3736.0, \"2020-03-01\"], [4335.0, \"2020-03-02\"], [5186.0, \"2020-03-03\"], [5621.0, \"2020-03-04\"], [6088.0, \"2020-03-05\"], [6593.0, \"2020-03-06\"], [7041.0, \"2020-03-07\"], [7314.0, \"2020-03-08\"], [7478.0, \"2020-03-09\"], [7513.0, \"2020-03-10\"], [7755.0, \"2020-03-11\"], [7869.0, \"2020-03-12\"], [7979.0, \"2020-03-13\"], [8086.0, \"2020-03-14\"], [8162.0, \"2020-03-15\"], [8236.0, \"2020-03-16\"], [8320.0, \"2020-03-17\"], [8413.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=South Korea\", \"line\": {\"color\": \"#FF6692\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=South Korea\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0], \"xaxis\": \"x\", \"y\": [0.0019538386471980715, 0.0019538386471980715, 0.003907677294396143, 0.003907677294396143, 0.005861515941594214, 0.007815354588792286, 0.007815354588792286, 0.007815354588792286, 0.007815354588792286, 0.021492225119178785, 0.023446063766376857, 0.02930757970797107, 0.02930757970797107, 0.03126141835516914, 0.03712293429676336, 0.044938288885555636, 0.046892127532753715, 0.046892127532753715, 0.04884596617995179, 0.05275364347434792, 0.05470748212154599, 0.05470748212154599, 0.05470748212154599, 0.05470748212154599, 0.05470748212154599, 0.05666132076874407, 0.05861515941594214, 0.060568998063140214, 0.060568998063140214, 0.20319921930859944, 0.39858308402840653, 0.8460121342367649, 1.1762108656132388, 1.6275475931159933, 1.9089003583125157, 2.463790534116768, 3.450479050951794, 4.566120918501893, 6.154591738673924, 7.299541185931994, 8.46989053560364, 10.132607224369199, 10.98252703590036, 11.894969684141858, 12.881658200976885, 13.756977914921622, 14.290375865606695, 14.610805403747179, 14.679189756399111, 15.152018709021045, 15.374756314801623, 15.589678565993413, 15.798739301243605, 15.947231038430658, 16.091815098323316, 16.255937544687953, 16.43764453887737], \"yaxis\": \"y\"}, {\"customdata\": [[14.0, \"2020-01-22\"], [22.0, \"2020-01-23\"], [36.0, \"2020-01-24\"], [41.0, \"2020-01-25\"], [68.0, \"2020-01-26\"], [80.0, \"2020-01-27\"], [91.0, \"2020-01-28\"], [111.0, \"2020-01-29\"], [114.0, \"2020-01-30\"], [139.0, \"2020-01-31\"], [168.0, \"2020-02-01\"], [191.0, \"2020-02-02\"], [212.0, \"2020-02-03\"], [228.0, \"2020-02-04\"], [253.0, \"2020-02-05\"], [274.0, \"2020-02-06\"], [297.0, \"2020-02-07\"], [315.0, \"2020-02-08\"], [326.0, \"2020-02-09\"], [337.0, \"2020-02-10\"], [342.0, \"2020-02-11\"], [352.0, \"2020-02-12\"], [366.0, \"2020-02-13\"], [372.0, \"2020-02-14\"], [375.0, \"2020-02-15\"], [380.0, \"2020-02-16\"], [381.0, \"2020-02-17\"], [387.0, \"2020-02-18\"], [393.0, \"2020-02-19\"], [395.0, \"2020-02-20\"], [396.0, \"2020-02-21\"], [399.0, \"2020-02-22\"], [399.0, \"2020-02-23\"], [399.0, \"2020-02-24\"], [400.0, \"2020-02-25\"], [400.0, \"2020-02-26\"], [410.0, \"2020-02-27\"], [410.0, \"2020-02-28\"], [411.0, \"2020-02-29\"], [413.0, \"2020-03-01\"], [414.0, \"2020-03-02\"], [414.0, \"2020-03-03\"], [418.0, \"2020-03-04\"], [418.0, \"2020-03-05\"], [422.0, \"2020-03-06\"], [426.0, \"2020-03-07\"], [428.0, \"2020-03-08\"], [428.0, \"2020-03-09\"], [429.0, \"2020-03-10\"], [435.0, \"2020-03-11\"], [435.0, \"2020-03-12\"], [436.0, \"2020-03-13\"], [437.0, \"2020-03-14\"], [442.0, \"2020-03-15\"], [452.0, \"2020-03-16\"], [456.0, \"2020-03-17\"], [469.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Beijing, China\", \"line\": {\"color\": \"#B6E880\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Beijing, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0, 40.0, 41.0, 42.0, 43.0], \"xaxis\": \"x\", \"y\": [0.06499535747446611, 0.10213556174558959, 0.1671309192200557, 0.1903435468895079, 0.31569173630454966, 0.37140204271123495, 0.42246982358402974, 0.5153203342618384, 0.5292479108635098, 0.6453110492107706, 0.7799442896935932, 0.8867223769730733, 0.9842154131847725, 1.0584958217270195, 1.1745589600742805, 1.2720519962859795, 1.3788300835654597, 1.4623955431754876, 1.5134633240482822, 1.5645311049210773, 1.5877437325905295, 1.6341689879294334, 1.6991643454038996, 1.7270194986072422, 1.7409470752089138, 1.764159702878366, 1.7688022284122562, 1.7966573816155988, 1.8245125348189415, 1.8337975858867226, 1.8384401114206128, 1.852367688022284, 1.852367688022284, 1.852367688022284, 1.8570102135561748, 1.8570102135561748, 1.9034354688950788, 1.9034354688950788, 1.9080779944289694, 1.9173630454967503, 1.9220055710306405, 1.9220055710306405, 1.9405756731662025, 1.9405756731662025, 1.9591457753017643, 1.9777158774373258, 1.987000928505107, 1.987000928505107, 1.9916434540389971, 2.01949860724234, 2.01949860724234, 2.02414113277623, 2.0287836583101204, 2.051996285979573, 2.0984215413184772, 2.116991643454039, 2.177344475394615], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-03-07\"], [4.0, \"2020-03-08\"], [4.0, \"2020-03-09\"], [4.0, \"2020-03-10\"], [14.0, \"2020-03-11\"], [19.0, \"2020-03-13\"], [26.0, \"2020-03-14\"], [29.0, \"2020-03-15\"], [38.0, \"2020-03-16\"], [45.0, \"2020-03-17\"], [56.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Pierce County, WA, USA<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Pierce County, WA, USA\", \"line\": {\"color\": \"#FF97FF\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Pierce County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-4.0, -3.0, -2.0, -1.0, 0.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0], \"xaxis\": \"x\", \"y\": [0.11219579512599026, 0.44878318050396104, 0.44878318050396104, 0.44878318050396104, 1.5707411317638638, 2.1317201073938152, 2.917090673275747, 3.2536780586537177, 4.2634402147876305, 5.048810780669562, 6.282964527055455], \"yaxis\": \"y\"}, {\"customdata\": [[2.0, \"2020-03-05\"], [2.0, \"2020-03-06\"], [9.0, \"2020-03-07\"], [9.0, \"2020-03-08\"], [9.0, \"2020-03-09\"], [14.0, \"2020-03-10\"], [14.0, \"2020-03-11\"], [21.0, \"2020-03-13\"], [28.0, \"2020-03-14\"], [37.0, \"2020-03-15\"], [40.0, \"2020-03-16\"], [43.0, \"2020-03-17\"], [51.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=San Francisco County, CA, USA<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=San Francisco County, CA, USA\", \"line\": {\"color\": \"#FECB52\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=San Francisco County, CA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0], \"xaxis\": \"x\", \"y\": [0.22642235694352458, 0.22642235694352458, 1.0189006062458608, 1.0189006062458608, 1.0189006062458608, 1.5849564986046725, 1.5849564986046725, 2.3774347479070084, 3.169912997209345, 4.1888136034552055, 4.528447138870492, 4.868080674285779, 5.773770102059878], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-22\"], [1.0, \"2020-01-23\"], [1.0, \"2020-01-24\"], [1.0, \"2020-01-25\"], [1.0, \"2020-01-26\"], [1.0, \"2020-01-27\"], [1.0, \"2020-01-28\"], [1.0, \"2020-01-29\"], [1.0, \"2020-01-30\"], [1.0, \"2020-01-31\"], [1.0, \"2020-02-01\"], [1.0, \"2020-02-02\"], [1.0, \"2020-02-03\"], [1.0, \"2020-02-04\"], [1.0, \"2020-02-05\"], [1.0, \"2020-02-06\"], [1.0, \"2020-02-07\"], [1.0, \"2020-02-08\"], [1.0, \"2020-02-09\"], [1.0, \"2020-02-10\"], [1.0, \"2020-02-11\"], [1.0, \"2020-02-12\"], [1.0, \"2020-02-13\"], [1.0, \"2020-02-14\"], [1.0, \"2020-02-15\"], [1.0, \"2020-02-16\"], [1.0, \"2020-02-17\"], [1.0, \"2020-02-18\"], [1.0, \"2020-02-19\"], [1.0, \"2020-02-20\"], [1.0, \"2020-02-21\"], [1.0, \"2020-02-22\"], [1.0, \"2020-02-23\"], [1.0, \"2020-02-24\"], [1.0, \"2020-02-25\"], [1.0, \"2020-02-26\"], [1.0, \"2020-02-27\"], [1.0, \"2020-02-28\"], [6.0, \"2020-02-29\"], [9.0, \"2020-03-01\"], [14.0, \"2020-03-02\"], [21.0, \"2020-03-03\"], [31.0, \"2020-03-04\"], [51.0, \"2020-03-05\"], [58.0, \"2020-03-06\"], [71.0, \"2020-03-07\"], [83.0, \"2020-03-08\"], [83.0, \"2020-03-09\"], [116.0, \"2020-03-10\"], [190.0, \"2020-03-11\"], [328.0, \"2020-03-13\"], [387.0, \"2020-03-14\"], [420.0, \"2020-03-15\"], [488.0, \"2020-03-16\"], [569.0, \"2020-03-17\"], [562.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=King County, WA, USA\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=King County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-42.0, -41.0, -40.0, -39.0, -38.0, -37.0, -36.0, -35.0, -34.0, -33.0, -32.0, -31.0, -30.0, -29.0, -28.0, -27.0, -26.0, -25.0, -24.0, -23.0, -22.0, -21.0, -20.0, -19.0, -18.0, -17.0, -16.0, -15.0, -14.0, -13.0, -12.0, -11.0, -10.0, -9.0, -8.0, -7.0, -6.0, -5.0, -4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0], \"xaxis\": \"x\", \"y\": [0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.04477953467794334, 0.2686772080676601, 0.4030158121014901, 0.6269134854912068, 0.9403702282368103, 1.3881655750162438, 2.2837562685751105, 2.597213011320714, 3.179346962133978, 3.7167013782692977, 3.7167013782692977, 5.194426022641428, 8.508111588809236, 14.687687374365419, 17.329679920364075, 18.807404564736206, 21.852412922836354, 25.479555231749767, 25.16609848900416], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-03-11\"], [1.0, \"2020-03-13\"], [2.0, \"2020-03-14\"], [3.0, \"2020-03-15\"], [3.0, \"2020-03-16\"], [6.0, \"2020-03-17\"], [7.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Whatcom County, WA, USA<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Whatcom County, WA, USA\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Whatcom County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-4.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0], \"xaxis\": \"x\", \"y\": [0.44309546491791657, 0.44309546491791657, 0.8861909298358331, 1.3292863947537497, 1.3292863947537497, 2.6585727895074993, 3.101668254425416], \"yaxis\": \"y\"}, {\"customdata\": [[456.0, \"2020-03-12\"], [798.0, \"2020-03-13\"], [1140.0, \"2020-03-14\"], [1140.0, \"2020-03-15\"], [1543.0, \"2020-03-16\"], [1950.0, \"2020-03-17\"], [2626.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>days since 1 case/100k people=%{x}<br>cases per 100k capita=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=UK\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=UK\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [-1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0], \"xaxis\": \"x\", \"y\": [0.7040355999924162, 1.2320622999867283, 1.7600889999810405, 1.7600889999810405, 2.382295900851531, 3.010678552599148, 4.05438045083352], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Cases per capita over time<br><i>log Y axis. X axis shifted to match 1st day each location exceeded 1 case / 100k capita</i>\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"days since 1 case/100k people\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"cases per 100k capita\"}, \"type\": \"log\"}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('f197a9a2-c43b-4434-a967-703d16115a2b');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "PNt0hdW4hn9N",
"colab_type": "text"
},
"source": [
"# New active cases\n",
"\n",
"This might be a nice clear way of looking at where the disease spread is being effectively prevented. Are we \"bending the curve\"?"
]
},
{
"cell_type": "code",
"metadata": {
"id": "T6zsSmO0xt7H",
"colab_type": "code",
"outputId": "7cf16b9c-7cc5-4fc2-f5bb-f2bf34814b60",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
}
},
"source": [
"num_days = 1\n",
"y_column = f'{num_days}d new active'\n",
"display(\n",
" px.line(\n",
" data_for_locations_of_interest,\n",
" # data_for_locations_of_interest[~pd.np.isnan(data_for_locations_of_interest['days since 100 cases'])],\n",
" title=f'{num_days}d change in # of active cases',\n",
" # x='days since 100 cases',\n",
" x='date',\n",
" y=y_column,\n",
" hover_data=['cases', 'Date'],\n",
" # log_y=True,\n",
" color='location',\n",
" )\n",
")"
],
"execution_count": 0,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div>\n",
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n",
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n",
" <div id=\"83c5119b-a5a2-43ec-aa6f-6b40f485b40c\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" \n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"83c5119b-a5a2-43ec-aa6f-6b40f485b40c\")) {\n",
" Plotly.newPlot(\n",
" '83c5119b-a5a2-43ec-aa6f-6b40f485b40c',\n",
" [{\"customdata\": [[1.0, \"2020-01-23\"], [3.0, \"2020-01-24\"], [3.0, \"2020-01-25\"], [4.0, \"2020-01-26\"], [5.0, \"2020-01-27\"], [7.0, \"2020-01-28\"], [7.0, \"2020-01-29\"], [10.0, \"2020-01-30\"], [13.0, \"2020-01-31\"], [16.0, \"2020-02-01\"], [18.0, \"2020-02-02\"], [18.0, \"2020-02-03\"], [24.0, \"2020-02-04\"], [28.0, \"2020-02-05\"], [28.0, \"2020-02-06\"], [30.0, \"2020-02-07\"], [33.0, \"2020-02-08\"], [40.0, \"2020-02-09\"], [45.0, \"2020-02-10\"], [47.0, \"2020-02-11\"], [50.0, \"2020-02-12\"], [58.0, \"2020-02-13\"], [67.0, \"2020-02-14\"], [72.0, \"2020-02-15\"], [75.0, \"2020-02-16\"], [77.0, \"2020-02-17\"], [81.0, \"2020-02-18\"], [84.0, \"2020-02-19\"], [84.0, \"2020-02-20\"], [85.0, \"2020-02-21\"], [85.0, \"2020-02-22\"], [89.0, \"2020-02-23\"], [89.0, \"2020-02-24\"], [91.0, \"2020-02-25\"], [93.0, \"2020-02-26\"], [93.0, \"2020-02-27\"], [93.0, \"2020-02-28\"], [102.0, \"2020-02-29\"], [106.0, \"2020-03-01\"], [108.0, \"2020-03-02\"], [110.0, \"2020-03-03\"], [110.0, \"2020-03-04\"], [117.0, \"2020-03-05\"], [130.0, \"2020-03-06\"], [138.0, \"2020-03-07\"], [150.0, \"2020-03-08\"], [150.0, \"2020-03-09\"], [160.0, \"2020-03-10\"], [178.0, \"2020-03-11\"], [178.0, \"2020-03-12\"], [200.0, \"2020-03-13\"], [212.0, \"2020-03-14\"], [226.0, \"2020-03-15\"], [243.0, \"2020-03-16\"], [266.0, \"2020-03-17\"], [313.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Singapore<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Singapore\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Singapore\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 2.0, 0.0, 1.0, 1.0, 2.0, 0.0, 3.0, 3.0, 3.0, 2.0, 0.0, 6.0, 4.0, 0.0, 2.0, 1.0, 7.0, 5.0, -5.0, -3.0, 8.0, 7.0, 4.0, 3.0, -4.0, -1.0, -2.0, 0.0, -2.0, 0.0, -10.0, 0.0, 0.0, -7.0, 0.0, 0.0, -1.0, 4.0, -4.0, 2.0, 0.0, 7.0, 13.0, 8.0, 12.0, 0.0, 10.0, 0.0, 0.0, 21.0, 4.0, 14.0, 13.0, 18.0, 47.0], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-27\"], [4.0, \"2020-01-28\"], [4.0, \"2020-01-29\"], [4.0, \"2020-01-30\"], [5.0, \"2020-01-31\"], [8.0, \"2020-02-01\"], [10.0, \"2020-02-02\"], [12.0, \"2020-02-03\"], [12.0, \"2020-02-04\"], [12.0, \"2020-02-05\"], [12.0, \"2020-02-06\"], [13.0, \"2020-02-07\"], [13.0, \"2020-02-08\"], [14.0, \"2020-02-09\"], [14.0, \"2020-02-10\"], [16.0, \"2020-02-11\"], [16.0, \"2020-02-12\"], [16.0, \"2020-02-13\"], [16.0, \"2020-02-14\"], [16.0, \"2020-02-15\"], [16.0, \"2020-02-16\"], [16.0, \"2020-02-17\"], [16.0, \"2020-02-18\"], [16.0, \"2020-02-19\"], [16.0, \"2020-02-20\"], [16.0, \"2020-02-21\"], [16.0, \"2020-02-22\"], [16.0, \"2020-02-23\"], [16.0, \"2020-02-24\"], [17.0, \"2020-02-25\"], [27.0, \"2020-02-26\"], [46.0, \"2020-02-27\"], [48.0, \"2020-02-28\"], [79.0, \"2020-02-29\"], [130.0, \"2020-03-01\"], [159.0, \"2020-03-02\"], [196.0, \"2020-03-03\"], [262.0, \"2020-03-04\"], [482.0, \"2020-03-05\"], [670.0, \"2020-03-06\"], [799.0, \"2020-03-07\"], [1040.0, \"2020-03-08\"], [1176.0, \"2020-03-09\"], [1457.0, \"2020-03-10\"], [1908.0, \"2020-03-11\"], [2078.0, \"2020-03-12\"], [3675.0, \"2020-03-13\"], [4585.0, \"2020-03-14\"], [5795.0, \"2020-03-15\"], [7272.0, \"2020-03-16\"], [9257.0, \"2020-03-17\"], [12327.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Germany<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Germany\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Germany\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 3.0, 0.0, 0.0, 1.0, 3.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, -11.0, 0.0, 0.0, -2.0, 0.0, 0.0, 0.0, 1.0, 9.0, 18.0, 2.0, 31.0, 51.0, 29.0, 37.0, 66.0, 220.0, 187.0, 128.0, 241.0, 134.0, 281.0, 443.0, 170.0, 1572.0, 908.0, 1208.0, 1450.0, 1978.0, 3028.0], \"yaxis\": \"y\"}, {\"customdata\": [[2.0, \"2020-01-31\"], [2.0, \"2020-02-01\"], [2.0, \"2020-02-02\"], [2.0, \"2020-02-03\"], [2.0, \"2020-02-04\"], [2.0, \"2020-02-05\"], [2.0, \"2020-02-06\"], [3.0, \"2020-02-07\"], [3.0, \"2020-02-08\"], [3.0, \"2020-02-09\"], [3.0, \"2020-02-10\"], [3.0, \"2020-02-11\"], [3.0, \"2020-02-12\"], [3.0, \"2020-02-13\"], [3.0, \"2020-02-14\"], [3.0, \"2020-02-15\"], [3.0, \"2020-02-16\"], [3.0, \"2020-02-17\"], [3.0, \"2020-02-18\"], [3.0, \"2020-02-19\"], [3.0, \"2020-02-20\"], [20.0, \"2020-02-21\"], [62.0, \"2020-02-22\"], [155.0, \"2020-02-23\"], [229.0, \"2020-02-24\"], [322.0, \"2020-02-25\"], [453.0, \"2020-02-26\"], [655.0, \"2020-02-27\"], [888.0, \"2020-02-28\"], [1128.0, \"2020-02-29\"], [1694.0, \"2020-03-01\"], [2036.0, \"2020-03-02\"], [2502.0, \"2020-03-03\"], [3089.0, \"2020-03-04\"], [3858.0, \"2020-03-05\"], [4636.0, \"2020-03-06\"], [5883.0, \"2020-03-07\"], [7375.0, \"2020-03-08\"], [9172.0, \"2020-03-09\"], [10149.0, \"2020-03-10\"], [12462.0, \"2020-03-11\"], [12462.0, \"2020-03-12\"], [17660.0, \"2020-03-13\"], [21157.0, \"2020-03-14\"], [24747.0, \"2020-03-15\"], [27980.0, \"2020-03-16\"], [31506.0, \"2020-03-17\"], [35713.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Italy<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Italy\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Italy\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 40.0, 91.0, 71.0, 90.0, 127.0, 155.0, 228.0, 232.0, 524.0, 258.0, 428.0, 443.0, 590.0, 620.0, 1145.0, 1326.0, 1598.0, 809.0, 1796.0, 0.0, 4365.0, 2795.0, 2853.0, 2470.0, 2989.0, 2648.0], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-31\"], [1.0, \"2020-02-01\"], [1.0, \"2020-02-02\"], [1.0, \"2020-02-03\"], [1.0, \"2020-02-04\"], [1.0, \"2020-02-05\"], [1.0, \"2020-02-06\"], [1.0, \"2020-02-07\"], [1.0, \"2020-02-08\"], [1.0, \"2020-02-09\"], [1.0, \"2020-02-10\"], [1.0, \"2020-02-11\"], [1.0, \"2020-02-12\"], [1.0, \"2020-02-13\"], [1.0, \"2020-02-14\"], [1.0, \"2020-02-15\"], [1.0, \"2020-02-16\"], [1.0, \"2020-02-17\"], [1.0, \"2020-02-18\"], [1.0, \"2020-02-19\"], [1.0, \"2020-02-20\"], [1.0, \"2020-02-21\"], [1.0, \"2020-02-22\"], [1.0, \"2020-02-23\"], [1.0, \"2020-02-24\"], [1.0, \"2020-02-25\"], [2.0, \"2020-02-26\"], [7.0, \"2020-02-27\"], [7.0, \"2020-02-28\"], [12.0, \"2020-02-29\"], [14.0, \"2020-03-01\"], [15.0, \"2020-03-02\"], [21.0, \"2020-03-03\"], [35.0, \"2020-03-04\"], [94.0, \"2020-03-05\"], [101.0, \"2020-03-06\"], [161.0, \"2020-03-07\"], [203.0, \"2020-03-08\"], [248.0, \"2020-03-09\"], [355.0, \"2020-03-10\"], [500.0, \"2020-03-11\"], [599.0, \"2020-03-12\"], [814.0, \"2020-03-13\"], [961.0, \"2020-03-14\"], [1022.0, \"2020-03-15\"], [1103.0, \"2020-03-16\"], [1190.0, \"2020-03-17\"], [1279.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Sweden<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Sweden\", \"line\": {\"color\": \"#ab63fa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Sweden\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 0.0, 5.0, 2.0, 1.0, 6.0, 14.0, 59.0, 7.0, 60.0, 42.0, 44.0, 107.0, 144.0, 99.0, 215.0, 146.0, 60.0, 78.0, 86.0, 86.0], \"yaxis\": \"y\"}, {\"customdata\": [[267.0, \"2020-03-10\"], [366.0, \"2020-03-11\"], [442.0, \"2020-03-12\"], [568.0, \"2020-03-13\"], [642.0, \"2020-03-14\"], [769.0, \"2020-03-15\"], [904.0, \"2020-03-16\"], [1012.0, \"2020-03-17\"], [1187.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=WA, USA<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=WA, USA\", \"line\": {\"color\": \"#FFA15A\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 93.0, 74.0, 121.0, 71.0, 125.0, 129.0, 104.0, 161.0], \"yaxis\": \"y\"}, {\"customdata\": [[444.0, \"2020-01-22\"], [444.0, \"2020-01-23\"], [549.0, \"2020-01-24\"], [761.0, \"2020-01-25\"], [1058.0, \"2020-01-26\"], [1423.0, \"2020-01-27\"], [3554.0, \"2020-01-28\"], [3554.0, \"2020-01-29\"], [4903.0, \"2020-01-30\"], [5806.0, \"2020-01-31\"], [7153.0, \"2020-02-01\"], [11177.0, \"2020-02-02\"], [13522.0, \"2020-02-03\"], [16678.0, \"2020-02-04\"], [19665.0, \"2020-02-05\"], [22112.0, \"2020-02-06\"], [24953.0, \"2020-02-07\"], [27100.0, \"2020-02-08\"], [29631.0, \"2020-02-09\"], [31728.0, \"2020-02-10\"], [33366.0, \"2020-02-11\"], [33366.0, \"2020-02-12\"], [48206.0, \"2020-02-13\"], [54406.0, \"2020-02-14\"], [56249.0, \"2020-02-15\"], [58182.0, \"2020-02-16\"], [59989.0, \"2020-02-17\"], [61682.0, \"2020-02-18\"], [62031.0, \"2020-02-19\"], [62442.0, \"2020-02-20\"], [62662.0, \"2020-02-21\"], [64084.0, \"2020-02-22\"], [64084.0, \"2020-02-23\"], [64287.0, \"2020-02-24\"], [64786.0, \"2020-02-25\"], [65187.0, \"2020-02-26\"], [65596.0, \"2020-02-27\"], [65914.0, \"2020-02-28\"], [66337.0, \"2020-02-29\"], [66907.0, \"2020-03-01\"], [67103.0, \"2020-03-02\"], [67217.0, \"2020-03-03\"], [67332.0, \"2020-03-04\"], [67466.0, \"2020-03-05\"], [67592.0, \"2020-03-06\"], [67666.0, \"2020-03-07\"], [67707.0, \"2020-03-08\"], [67743.0, \"2020-03-09\"], [67760.0, \"2020-03-10\"], [67773.0, \"2020-03-11\"], [67781.0, \"2020-03-12\"], [67786.0, \"2020-03-13\"], [67790.0, \"2020-03-14\"], [67794.0, \"2020-03-15\"], [67798.0, \"2020-03-16\"], [67799.0, \"2020-03-17\"], [67800.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Hubei, China<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Hubei, China\", \"line\": {\"color\": \"#19d3f3\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Hubei, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 0.0, 95.0, 195.0, 275.0, 338.0, 2047.0, -8.0, 1310.0, 810.0, 1275.0, 3796.0, 2190.0, 2955.0, 2806.0, 2194.0, 2462.0, 1742.0, 2084.0, 1567.0, 1127.0, -47.0, 13825.0, 4738.0, 855.0, 817.0, 491.0, 295.0, -968.0, -1155.0, 127.0, -2198.0, -44.0, -1351.0, -1792.0, -1649.0, -2031.0, -2743.0, -2212.0, -2007.0, -2244.0, -2192.0, -2270.0, -1932.0, -1344.0, -1421.0, -1721.0, -1239.0, -1254.0, -1400.0, -1186.0, -1236.0, -1416.0, -1334.0, -864.0, -872.0, -934.0], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-22\"], [1.0, \"2020-01-23\"], [2.0, \"2020-01-24\"], [2.0, \"2020-01-25\"], [3.0, \"2020-01-26\"], [4.0, \"2020-01-27\"], [4.0, \"2020-01-28\"], [4.0, \"2020-01-29\"], [4.0, \"2020-01-30\"], [11.0, \"2020-01-31\"], [12.0, \"2020-02-01\"], [15.0, \"2020-02-02\"], [15.0, \"2020-02-03\"], [16.0, \"2020-02-04\"], [19.0, \"2020-02-05\"], [23.0, \"2020-02-06\"], [24.0, \"2020-02-07\"], [24.0, \"2020-02-08\"], [25.0, \"2020-02-09\"], [27.0, \"2020-02-10\"], [28.0, \"2020-02-11\"], [28.0, \"2020-02-12\"], [28.0, \"2020-02-13\"], [28.0, \"2020-02-14\"], [28.0, \"2020-02-15\"], [29.0, \"2020-02-16\"], [30.0, \"2020-02-17\"], [31.0, \"2020-02-18\"], [31.0, \"2020-02-19\"], [104.0, \"2020-02-20\"], [204.0, \"2020-02-21\"], [433.0, \"2020-02-22\"], [602.0, \"2020-02-23\"], [833.0, \"2020-02-24\"], [977.0, \"2020-02-25\"], [1261.0, \"2020-02-26\"], [1766.0, \"2020-02-27\"], [2337.0, \"2020-02-28\"], [3150.0, \"2020-02-29\"], [3736.0, \"2020-03-01\"], [4335.0, \"2020-03-02\"], [5186.0, \"2020-03-03\"], [5621.0, \"2020-03-04\"], [6088.0, \"2020-03-05\"], [6593.0, \"2020-03-06\"], [7041.0, \"2020-03-07\"], [7314.0, \"2020-03-08\"], [7478.0, \"2020-03-09\"], [7513.0, \"2020-03-10\"], [7755.0, \"2020-03-11\"], [7869.0, \"2020-03-12\"], [7979.0, \"2020-03-13\"], [8086.0, \"2020-03-14\"], [8162.0, \"2020-03-15\"], [8236.0, \"2020-03-16\"], [8320.0, \"2020-03-17\"], [8413.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=South Korea<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=South Korea\", \"line\": {\"color\": \"#FF6692\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=South Korea\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 7.0, 1.0, 3.0, 0.0, 1.0, 3.0, 4.0, 0.0, 0.0, -1.0, 2.0, 1.0, -4.0, 0.0, 0.0, -2.0, 1.0, 0.0, -1.0, 0.0, 68.0, 99.0, 229.0, 163.0, 229.0, 138.0, 282.0, 504.0, 571.0, 805.0, 582.0, 588.0, 851.0, 417.0, 467.0, 404.0, 446.0, 284.0, 161.0, -95.0, 195.0, 63.0, -67.0, 101.0, 73.0, -553.0, -192.0, -43.0], \"yaxis\": \"y\"}, {\"customdata\": [[14.0, \"2020-01-22\"], [22.0, \"2020-01-23\"], [36.0, \"2020-01-24\"], [41.0, \"2020-01-25\"], [68.0, \"2020-01-26\"], [80.0, \"2020-01-27\"], [91.0, \"2020-01-28\"], [111.0, \"2020-01-29\"], [114.0, \"2020-01-30\"], [139.0, \"2020-01-31\"], [168.0, \"2020-02-01\"], [191.0, \"2020-02-02\"], [212.0, \"2020-02-03\"], [228.0, \"2020-02-04\"], [253.0, \"2020-02-05\"], [274.0, \"2020-02-06\"], [297.0, \"2020-02-07\"], [315.0, \"2020-02-08\"], [326.0, \"2020-02-09\"], [337.0, \"2020-02-10\"], [342.0, \"2020-02-11\"], [352.0, \"2020-02-12\"], [366.0, \"2020-02-13\"], [372.0, \"2020-02-14\"], [375.0, \"2020-02-15\"], [380.0, \"2020-02-16\"], [381.0, \"2020-02-17\"], [387.0, \"2020-02-18\"], [393.0, \"2020-02-19\"], [395.0, \"2020-02-20\"], [396.0, \"2020-02-21\"], [399.0, \"2020-02-22\"], [399.0, \"2020-02-23\"], [399.0, \"2020-02-24\"], [400.0, \"2020-02-25\"], [400.0, \"2020-02-26\"], [410.0, \"2020-02-27\"], [410.0, \"2020-02-28\"], [411.0, \"2020-02-29\"], [413.0, \"2020-03-01\"], [414.0, \"2020-03-02\"], [414.0, \"2020-03-03\"], [418.0, \"2020-03-04\"], [418.0, \"2020-03-05\"], [422.0, \"2020-03-06\"], [426.0, \"2020-03-07\"], [428.0, \"2020-03-08\"], [428.0, \"2020-03-09\"], [429.0, \"2020-03-10\"], [435.0, \"2020-03-11\"], [435.0, \"2020-03-12\"], [436.0, \"2020-03-13\"], [437.0, \"2020-03-14\"], [442.0, \"2020-03-15\"], [452.0, \"2020-03-16\"], [456.0, \"2020-03-17\"], [469.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Beijing, China<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Beijing, China\", \"line\": {\"color\": \"#B6E880\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Beijing, China\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 8.0, 13.0, 4.0, 27.0, 11.0, 9.0, 20.0, 3.0, 24.0, 25.0, 23.0, 18.0, 5.0, 24.0, 14.0, 21.0, 16.0, 8.0, 4.0, 0.0, 2.0, 1.0, -5.0, -16.0, -5.0, -5.0, -2.0, -17.0, -6.0, -15.0, -6.0, -11.0, -9.0, -16.0, -20.0, -4.0, -11.0, -14.0, -3.0, -5.0, -6.0, -5.0, 0.0, 2.0, 0.0, -3.0, -7.0, -4.0, 0.0, -8.0, -7.0, -6.0, 1.0, 3.0, -5.0, 4.0], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-03-07\"], [4.0, \"2020-03-08\"], [4.0, \"2020-03-09\"], [4.0, \"2020-03-10\"], [14.0, \"2020-03-11\"], [19.0, \"2020-03-13\"], [26.0, \"2020-03-14\"], [29.0, \"2020-03-15\"], [38.0, \"2020-03-16\"], [45.0, \"2020-03-17\"], [56.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Pierce County, WA, USA<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Pierce County, WA, USA\", \"line\": {\"color\": \"#FF97FF\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Pierce County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 3.0, 0.0, 0.0, 10.0, 5.0, 7.0, 3.0, 9.0, 7.0, 11.0], \"yaxis\": \"y\"}, {\"customdata\": [[2.0, \"2020-03-05\"], [2.0, \"2020-03-06\"], [9.0, \"2020-03-07\"], [9.0, \"2020-03-08\"], [9.0, \"2020-03-09\"], [14.0, \"2020-03-10\"], [14.0, \"2020-03-11\"], [21.0, \"2020-03-13\"], [28.0, \"2020-03-14\"], [37.0, \"2020-03-15\"], [40.0, \"2020-03-16\"], [43.0, \"2020-03-17\"], [51.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=San Francisco County, CA, USA<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=San Francisco County, CA, USA\", \"line\": {\"color\": \"#FECB52\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=San Francisco County, CA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 0.0, 7.0, 0.0, 0.0, 5.0, 0.0, 7.0, 7.0, 9.0, 3.0, 3.0, 8.0], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-01-22\"], [1.0, \"2020-01-23\"], [1.0, \"2020-01-24\"], [1.0, \"2020-01-25\"], [1.0, \"2020-01-26\"], [1.0, \"2020-01-27\"], [1.0, \"2020-01-28\"], [1.0, \"2020-01-29\"], [1.0, \"2020-01-30\"], [1.0, \"2020-01-31\"], [1.0, \"2020-02-01\"], [1.0, \"2020-02-02\"], [1.0, \"2020-02-03\"], [1.0, \"2020-02-04\"], [1.0, \"2020-02-05\"], [1.0, \"2020-02-06\"], [1.0, \"2020-02-07\"], [1.0, \"2020-02-08\"], [1.0, \"2020-02-09\"], [1.0, \"2020-02-10\"], [1.0, \"2020-02-11\"], [1.0, \"2020-02-12\"], [1.0, \"2020-02-13\"], [1.0, \"2020-02-14\"], [1.0, \"2020-02-15\"], [1.0, \"2020-02-16\"], [1.0, \"2020-02-17\"], [1.0, \"2020-02-18\"], [1.0, \"2020-02-19\"], [1.0, \"2020-02-20\"], [1.0, \"2020-02-21\"], [1.0, \"2020-02-22\"], [1.0, \"2020-02-23\"], [1.0, \"2020-02-24\"], [1.0, \"2020-02-25\"], [1.0, \"2020-02-26\"], [1.0, \"2020-02-27\"], [1.0, \"2020-02-28\"], [6.0, \"2020-02-29\"], [9.0, \"2020-03-01\"], [14.0, \"2020-03-02\"], [21.0, \"2020-03-03\"], [31.0, \"2020-03-04\"], [51.0, \"2020-03-05\"], [58.0, \"2020-03-06\"], [71.0, \"2020-03-07\"], [83.0, \"2020-03-08\"], [83.0, \"2020-03-09\"], [116.0, \"2020-03-10\"], [190.0, \"2020-03-11\"], [328.0, \"2020-03-13\"], [387.0, \"2020-03-14\"], [420.0, \"2020-03-15\"], [488.0, \"2020-03-16\"], [569.0, \"2020-03-17\"], [562.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=King County, WA, USA<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=King County, WA, USA\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=King County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-01-22T00:00:00\", \"2020-01-23T00:00:00\", \"2020-01-24T00:00:00\", \"2020-01-25T00:00:00\", \"2020-01-26T00:00:00\", \"2020-01-27T00:00:00\", \"2020-01-28T00:00:00\", \"2020-01-29T00:00:00\", \"2020-01-30T00:00:00\", \"2020-01-31T00:00:00\", \"2020-02-01T00:00:00\", \"2020-02-02T00:00:00\", \"2020-02-03T00:00:00\", \"2020-02-04T00:00:00\", \"2020-02-05T00:00:00\", \"2020-02-06T00:00:00\", \"2020-02-07T00:00:00\", \"2020-02-08T00:00:00\", \"2020-02-09T00:00:00\", \"2020-02-10T00:00:00\", \"2020-02-11T00:00:00\", \"2020-02-12T00:00:00\", \"2020-02-13T00:00:00\", \"2020-02-14T00:00:00\", \"2020-02-15T00:00:00\", \"2020-02-16T00:00:00\", \"2020-02-17T00:00:00\", \"2020-02-18T00:00:00\", \"2020-02-19T00:00:00\", \"2020-02-20T00:00:00\", \"2020-02-21T00:00:00\", \"2020-02-22T00:00:00\", \"2020-02-23T00:00:00\", \"2020-02-24T00:00:00\", \"2020-02-25T00:00:00\", \"2020-02-26T00:00:00\", \"2020-02-27T00:00:00\", \"2020-02-28T00:00:00\", \"2020-02-29T00:00:00\", \"2020-03-01T00:00:00\", \"2020-03-02T00:00:00\", \"2020-03-03T00:00:00\", \"2020-03-04T00:00:00\", \"2020-03-05T00:00:00\", \"2020-03-06T00:00:00\", \"2020-03-07T00:00:00\", \"2020-03-08T00:00:00\", \"2020-03-09T00:00:00\", \"2020-03-10T00:00:00\", \"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 3.0, 1.0, 6.0, 7.0, 19.0, 5.0, 10.0, 10.0, 0.0, 29.0, 73.0, 129.0, 56.0, 31.0, 62.0, 81.0, -20.0], \"yaxis\": \"y\"}, {\"customdata\": [[1.0, \"2020-03-11\"], [1.0, \"2020-03-13\"], [2.0, \"2020-03-14\"], [3.0, \"2020-03-15\"], [3.0, \"2020-03-16\"], [6.0, \"2020-03-17\"], [7.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=Whatcom County, WA, USA<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=Whatcom County, WA, USA\", \"line\": {\"color\": \"#EF553B\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=Whatcom County, WA, USA\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-11T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 0.0, 1.0, 1.0, 0.0, 3.0, 1.0], \"yaxis\": \"y\"}, {\"customdata\": [[456.0, \"2020-03-12\"], [798.0, \"2020-03-13\"], [1140.0, \"2020-03-14\"], [1140.0, \"2020-03-15\"], [1543.0, \"2020-03-16\"], [1950.0, \"2020-03-17\"], [2626.0, \"2020-03-18\"]], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"location=UK<br>date=%{x}<br>1d new active=%{y}<br>cases=%{customdata[0]}<br>Date=%{customdata[1]}\", \"legendgroup\": \"location=UK\", \"line\": {\"color\": \"#00cc96\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"location=UK\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2020-03-12T00:00:00\", \"2020-03-13T00:00:00\", \"2020-03-14T00:00:00\", \"2020-03-15T00:00:00\", \"2020-03-16T00:00:00\", \"2020-03-17T00:00:00\", \"2020-03-18T00:00:00\"], \"xaxis\": \"x\", \"y\": [null, 342.0, 329.0, 0.0, 367.0, 375.0, 647.0], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"white\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"#C8D4E3\", \"linecolor\": \"#C8D4E3\", \"minorgridcolor\": \"#C8D4E3\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"white\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"#C8D4E3\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"white\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"radialaxis\": {\"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"yaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}, \"zaxis\": {\"backgroundcolor\": \"white\", \"gridcolor\": \"#DFE8F3\", \"gridwidth\": 2, \"linecolor\": \"#EBF0F8\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"#EBF0F8\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}, \"bgcolor\": \"white\", \"caxis\": {\"gridcolor\": \"#DFE8F3\", \"linecolor\": \"#A2B1C6\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"#EBF0F8\", \"linecolor\": \"#EBF0F8\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"#EBF0F8\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"1d change in # of active cases\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"date\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"1d new active\"}}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('83c5119b-a5a2-43ec-aa6f-6b40f485b40c');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" \n",
" </script>\n",
" </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {
"tags": []
}
}
]
},
{
"cell_type": "code",
"metadata": {
"id": "bReeK8sjmo3-",
"colab_type": "code",
"colab": {}
},
"source": [
""
],
"execution_count": 0,
"outputs": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment