Skip to content
Snippets Groups Projects
openzh-covid-19-example.ipynb 319 KiB
Newer Older
{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "from pathlib import Path\n",
    "\n",
    "import altair as alt\n",
    "import pandas as pd\n",
    "from IPython.display import display, HTML"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "tags": [
     "parameters"
    ]
   },
   "outputs": [],
   "source": [
    "save_figures = False\n",
    "data_path = '../../data/openzh-covid-19'\n",
    "figures_path = '../../figures'"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [],
   "source": [
    "html_credits=HTML('''\n",
    "<p style=\"font-size: smaller\">Data Sources: \n",
    "  <a href=\"https://github.com/openZH/covid_19\">OpenData Zuerich</a>,\n",
    "  <a href=\"https://www.bfs.admin.ch\">Federal Statistical Office</a>\n",
    "<br>\n",
    "Analysis:\n",
    "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
    "</p>''')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Read in the data\n",
    "\n",
    "We have two datasets for Switzerland - the COVID-19 dataset from https://github.com/openZH/covid_19 and the population statistics by age and canton. We can read both of these in to dataframes:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [],
   "source": [
    "# read in cantonal data and produce one dataframe\n",
    "df_list = []\n",
    "\n",
    "for f in Path(data_path).glob('COVID19_Fallzahlen_Kanton_*total.csv'):\n",
    "    df_list.append(pd.read_csv(f))\n",
    "\n",
    "df = pd.concat(df_list)\n",
    "\n",
    "df['date'] = pd.to_datetime(df['date'], dayfirst=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [],
   "source": [
    "# read in population data\n",
    "df_pop = pd.read_excel(\n",
    "    Path(data_path) / '../ch-population-statistics/ch-population-by-age-canton.xls', \n",
    "    header=1, \n",
    "    skipfooter=5\n",
    ")\n",
    "df_pop = df_pop.where(\n",
    "    df_pop.Region.str.startswith('-')\n",
    ").dropna().sort_values('Region').reset_index(drop=True)\n",
    "\n",
    "# match the cantons in the two datasets\n",
    "df_pop['abbreviation_canton_and_fl'] = ['AG', 'AI', 'AR', 'BL', 'BS', 'BE', 'FR', 'GE', 'GL', 'GR', 'JU', 'LU', 'NE', 'NW', 'OW', 'SH', 'SZ', 'SO', 'SG', 'TG', 'TI', 'UR', 'VS', 'VD', 'ZG', 'ZH']\n",
    "\n",
    "pop_d = df_pop[['abbreviation_canton_and_fl', 'Total']].set_index('abbreviation_canton_and_fl').to_dict()\n",
    "\n",
    "\n",
    "# calculate cases and deaths per 10k\n",
    "\n",
    "for x in ['conf', 'deceased']:\n",
    "    df[f'ncumul_{x}_100k'] = df.apply(\n",
    "        lambda row: row[f'ncumul_{x}']/pop_d['Total'][row.abbreviation_canton_and_fl]*100000, axis=1\n",
    "    )"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "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>date</th>\n",
       "      <th>time</th>\n",
       "      <th>abbreviation_canton_and_fl</th>\n",
       "      <th>ncumul_tested</th>\n",
       "      <th>ncumul_conf</th>\n",
       "      <th>ncumul_hosp</th>\n",
       "      <th>ncumul_ICU</th>\n",
       "      <th>ncumul_vent</th>\n",
       "      <th>ncumul_released</th>\n",
       "      <th>ncumul_deceased</th>\n",
       "      <th>source</th>\n",
       "      <th>ncumul_ICF</th>\n",
       "      <th>ncumul_ICU_intub</th>\n",
       "      <th>ncumul_deceased_suspect</th>\n",
       "      <th>TotalPosTests1</th>\n",
       "      <th>TotalCured</th>\n",
       "      <th>ncumul_conf_100k</th>\n",
       "      <th>ncumul_deceased_100k</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>2020-02-28</td>\n",
       "      <td>NaN</td>\n",
       "      <td>VS</td>\n",
       "      <td>NaN</td>\n",
       "      <td>1.0</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>https://vs.ch/documents/529400/6767345/2020+02...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>0.290736</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>NaN</td>\n",
       "      <td>VS</td>\n",
       "      <td>NaN</td>\n",
       "      <td>1.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>https://www.vs.ch/documents/6756452/7008787/Si...</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",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>NaN</td>\n",
       "      <td>VS</td>\n",
       "      <td>NaN</td>\n",
       "      <td>2.0</td>\n",
       "      <td>4.0</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>https://www.vs.ch/documents/6756452/7008787/Si...</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",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>NaN</td>\n",
       "      <td>VS</td>\n",
       "      <td>NaN</td>\n",
       "      <td>3.0</td>\n",
       "      <td>4.0</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>NaN</td>\n",
       "      <td>https://www.vs.ch/documents/6756452/7008787/Si...</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",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>NaN</td>\n",
       "      <td>VS</td>\n",
       "      <td>NaN</td>\n",
       "      <td>3.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>https://vs.ch/documents/529400/6789273/2020+03...</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",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "        date time abbreviation_canton_and_fl  ncumul_tested  ncumul_conf  \\\n",
       "0 2020-02-28  NaN                         VS            NaN          1.0   \n",
       "1 2020-02-29  NaN                         VS            NaN          1.0   \n",
       "2 2020-03-01  NaN                         VS            NaN          2.0   \n",
       "3 2020-03-02  NaN                         VS            NaN          3.0   \n",
       "4 2020-03-03  NaN                         VS            NaN          3.0   \n",
       "\n",
       "   ncumul_hosp  ncumul_ICU  ncumul_vent  ncumul_released  ncumul_deceased  \\\n",
       "0          3.0         NaN          NaN              NaN              NaN   \n",
       "1          3.0         NaN          NaN              NaN              NaN   \n",
       "2          4.0         NaN          NaN              NaN              NaN   \n",
       "3          4.0         NaN          NaN              NaN              NaN   \n",
       "4          5.0         NaN          NaN              NaN              NaN   \n",
       "\n",
       "                                              source  ncumul_ICF  \\\n",
       "0  https://vs.ch/documents/529400/6767345/2020+02...         NaN   \n",
       "1  https://www.vs.ch/documents/6756452/7008787/Si...         NaN   \n",
       "2  https://www.vs.ch/documents/6756452/7008787/Si...         NaN   \n",
       "3  https://www.vs.ch/documents/6756452/7008787/Si...         NaN   \n",
       "4  https://vs.ch/documents/529400/6789273/2020+03...         NaN   \n",
       "\n",
       "   ncumul_ICU_intub  ncumul_deceased_suspect  TotalPosTests1  TotalCured  \\\n",
       "0               NaN                      NaN             NaN         NaN   \n",
       "1               NaN                      NaN             NaN         NaN   \n",
       "2               NaN                      NaN             NaN         NaN   \n",
       "3               NaN                      NaN             NaN         NaN   \n",
       "4               NaN                      NaN             NaN         NaN   \n",
       "\n",
       "   ncumul_conf_100k  ncumul_deceased_100k  \n",
       "0          0.290736                   NaN  \n",
       "1          0.290736                   NaN  \n",
       "2          0.581471                   NaN  \n",
       "3          0.872207                   NaN  \n",
       "4          0.872207                   NaN  "
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# display the dataframe\n",
    "df.head()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Plot the available data\n",
    "\n",
    "Below we make plots of total cases, total cases per 10k population and total deaths. You can click on the canton abbreviations in the legend to highlight individual lines. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [],
   "source": [
    "def generate_canton_chart(column, title, tooltip_title):\n",
    "    \"\"\"Produce a canton chart given a column name\"\"\"\n",
    "    selection = alt.selection_multi(fields=['abbreviation_canton_and_fl'], bind='legend')\n",
    "    chart = base.mark_line().encode(\n",
    "        alt.X('date', title='Date'), \n",
    "        alt.Y(column, \n",
    "              title=title, scale=alt.Scale(type='linear')),\n",
    "        color=alt.Color('abbreviation_canton_and_fl', legend=alt.Legend(title=\"Canton\")),\n",
    "        tooltip=[alt.Tooltip('abbreviation_canton_and_fl',title='Canton'),\n",
    "                 alt.Tooltip(column,title=tooltip_title),\n",
    "                 alt.Tooltip('date',title='Date')],\n",
    "        opacity=alt.condition(selection, alt.value(1), alt.value(0.2))\n",
    "    ).add_selection(\n",
    "        selection\n",
    "    )\n",
    "    return chart"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Total cases"
   ]
  },
  {
   "cell_type": "code",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-77300a88a4ac46bbb5ba0a2d3d51684c\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-77300a88a4ac46bbb5ba0a2d3d51684c\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}, \"title\": {\"anchor\": \"middle\"}}, \"hconcat\": [{\"mark\": \"line\", \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"legend\": {\"title\": \"Canton\"}}, \"opacity\": {\"condition\": {\"value\": 1, \"selection\": \"selector005\"}, \"value\": 0.2}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"title\": \"Canton\"}, {\"type\": \"quantitative\", \"field\": \"ncumul_conf\", \"title\": \"Cases\"}, {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}], \"x\": {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"ncumul_conf\", \"scale\": {\"type\": \"linear\"}, \"title\": \"Cases\"}}, \"selection\": {\"selector005\": {\"type\": \"multi\", \"fields\": [\"abbreviation_canton_and_fl\"], \"bind\": \"legend\"}}}, {\"mark\": \"line\", \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"legend\": {\"title\": \"Canton\"}}, \"opacity\": {\"condition\": {\"value\": 1, \"selection\": \"selector006\"}, \"value\": 0.2}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"title\": \"Canton\"}, {\"type\": \"quantitative\", \"field\": \"ncumul_conf_100k\", \"title\": \"Cases/100k\"}, {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}], \"x\": {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"ncumul_conf_100k\", \"scale\": {\"type\": \"linear\"}, \"title\": \"Cases per 100k population\"}}, \"selection\": {\"selector006\": {\"type\": \"multi\", \"fields\": [\"abbreviation_canton_and_fl\"], \"bind\": \"legend\"}}}], \"data\": {\"name\": \"data-2efedca1243d5f65c801c94b7ae4c3ea\"}, \"title\": \"Covid-19 cases in Switzerland by Canton\", \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-2efedca1243d5f65c801c94b7ae4c3ea\": [{\"date\": \"2020-02-28T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://vs.ch/documents/529400/6767345/2020+02+28+-+Medienmitteilung+-+1.+Fall+Coronavirus+VS.pdf/37c4f942-c5d5-6ab5-64fd-83444de4eba5?t=1582923242156\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.2907357067058191, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-29T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.2907357067058191, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-01T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": 4.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.5814714134116382, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 3.0, \"ncumul_hosp\": 4.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.8722071201174572, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 3.0, \"ncumul_hosp\": 5.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://vs.ch/documents/529400/6789273/2020+03+03+-+Medienmitteilung+-+Best%C3%A4tigung+2.+Fall.pdf/9e063e45-70a1-682e-fc37-31d9685f71f1?t=1583233390225\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.8722071201174572, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 4.0, \"ncumul_hosp\": 6.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.1629428268232764, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 5.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=5#collapse6812036\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.4536785335290954, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=5#collapse6828733\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.7444142402349143, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 7.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=4\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.0351499469407335, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 12.0, \"ncumul_hosp\": 7.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=4#collapse6846567\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.4888284804698286, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 17.0, \"ncumul_hosp\": 8.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": 3.0, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=3#collapse6858802\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 4.942507013998925, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 22.0, \"ncumul_hosp\": 11.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=3#collapse6870561\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.396185547528019, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 30.0, \"ncumul_hosp\": 12.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 8.722071201174574, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 53.0, \"ncumul_hosp\": 17.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=3#collapse6898881\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 15.408992455408411, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 76.0, \"ncumul_hosp\": 17.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 22.09591370964225, \"ncumul_deceased_100k\": 0.2907357067058191}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 98.0, \"ncumul_hosp\": 22.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 28.49209925717027, \"ncumul_deceased_100k\": 0.2907357067058191}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 116.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 33.72534197787501, \"ncumul_deceased_100k\": 0.5814714134116382}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 173.0, \"ncumul_hosp\": 29.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=2#collapse6927494\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.297277260106696, \"ncumul_deceased_100k\": 0.8722071201174572}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 225.0, \"ncumul_hosp\": 33.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 65.41553400880929, \"ncumul_deceased_100k\": 0.8722071201174572}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 311.0, \"ncumul_hosp\": 42.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.vs.ch/de/web/coronavirus#collapse6955818\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 90.41880478550974, \"ncumul_deceased_100k\": 1.1629428268232764}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 346.0, \"ncumul_hosp\": 47.0, \"ncumul_ICU\": 5.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 100.59455452021339, \"ncumul_deceased_100k\": 1.7444142402349143}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 433.0, \"ncumul_hosp\": 55.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 7.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 125.88856100361967, \"ncumul_deceased_100k\": 2.0351499469407335}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 490.0, \"ncumul_hosp\": 64.0, \"ncumul_ICU\": 7.0, \"ncumul_vent\": 6.0, \"ncumul_released\": null, \"ncumul_deceased\": 10.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 142.46049628585135, \"ncumul_deceased_100k\": 2.9073570670581907}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 527.0, \"ncumul_hosp\": 70.0, \"ncumul_ICU\": 10.0, \"ncumul_vent\": 7.0, \"ncumul_released\": null, \"ncumul_deceased\": 12.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 153.21771743396664, \"ncumul_deceased_100k\": 3.4888284804698286}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 606.0, \"ncumul_hosp\": 80.0, \"ncumul_ICU\": 11.0, \"ncumul_vent\": 9.0, \"ncumul_released\": null, \"ncumul_deceased\": 13.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 176.18583826372634, \"ncumul_deceased_100k\": 3.7795641871756476}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 651.0, \"ncumul_hosp\": 84.0, \"ncumul_ICU\": 11.0, \"ncumul_vent\": 9.0, \"ncumul_released\": null, \"ncumul_deceased\": 14.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 189.26894506548823, \"ncumul_deceased_100k\": 4.070299893881467}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 116.0, \"ncumul_hosp\": 13.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 58.473931212477126, \"ncumul_deceased_100k\": 0.5040856139006649}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 145.0, \"ncumul_hosp\": 18.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 73.0924140155964, \"ncumul_deceased_100k\": 0.5040856139006649}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 213.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 107.37023576084161, \"ncumul_deceased_100k\": 1.5122568417019946}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 239.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 120.4764617222589, \"ncumul_deceased_100k\": 1.5122568417019946}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 266.0, \"ncumul_hosp\": 27.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 134.08677329757685, \"ncumul_deceased_100k\": 3.024513683403989}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 276.0, \"ncumul_hosp\": 29.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 139.12762943658353, \"ncumul_deceased_100k\": 3.024513683403989}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 322.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 162.3155676760141, \"ncumul_deceased_100k\": 3.024513683403989}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 123.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 11.884322067060427, \"ncumul_deceased_100k\": 0.09662050461024736}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 193.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 18.647757389777745, \"ncumul_deceased_100k\": 0.09662050461024736}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 282.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 27.24698230008976, \"ncumul_deceased_100k\": 0.09662050461024736}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 377.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 36.42593023806326, \"ncumul_deceased_100k\": 0.19324100922049472}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 418.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 40.3873709270834, \"ncumul_deceased_100k\": 0.28986151383074216}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 470.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 45.41163716681627, \"ncumul_deceased_100k\": 0.48310252305123685}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 532.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 51.4021084526516, \"ncumul_deceased_100k\": 0.5797230276614843}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 624.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 60.29119487679437, \"ncumul_deceased_100k\": 0.5797230276614843}, {\"date\": \"2020-03-26T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 660.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 7.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 63.76953304276327, \"ncumul_deceased_100k\": 0.6763435322717316}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AI\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ai.ch/themen/gesundheit-alter-und-soziales/gesundheitsfoerderung-und-praevention/aktuelles/erste-bestaetigte-coronavirus-faelle-auch-in-innerrhoden\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.620958105514719, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AI\", \"ncumul_tested\": null, \"ncumul_conf\": 4.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"Kantonaler F\\u00fchrungsstab Appenzell Innerrhoden\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 7.241916211029438, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AI\", \"ncumul_tested\": null, \"ncumul_conf\": 5.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"Kantonaler F\\u00fchrungsstab Appenzell Innerrhoden\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.052395263786797, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AI\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"Kantonaler F\\u00fchrungsstab Appenzell Innerrhoden\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 10.862874316544158, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"17:00\", \"abbreviation_canton_and_fl\": \"AI\", \"ncumul_tested\": null, \"ncumul_conf\": 8.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ai.ch/themen/gesundheit-alter-und-soziales/gesundheitsfoerderung-und-praevention/uebertragbare-krankheiten/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 14.483832422058876, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"17:00\", \"abbreviation_canton_and_fl\": \"AI\", \"ncumul_tested\": null, \"ncumul_conf\": 9.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ai.ch/themen/gesundheit-alter-und-soziales/gesundheitsfoerderung-und-praevention/uebertragbare-krankheiten/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 16.294311474816237, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-28T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/neuer-coronavirus-covid-19-erster-bestaetigter-fall-aus-dem-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.34706315161106716, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-29T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/weiterer-bestaetigter-fall-aus-dem-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6941263032221343, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-01T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6941263032221343, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6941263032221343, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6941263032221343, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6941263032221343, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/neuer-coronavirus-covid-19-sechs-bestaetigte-faelle-im-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.082378909666403, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.082378909666403, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-07T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 15.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-15-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.205947274166007, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 19.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/patient-im-kantonsspital-baselland-stirbt-an-den-folgen-einer-coronavirus-infektion\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.594199880610277, \"ncumul_deceased_100k\": 0.34706315161106716}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 20.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-xx-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.941263032221343, \"ncumul_deceased_100k\": 0.34706315161106716}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 22.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 7.635389335443477, \"ncumul_deceased_100k\": 0.34706315161106716}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 26.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-26-bestaetigte-faelle-in-basel-landschaft-1\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.023641941887746, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 26.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.023641941887746, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 42.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-26-bestaetigte-faelle-in-basel-landschaft-2\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 14.576652367664822, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 47.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-47-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 16.311968125720156, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 54.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-54-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 18.741410186997626, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 76.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-67-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 26.376799522441107, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 89.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-89-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 30.888620493384977, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 116.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-116-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 40.25932558688379, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 134.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-131-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 46.506462315883, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 184.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-170-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 63.859619896436364, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 282.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-282-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 97.87180875432094, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 289.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-289-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 100.30125081559841, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 302.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-289-bestaetigte-faelle-in-basel-landschaft-1\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 104.81307178654227, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"15:30\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 306.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fur-gesundheit/medizinische-dienste/kantonsarztlicher-dienst/aktuelles/covid-19-faelle-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 106.20132439298655, \"ncumul_deceased_100k\": 1.3882526064442686}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 341.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fur-gesundheit/medizinische-dienste/kantonsarztlicher-dienst/aktuelles/covid-19-faelle-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 118.3485346993739, \"ncumul_deceased_100k\": 1.7353157580553358}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 422.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fur-gesundheit/medizinische-dienste/kantonsarztlicher-dienst/aktuelles/covid-19-faelle-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 146.46064997987034, \"ncumul_deceased_100k\": 1.7353157580553358}, {\"date\": \"2020-03-06T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://so.ch/startseite/aktuell/news/erster-laborbestaetigter-covid-19-fall-im-kanton-solothurn/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail&cHash=3074bbdc8f0fcdcb9f1e11a21fc05e73\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.36604024978586647, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 43.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.oltnertagblatt.ch/solothurn/kanton-solothurn/zivilschuetzer-kontrollieren-wer-in-die-solothurner-spitaeler-rein-will-137174885\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 15.73973074079226, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"17:37\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 66.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/KantonSolothurn/status/1241041303024041989?p=p\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 24.158656485867187, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 95.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.77382372965731, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"00:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 104.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 38.06818597773011, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"00:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 129.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 47.219192222376776, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"00:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 141.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 51.61167521980717, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-04T00:00:00\", \"time\": \"06:35\", \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sg.ch/news/sgch_allgemein/2020/03/erster-bestaetigter-corona-fall-im-kanton-.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.19696787650902012, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": \"15:38\", \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sg.ch/news/sgch_allgemein/2020/03/zweiter-bestaetigter-fall-einer-corona-patientin.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.39393575301804024, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 15.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.954518147635302, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 47.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.257490195923948, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 61.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 12.015040467050229, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 85.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 16.742269503266712, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 98.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 19.302851897883972, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 228.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 44.90867584405659, \"ncumul_deceased_100k\": 0.19696787650902012}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 228.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 44.90867584405659, \"ncumul_deceased_100k\": 0.19696787650902012}, {\"date\": \"2020-03-26T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 280.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 55.15100542252564, \"ncumul_deceased_100k\": 0.19696787650902012}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 159.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 89.90670059372349, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"15:30\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 177.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 100.08481764206955, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 188.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 106.30477806050325, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 204.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 115.35199321458863, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 230.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 130.05371783997737, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 256.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 144.75544246536614, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-18T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 65.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://web.archive.org/web/20200318191404/https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 15.87080674973203, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"09:40\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 92.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 22.463295707313026, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 109.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus;https://newsletter.lu.ch/inxmail/html_mail.jsp?params=7UGt4J1Fx6OIONHlV9upAAuOzkQ6ZmQA%2FxRrLjJkeDWZdweUdKfwhAE94i2Apium%2F6rIvcF2Z5MaTtV52A77W2jrwVmrkZ8UhFPVmHC4iuI%3D\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 26.61412208801217, \"ncumul_deceased_100k\": 0.24416625768818503}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 131.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 31.98577975715224, \"ncumul_deceased_100k\": 0.24416625768818503}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 156.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 38.08993619935686, \"ncumul_deceased_100k\": 0.24416625768818503}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 205.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.05408282607794, \"ncumul_deceased_100k\": 0.48833251537637007}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 228.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 55.669906752906186, \"ncumul_deceased_100k\": 0.48833251537637007}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 253.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 61.77406319511082, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-01T00:00:00\", \"time\": \"17:29\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-coronavirus-anzahl-der-getesteten-faelle-und-zwischenstand-kita-riehen-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.5134366367846545, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": \"17:15\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": 235.0, \"ncumul_conf\": 3.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-coronavirus-zwei-neue-positive-faelle-in-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.5403099103539633, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-03T00:00:00\", \"time\": \"17:30\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 3.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1234880556095213569?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.5403099103539633, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": \"17:20\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 3.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1235240377134862336?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.5403099103539633, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": \"17:15\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 8.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-coronavirus-fuenf-neue-positive-faelle-in-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 4.107493094277236, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 15.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1235934884167852035?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 7.701549551769816, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-07T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 21.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1236249864473894914?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 10.782169372477743, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-08T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 24.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1236609191831384064?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 12.322479282831706, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 28.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1236973685602426881?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 14.376225829970323, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-10T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 33.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1237336196772175873?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 16.943409013893596, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-11T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 37.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1237694819419422720?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 18.997155561032216, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 73.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 4.0, \"ncumul_deceased\": 1.0, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1238073089902235648?s=20   https://www.coronavirus.bs.ch/nm/2020-coronavirus-ende-der-quarantaenemassnahmen-im-fall-kita-riehen-gd.html   https://www.coronavirus.bs.ch/nm/2020-coronavirus-erster-todesfall-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 37.48087448527977, \"ncumul_deceased_100k\": 0.5134366367846545}, {\"date\": \"2020-03-13T00:00:00\", \"time\": \"12:30\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 92.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1238430659762364417?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 47.2361705841882, \"ncumul_deceased_100k\": 0.5134366367846545}, {\"date\": \"2020-03-14T00:00:00\", \"time\": \"11:27\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 100.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1238773726423941127?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 51.34366367846545, \"ncumul_deceased_100k\": 0.5134366367846545}, {\"date\": \"2020-03-16T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 144.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-144-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 73.93487569699023, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-17T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 165.0, \"ncumul_hosp\": 30.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 25.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-165-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 84.71704506946797, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-18T00:00:00\", \"time\": \"11:15\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 182.0, \"ncumul_hosp\": 40.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 36.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-182-bestaetigte-faelle-im-kanton-basel-stadt-treffen-mit-allen-spitaelern-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 93.4454678948071, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-19T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 222.0, \"ncumul_hosp\": 40.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 44.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-222-bestaetigte-faelle-basel-stadt-trifft-gemeinsam-mit-den-spitaelern-vorkehrungen-fuer-intensiv--und-beatmungskapazitaeten-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 113.98293336619327, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 272.0, \"ncumul_hosp\": 45.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 46.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-272-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 139.654765205426, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 299.0, \"ncumul_hosp\": 46.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 57.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-299-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 153.51755439861168, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"10:30\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 358.0, \"ncumul_hosp\": 50.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 73.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-358-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 183.81031596890628, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 376.0, \"ncumul_hosp\": 56.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 78.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-376-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 193.05217543103007, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"09:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 414.0, \"ncumul_hosp\": 58.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 105.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-414-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 212.56276762884693, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 466.0, \"ncumul_hosp\": 58.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 128.0, \"ncumul_deceased\": 8.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-466-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 239.26147274164893, \"ncumul_deceased_100k\": 4.107493094277236}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"10:30\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 505.0, \"ncumul_hosp\": 74.0, \"ncumul_ICU\": 8.0, \"ncumul_vent\": null, \"ncumul_released\": 155.0, \"ncumul_deceased\": 12.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-505-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 259.2855015762505, \"ncumul_deceased_100k\": 6.161239641415853}, {\"date\": \"2020-02-28T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/20200228_KFS_20200106_Coronavirus_Lagebulletin_AG_Unterschrieben.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.14744760817862393, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": \"18:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/200302_KFS_Coronavirus_Lagebulletin_2.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.29489521635724786, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-03T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200303_KFS_Coronavirus_Lagebulletin_3.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.8846856490717436, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 7.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200304_KFS_Coronavirus_Lagebulletin_4.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.0321332572503674, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 9.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200305_KFS_Coronavirus_Lagebulletin_5.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.3270284736076154, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 12.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 1.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200305_KFS_Coronavirus_Lagebulletin_6.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.7693712981434873, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 14.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 2.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200309_KFS_Coronavirus_Lagebulletin_7.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.064266514500735, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-10T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 17.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 2.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200310_KFS_Coronavirus_Lagebulletin_8.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.506609339036607, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-11T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 18.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 2.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200311_KFS_Coronavirus_Lagebulletin_9.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.654056947215231, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 27.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 3.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200312_KFS_Coronavirus_Lagebulletin_10.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.9810854208228466, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": \"13:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 32.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 3.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200313_KFS_Coronavirus_Lagebulletin_11.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 4.718323461715966, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-16T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 52.0, \"ncumul_hosp\": 2.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 4.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200316_KFS_Coronavirus_Lagebulletin_12.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 7.667275625288444, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-17T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 67.0, \"ncumul_hosp\": 2.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 4.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200317_KFS_Coronavirus_Lagebulletin_13.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.878989747967804, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 101.0, \"ncumul_hosp\": 6.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 4.0, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200318_KFS_Coronavirus_Lagebulletin_14.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 14.892208426041018, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 118.0, \"ncumul_hosp\": 17.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": 3.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200319_KFS_Coronavirus_Lagebulletin_15.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 17.398817765077624, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 168.0, \"ncumul_hosp\": 25.0, \"ncumul_ICU\": 4.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200320_KFS_Coronavirus_Lagebulletin_16.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 24.771198174008823, \"ncumul_deceased_100k\": 0.14744760817862393}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 232.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ag.ch/de/aktuelles/medienportal/medienmitteilung/medienmitteilungen/mediendetails_139237.jsp\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.20784509744075, \"ncumul_deceased_100k\": 0.14744760817862393}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 241.0, \"ncumul_hosp\": 10.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200323_KFS_Coronavirus_Lagebulletin_17.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 35.534873571048365, \"ncumul_deceased_100k\": 0.14744760817862393}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 266.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200324_KFS_Coronavirus_Lagebulletin_18.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 39.22106377551396, \"ncumul_deceased_100k\": 0.29489521635724786}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 319.0, \"ncumul_hosp\": 16.0, \"ncumul_ICU\": 5.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200325_KFS_Coronavirus_Lagebulletin_19.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 47.03578700898103, \"ncumul_deceased_100k\": 0.29489521635724786}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SZ\", \"ncumul_tested\": 1.0, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sz.ch/public/upload/assets/45351/MM_Coronavirus_4_3_2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6282788301448183, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SZ\", \"ncumul_tested\": 3.0, \"ncumul_conf\": 3.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sz.ch/public/upload/assets/45351/MM_Coronavirus_4_3_2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.8848364904344548, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SZ\", \"ncumul_tested\": 6.0, \"ncumul_conf\": 6.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sz.ch/public/upload/assets/45417/MM_Coronavirus_6_3_2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.7696729808689096, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"SZ\", \"ncumul_tested\": 10.0, \"ncumul_conf\": 9.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sz.ch/public/upload/assets/45585/MM_Coronavirus_13_03_2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.654509471303364, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-14T00:00:00\", \"time\": \"03:03\", \"abbreviation_canton_and_fl\": \"SZ\", \"ncumul_tested\": 1.0, \"ncumul_conf\": 12.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.bote.ch/nachrichten/schwyz/schwyz_bdu/coronavirus-einsatz-fuer-spitalbataillon-5;art146989,1229758\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 7.539345961737819, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SZ\", \"ncumul_tested\": null, \"ncumul_conf\": 13.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.sz.ch/public/upload/assets/45590/MM_Coronavirus_15_3_2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 8.167624791882638, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SZ\", \"ncumul_tested\": null, \"ncumul_conf\": 99.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 10.0, \"ncumul_deceased\": null, \"source\": \"https://www.sz.ch/behoerden/information-medien/medienmitteilungen/coronavirus.html/72-416-412-1379-6948\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 62.19960418433701, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"OW\", \"ncumul_tested\": 6.0, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ow.ch/de/aktuelles/aktuellesinformationen/amtsmitteilungen/welcome.php?action=showinfo&info_id=63566&ls=0&sq=&kategorie_id=&date_from=&date_to=\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.6426362939668615, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"OW\", \"ncumul_tested\": null, \"ncumul_conf\": 25.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ow.ch/de/verwaltung/dienstleistungen/?dienst_id=5962\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 66.06590734917152, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"OW\", \"ncumul_tested\": null, \"ncumul_conf\": 25.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ow.ch/de/verwaltung/dienstleistungen/?dienst_id=5962\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 66.06590734917152, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"OW\", \"ncumul_tested\": null, \"ncumul_conf\": 27.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ow.ch/de/verwaltung/dienstleistungen/?dienst_id=5962\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 71.35117993710526, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-26T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.200208216545207, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-27T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.200208216545207, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-28T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 3.0, \"ncumul_hosp\": 2.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6006246496356211, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-29T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 5.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.0010410827260352, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-01T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 7.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.401457515816449, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 7.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.401457515816449, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 9.0, \"ncumul_hosp\": 4.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.8018739489068631, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 9.0, \"ncumul_hosp\": 4.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.8018739489068631, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 13.0, \"ncumul_hosp\": 5.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.602706815087691, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 17.0, \"ncumul_hosp\": 7.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.4035396812685192, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-07T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 26.0, \"ncumul_hosp\": 7.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.205413630175382, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 35.0, \"ncumul_hosp\": 9.0, \"ncumul_ICU\": 0.0, \"ncumul_vent\": 0.0, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 7.007287579082246, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 44.0, \"ncumul_hosp\": 13.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 8.80916152798911, \"ncumul_deceased_100k\": 0.200208216545207}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 68.0, \"ncumul_hosp\": 18.0, \"ncumul_ICU\": 4.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 1.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 13.614158725074077, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 79.0, \"ncumul_hosp\": 20.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": 4.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 1.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 15.816449107071355, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 108.0, \"ncumul_hosp\": 23.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": 4.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 4.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 21.62248738688236, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 173.0, \"ncumul_hosp\": 33.0, \"ncumul_ICU\": 7.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 4.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.63602146232081, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 282.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": 8.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 5.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 56.458717065748374, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 372.0, \"ncumul_hosp\": 46.0, \"ncumul_ICU\": 12.0, \"ncumul_vent\": 8.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 5.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 74.47745655481701, \"ncumul_deceased_100k\": 0.800832866180828}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 472.0, \"ncumul_hosp\": 66.0, \"ncumul_ICU\": 10.0, \"ncumul_vent\": 9.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 4.0, \"ncumul_ICU_intub\": 8.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 94.49827820933771, \"ncumul_deceased_100k\": 0.800832866180828}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 619.0, \"ncumul_hosp\": 75.0, \"ncumul_ICU\": 19.0, \"ncumul_vent\": 17.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 9.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 123.92888604148315, \"ncumul_deceased_100k\": 0.800832866180828}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 751.0, \"ncumul_hosp\": 78.0, \"ncumul_ICU\": 20.0, \"ncumul_vent\": 17.0, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 17.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 150.35637062545047, \"ncumul_deceased_100k\": 1.0010410827260352}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 961.0, \"ncumul_hosp\": 92.0, \"ncumul_ICU\": 19.0, \"ncumul_vent\": 18.0, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 5.0, \"ncumul_ICU_intub\": 17.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 192.40009609994394, \"ncumul_deceased_100k\": 1.0010410827260352}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1136.0, \"ncumul_hosp\": 109.0, \"ncumul_ICU\": 22.0, \"ncumul_vent\": 21.0, \"ncumul_released\": null, \"ncumul_deceased\": 8.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 5.0, \"ncumul_ICU_intub\": 21.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 227.43653399535518, \"ncumul_deceased_100k\": 1.601665732361656}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1262.0, \"ncumul_hosp\": 145.0, \"ncumul_ICU\": 25.0, \"ncumul_vent\": 24.0, \"ncumul_released\": null, \"ncumul_deceased\": 10.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 13.0, \"ncumul_ICU_intub\": 24.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 252.66276928005126, \"ncumul_deceased_100k\": 2.0020821654520704}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1417.0, \"ncumul_hosp\": 179.0, \"ncumul_ICU\": 36.0, \"ncumul_vent\": 36.0, \"ncumul_released\": null, \"ncumul_deceased\": 9.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 6.0, \"ncumul_ICU_intub\": 36.0, \"ncumul_deceased_suspect\": 4.0, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 283.6950428445583, \"ncumul_deceased_100k\": 1.8018739489068631}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1509.0, \"ncumul_hosp\": 214.0, \"ncumul_ICU\": 43.0, \"ncumul_vent\": 41.0, \"ncumul_released\": null, \"ncumul_deceased\": 9.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 11.0, \"ncumul_ICU_intub\": 41.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 302.1141987667174, \"ncumul_deceased_100k\": 1.8018739489068631}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1598.0, \"ncumul_hosp\": 238.0, \"ncumul_ICU\": 41.0, \"ncumul_vent\": 41.0, \"ncumul_released\": 103.0, \"ncumul_deceased\": 12.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 21.0, \"ncumul_ICU_intub\": 41.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 319.9327300392408, \"ncumul_deceased_100k\": 2.4024985985424845}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1604.0, \"ncumul_hosp\": 258.0, \"ncumul_ICU\": 50.0, \"ncumul_vent\": 48.0, \"ncumul_released\": 122.0, \"ncumul_deceased\": 15.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 18.0, \"ncumul_ICU_intub\": 48.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 321.133979338512, \"ncumul_deceased_100k\": 3.003123248178105}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/direktionssekretariat/aktuell/coronavirus-sars-cov-2-erste-person-aus-dem-kanton-zug-infiziert\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.7884134755631242, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 3.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/direktionssekretariat/aktuell/coronavirus-sars-cov-2-zwei-weitere-faelle-im-kanton-zug\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.365240426689373, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 13.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/direktionssekretariat/aktuell/coronavirus-kanton-zug-stellt-sich-hinter-massnahmen-des-bundes\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 10.249375182320616, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 13.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://twitter.com/gesundZG/status/1238733148462157824?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 10.249375182320616, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 24.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/direktionssekretariat/aktuell/covid-19-zuger-spitaeler-bereiten-sich-gemeinsam-auf-herausfordernde-zeit-vor\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 18.921923413514985, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 48.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/direktionssekretariat/aktuell/coronavirus-ausreichende-testkapazitaeten-im-kanton-zug-vorhanden\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 37.84384682702997, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 62.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 10.0, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/amt-fuer-gesundheit/corona\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 48.8816354849137, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 72.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 12.0, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/amt-fuer-gesundheit/corona\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 56.76577024054495, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 80.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 18.0, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/amt-fuer-gesundheit/corona\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 63.07307804504995, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"ZG\", \"ncumul_tested\": null, \"ncumul_conf\": 87.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 15.0, \"ncumul_deceased\": null, \"source\": \"https://www.zg.ch/behoerden/gesundheitsdirektion/amt-fuer-gesundheit/corona\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 68.59197237399181, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 4.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/aktuellesinformationen/63359\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.254332184253753, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 25.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/gesundheitsamtdienste/6044\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 57.83957615158596, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"15:20\", \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 28.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/gesundheitsamtdienste/6044\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 64.78032528977629, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"18:15\", \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 33.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/gesundheitsamtdienste/6044\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 76.34824052009347, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"16:25\", \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 36.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/gesundheitsamtdienste/6044\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 83.28898965828378, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"19:00\", \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 39.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/gesundheitsamtdienste/6044\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 90.2297387964741, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"15:15\", \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 42.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/gesundheitsamtdienste/6044\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 97.17048793466441, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"15:30\", \"abbreviation_canton_and_fl\": \"NW\", \"ncumul_tested\": null, \"ncumul_conf\": 44.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.nw.ch/gesundheitsamtdienste/6044\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 101.79765402679129, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.srf.ch/news/schweiz/tessiner-patient-erster-coronavirus-fall-in-der-schweiz\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.2830111251673303, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187352&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=ea65dbcabb28d4711459f3b613bbc1b7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 6.0, \"TotalCured\": null, \"ncumul_conf_100k\": 0.5660222503346606, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 4.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187363&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=b34e82602a39cad67a7f8d54150dcf70   https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187369&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=3154d18e72821fc23d7b3c5cdfe9f9a3\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.1320445006693212, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 5.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187371&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=174f2d754f3b657af79f343c92fc5c89\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 18.0, \"TotalCured\": null, \"ncumul_conf_100k\": 1.4150556258366518, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 180.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187437&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=59cf6112c82abed490acd8901f5a0bb2\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.94200253011947, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 258.0, \"ncumul_hosp\": 65.0, \"ncumul_ICU\": 13.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.youtube.com/watch?v=_x_yQ6uwGAQ\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 73.01687029317122, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 265.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187466&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=1b10e6e8117296766155edcf9c317a4c\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 74.99794816934254, \"ncumul_deceased_100k\": 0.849033375501991}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 291.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187467&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=af5473066754ef4d1272e156056acc07\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 82.35623742369313, \"ncumul_deceased_100k\": 1.698066751003982}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 330.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 8.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187475&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=dee4a529abd4e9300e116c7ff4db5774\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 93.39367130521902, \"ncumul_deceased_100k\": 2.2640890013386423}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 422.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 10.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187486&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=d106aab74491da09b294ff13ffadd02f\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 119.43069482061341, \"ncumul_deceased_100k\": 2.8301112516733036}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 511.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 14.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187493&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=7803bbc03dd49ef2e421dfd6b12dd239\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 144.6186849605058, \"ncumul_deceased_100k\": 3.9621557523426247}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 638.0, \"ncumul_hosp\": 155.0, \"ncumul_ICU\": 33.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 15.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187499&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=634a783514bdcbb426c005f1ea916268 https://www.youtube.com/watch?v=34RQ7OOWYoI\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 180.56109785675676, \"ncumul_deceased_100k\": 4.245166877509955}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 834.0, \"ncumul_hosp\": 168.0, \"ncumul_ICU\": 35.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 22.0, \"source\": \"https://www4.ti.ch/dss/dsp/covid19/home/ https://www.youtube.com/watch?v=34RQ7OOWYoI\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 236.0312783895535, \"ncumul_deceased_100k\": 6.226244753681267}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 918.0, \"ncumul_hosp\": 184.0, \"ncumul_ICU\": 40.0, \"ncumul_vent\": 37.0, \"ncumul_released\": null, \"ncumul_deceased\": 28.0, \"source\": \"https://www4.ti.ch/dss/dsp/covid19/home/ https://www.youtube.com/watch?v=7g2sALU9bQM\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 259.8042129036092, \"ncumul_deceased_100k\": 7.9243115046852495}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 939.0, \"ncumul_hosp\": 246.0, \"ncumul_ICU\": 46.0, \"ncumul_vent\": 43.0, \"ncumul_released\": null, \"ncumul_deceased\": 37.0, \"source\": \"https://web.archive.org/web/20200322153528/https://www4.ti.ch/dss/dsp/covid19/home/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 265.74744653212315, \"ncumul_deceased_100k\": 10.471411631191222}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 1165.0, \"ncumul_hosp\": 261.0, \"ncumul_ICU\": 45.0, \"ncumul_vent\": 43.0, \"ncumul_released\": null, \"ncumul_deceased\": 48.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187510&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=0120f665ab49651b9d66c876ef272a91\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 329.70796081993984, \"ncumul_deceased_100k\": 13.584534008031856}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 1211.0, \"ncumul_hosp\": 285.0, \"ncumul_ICU\": 50.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 53.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187520&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=4d581f57e92de04937175bab9e5b0f14\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": 48.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 342.726472577637, \"ncumul_deceased_100k\": 14.999589633868506}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 1354.0, \"ncumul_hosp\": 306.0, \"ncumul_ICU\": 57.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 60.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187523&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=982795a2c13394282accc3a8506c9ba0\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": 55.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 383.19706347656523, \"ncumul_deceased_100k\": 16.98066751003982}, {\"date\": \"2020-03-01T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"FR\", \"ncumul_tested\": 30.0, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.fr.ch/sites/default/files/2020-03/200301_commd_dsas_covid_cas_fr.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.3137609267242732, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"FR\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.fr.ch/sites/default/files/2020-03/200302_CommD_DSAS_covid_cas%20FR.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 0.6275218534485464, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"FR\", \"ncumul_tested\": null, \"ncumul_conf\": 4.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.fr.ch/sites/default/files/2020-03/200304_CommD_DSAS_covid_cas%20FR.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.2550437068970928, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"FR\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.fr.ch/de/covid19/gesundheit/covid-19/coronavirus-entwicklungen-der-situation\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.882565560345639, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"FR\", \"ncumul_tested\": null, \"ncumul_conf\": 8.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.fr.ch/de/covid19/gesundheit/covid-19/coronavirus-entwicklungen-der-situation\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.5100874137941855, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"FR\", \"ncumul_tested\": null, \"ncumul_conf\": 11.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.fr.ch/de/covid19/gesundheit/covid-19/coronavirus-entwicklungen-der-situation\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.451370193967005, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": 246.0, \"ncumul_conf\": 17.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.148904771550103, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": 276.0, \"ncumul_conf\": 23.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 8.31910645562661, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 32.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 11.574408981741371, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 36.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 13.02121010445904, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 49.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 17.72331375329147, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 56.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 20.2552157180474, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 75.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 27.127521050956336, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 81.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 29.297722735032842, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 87.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552 & https://www.tg.ch/news/news-detailseite.html/485/news/44925\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 31.46792441910935, \"ncumul_deceased_100k\": 0.36170028067941784}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 96.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.72322694522411, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-26T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 110.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 39.78703087473596, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-27T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 2.0, \"TotalCured\": null, \"ncumul_conf_100k\": 0.06574760284240036, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-02-28T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 9.0, \"TotalCured\": null, \"ncumul_conf_100k\": 0.13149520568480072, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-02T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 13.0, \"TotalCured\": null, \"ncumul_conf_100k\": 0.13149520568480072, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": 400.0, \"ncumul_conf\": 9.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 19.0, \"TotalCured\": null, \"ncumul_conf_100k\": 0.5917284255816032, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 19.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 26.0, \"TotalCured\": null, \"ncumul_conf_100k\": 1.2492044540056069, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 26.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 30.0, \"TotalCured\": null, \"ncumul_conf_100k\": 1.7094376739024095, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-07T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 30.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 37.0, \"TotalCured\": null, \"ncumul_conf_100k\": 1.9724280852720109, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 37.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 40.0, \"TotalCured\": null, \"ncumul_conf_100k\": 2.4326613051688137, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": 855.0, \"ncumul_conf\": 40.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 49.0, \"TotalCured\": null, \"ncumul_conf_100k\": 2.6299041136960146, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 49.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": 59.0, \"TotalCured\": 1.0, \"ncumul_conf_100k\": 3.2216325392776177, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 59.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": 7.0, \"ncumul_conf_100k\": 3.8791085677016217, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 92.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": 11.0, \"ncumul_conf_100k\": 6.048779461500834, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 140.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.204664397936051, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 270.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 17.7518527674481, \"ncumul_deceased_100k\": 0.06574760284240036}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 294.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 19.329795235665706, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 424.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 27.876983605177756, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 526.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.58323909510259, \"ncumul_deceased_100k\": 0.1972428085272011}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 773.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.822896997175484, \"ncumul_deceased_100k\": 0.1972428085272011}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 1068.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 70.2184398356836, \"ncumul_deceased_100k\": 0.32873801421200183}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"9:30\", \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 1211.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 79.62034704214685, \"ncumul_deceased_100k\": 0.32873801421200183}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"9:30\", \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 1363.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 7.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 89.6139826741917, \"ncumul_deceased_100k\": 0.4602332198968026}, {\"date\": \"2020-03-03T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.3620452471431101, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-04T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 1.3620452471431101, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.7240904942862203, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 3.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 4.086135741429331, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-07T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 4.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.448180988572441, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 4.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.448180988572441, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 5.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.810226235715551, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 8.172271482858662, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 6.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 8.172271482858662, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 9.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 12.258407224287991, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 10.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 13.620452471431102, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 15.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 20.43067870714665, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 16.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 21.792723954289762, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 17.0, \"ncumul_hosp\": 7.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 23.15476920143287, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 24.0, \"ncumul_hosp\": 7.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 32.68908593143465, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 26.0, \"ncumul_hosp\": 6.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 35.41317642572086, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 31.0, \"ncumul_hosp\": 6.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 42.22340266143642, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 37.0, \"ncumul_hosp\": 5.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.39567414429507, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"18:00\", \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 49.0, \"ncumul_hosp\": 8.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Accueil/Coronavirus-Informations-officielles-a-la-population-jurassienne.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 66.7402171100124, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"17:00\", \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 51.0, \"ncumul_hosp\": 9.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Accueil/Coronavirus-Informations-officielles-a-la-population-jurassienne.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 69.46430760429861, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"18:00\", \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 57.0, \"ncumul_hosp\": 13.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Accueil/Coronavirus-Informations-officielles-a-la-population-jurassienne.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 77.63657908715727, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"17:00\", \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 66.0, \"ncumul_hosp\": 16.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Accueil/Coronavirus-Informations-officielles-a-la-population-jurassienne.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 89.89498631144527, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"18:00\", \"abbreviation_canton_and_fl\": \"JU\", \"ncumul_tested\": null, \"ncumul_conf\": 78.0, \"ncumul_hosp\": 16.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.jura.ch/fr/Autorites/Coronavirus/Chiffres/Evolution-des-cas-COVID-19-dans-le-Jura.html https://www.jura.ch/fr/Autorites/Coronavirus/Accueil/Coronavirus-Informations-officielles-a-la-population-jurassienne.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 106.23952927716257, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 23.0, \"ncumul_hosp\": 15.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.878075943664792, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-07T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 30.0, \"ncumul_hosp\": 16.0, \"ncumul_ICU\": 4.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.754012100432337, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 40.0, \"ncumul_hosp\": 22.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.005349467243116, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 51.0, \"ncumul_hosp\": 29.0, \"ncumul_ICU\": 5.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.381820570734973, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 77.0, \"ncumul_hosp\": 36.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.635297724442998, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 108.0, \"ncumul_hosp\": 38.0, \"ncumul_ICU\": 7.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 13.514443561556416, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 156.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": 8.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 19.520862922248153, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 204.0, \"ncumul_hosp\": 52.0, \"ncumul_ICU\": 10.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 2.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 25.527282282939893, \"ncumul_deceased_100k\": 0.2502674733621558}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 350.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": 14.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 3.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 43.79680783837727, \"ncumul_deceased_100k\": 0.3754012100432337}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 406.0, \"ncumul_hosp\": 62.0, \"ncumul_ICU\": 19.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.80429709251763, \"ncumul_deceased_100k\": 0.5005349467243116}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 508.0, \"ncumul_hosp\": 66.0, \"ncumul_ICU\": 27.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 63.567938233987576, \"ncumul_deceased_100k\": 0.6256686834053895}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 608.0, \"ncumul_hosp\": 95.0, \"ncumul_ICU\": 35.0, \"ncumul_vent\": null, \"ncumul_released\": 9.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 76.08131190209536, \"ncumul_deceased_100k\": 0.6256686834053895}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 796.0, \"ncumul_hosp\": 128.0, \"ncumul_ICU\": 34.0, \"ncumul_vent\": null, \"ncumul_released\": 16.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 99.60645439813801, \"ncumul_deceased_100k\": 0.6256686834053895}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1212.0, \"ncumul_hosp\": 140.0, \"ncumul_ICU\": 32.0, \"ncumul_vent\": null, \"ncumul_released\": 52.0, \"ncumul_deceased\": 7.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 151.66208885746641, \"ncumul_deceased_100k\": 0.8759361567675453}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1432.0, \"ncumul_hosp\": 152.0, \"ncumul_ICU\": 30.0, \"ncumul_vent\": null, \"ncumul_released\": 62.0, \"ncumul_deceased\": 12.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 179.19151092730357, \"ncumul_deceased_100k\": 1.5016048401729347}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1676.0, \"ncumul_hosp\": 175.0, \"ncumul_ICU\": 23.0, \"ncumul_vent\": null, \"ncumul_released\": 70.0, \"ncumul_deceased\": 15.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 209.72414267748655, \"ncumul_deceased_100k\": 1.8770060502161685}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1782.0, \"ncumul_hosp\": 203.0, \"ncumul_ICU\": 23.0, \"ncumul_vent\": null, \"ncumul_released\": 75.0, \"ncumul_deceased\": 16.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 222.98831876568082, \"ncumul_deceased_100k\": 2.0021397868972466}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 2162.0, \"ncumul_hosp\": 223.0, \"ncumul_ICU\": 41.0, \"ncumul_vent\": null, \"ncumul_released\": 91.0, \"ncumul_deceased\": 17.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 270.5391387044904, \"ncumul_deceased_100k\": 2.127273523578324}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 2234.0, \"ncumul_hosp\": 266.0, \"ncumul_ICU\": 46.0, \"ncumul_vent\": null, \"ncumul_released\": 100.0, \"ncumul_deceased\": 21.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 279.54876774552804, \"ncumul_deceased_100k\": 2.627808470302636}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"UR\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.489528723959048, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"UR\", \"ncumul_tested\": 85.0, \"ncumul_conf\": 5.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ur.ch/mmdirektionen/63802\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 13.723821809897618, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"UR\", \"ncumul_tested\": null, \"ncumul_conf\": 7.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ur.ch/mmdirektionen/63841\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 19.21335053385667, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"UR\", \"ncumul_tested\": null, \"ncumul_conf\": 7.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ur.ch/themen/2920\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 19.21335053385667, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"UR\", \"ncumul_tested\": null, \"ncumul_conf\": 12.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ur.ch/themen/2920\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 32.93717234375429, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"UR\", \"ncumul_tested\": null, \"ncumul_conf\": 22.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 1.0, \"ncumul_deceased\": null, \"source\": \"https://www.ur.ch/themen/2920\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 60.38481596354953, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"UR\", \"ncumul_tested\": null, \"ncumul_conf\": 25.0, \"ncumul_hosp\": 1.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 1.0, \"ncumul_deceased\": null, \"source\": \"https://www.ur.ch/themen/2920\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 68.6191090494881, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GL\", \"ncumul_tested\": null, \"ncumul_conf\": 10.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.suedostschweiz.ch/ereignisse/2020-03-20/die-zahl-der-corona-faelle-im-glarnerland-steigt-stark-an\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 24.750637328911218, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GL\", \"ncumul_tested\": null, \"ncumul_conf\": 17.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.suedostschweiz.ch/ereignisse/2020-03-20/die-zahl-der-corona-faelle-im-glarnerland-steigt-stark-an\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 42.076083459149075, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"13:30\", \"abbreviation_canton_and_fl\": \"GL\", \"ncumul_tested\": null, \"ncumul_conf\": 31.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.gl.ch/verwaltung/finanzen-und-gesundheit/gesundheit/coronavirus.html/4817#Fallzahlen\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 76.72697571962478, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"13:30\", \"abbreviation_canton_and_fl\": \"GL\", \"ncumul_tested\": null, \"ncumul_conf\": 33.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.gl.ch/verwaltung/finanzen-und-gesundheit/gesundheit/coronavirus.html/4817#Fallzahlen\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 81.67710318540702, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"13:30\", \"abbreviation_canton_and_fl\": \"GL\", \"ncumul_tested\": null, \"ncumul_conf\": 40.0, \"ncumul_hosp\": 2.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.gl.ch/verwaltung/finanzen-und-gesundheit/gesundheit/coronavirus.html/4817#Fallzahlen\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 99.00254931564487, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"13:30\", \"abbreviation_canton_and_fl\": \"GL\", \"ncumul_tested\": null, \"ncumul_conf\": 43.0, \"ncumul_hosp\": 2.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.gl.ch/verwaltung/finanzen-und-gesundheit/gesundheit/coronavirus.html/4817#Fallzahlen\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 106.42774051431824, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SH\", \"ncumul_tested\": null, \"ncumul_conf\": 14.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Departement-des-Innern/Gesundheitsamt-3209198-DE.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 17.075044821992655, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SH\", \"ncumul_tested\": null, \"ncumul_conf\": 30.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Departement-des-Innern/Gesundheitsamt-3209198-DE.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 36.58938176141284, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SH\", \"ncumul_tested\": null, \"ncumul_conf\": 32.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Departement-des-Innern/Gesundheitsamt-3209198-DE.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 39.02867387884036, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"SH\", \"ncumul_tested\": null, \"ncumul_conf\": 34.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Departement-des-Innern/Gesundheitsamt-3209198-DE.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 41.467965996267885, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"07:00\", \"abbreviation_canton_and_fl\": \"SH\", \"ncumul_tested\": null, \"ncumul_conf\": 35.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://sh.ch/CMS/Webseite/Kanton-Schaffhausen/Beh-rde/Verwaltung/Departement-des-Innern/Gesundheitsamt-3209198-DE.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 42.68761205498165, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-05T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 1.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/news-aus-dem-departement/detail/news/coronavirusersterfallinappenzellausserrhoden/?tx_news_pi1[controller]=News&tx_news_pi1[action]=detail&cHash=fb1a9cf08108cdc7b82780b9239b009d\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.193868070610096, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 2.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ar.ch/schnellzugriff/medienmitteilungen-der-kantonalen-verwaltung/detail/news/zweiter-coronafall-in-appenzell-ausserrhoden/?tx_news_pi1[controller]=News&tx_news_pi1[action]=detail&cHash=de7ec38198b5e60b6dce8fccc7735501\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 12.387736141220191, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 5.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ar.ch/schnellzugriff/medienmitteilungen-der-kantonalen-verwaltung/detail/news/coronavirus-drei-neue-faelle-in-appenzell-ausserrhoden/?tx_news_pi1[controller]=News&tx_news_pi1[action]=detail&cHash=272411484066c8fb971dcc838aa96ef9\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 30.96934035305048, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 11.0, \"ncumul_hosp\": 3.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": null, \"source\": \"https://www.ar.ch/schnellzugriff/medienmitteilungen-der-kantonalen-verwaltung/detail/news/coronavirus-bevoelkerung-und-alle-spitaeler-machen-bei-der-gesundheitsversorgung-mit/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail&cHash=3d2a0733446b5fc7cdad0f48f61c28fd\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 68.13254877671105, \"ncumul_deceased_100k\": null}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 30.0, \"ncumul_hosp\": 7.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 185.81604211830287, \"ncumul_deceased_100k\": 6.193868070610096}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 33.0, \"ncumul_hosp\": 6.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 204.39764633013317, \"ncumul_deceased_100k\": 12.387736141220191}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": 57.0, \"ncumul_conf\": 34.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 210.59151440074325, \"ncumul_deceased_100k\": 12.387736141220191}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"09:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 40.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 247.75472282440384, \"ncumul_deceased_100k\": 12.387736141220191}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.HConcatChart(...)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "ename": "ImportError",
     "evalue": "selenium package is required for saving chart as svg",
     "output_type": "error",
     "traceback": [
      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[0;31mModuleNotFoundError\u001b[0m                       Traceback (most recent call last)",
      "\u001b[0;32m/opt/conda/lib/python3.7/site-packages/altair/utils/headless.py\u001b[0m in \u001b[0;36mcompile_spec\u001b[0;34m(spec, format, mode, vega_version, vegaembed_version, vegalite_version, scale_factor, driver_timeout, webdriver)\u001b[0m\n\u001b[1;32m    114\u001b[0m     \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 115\u001b[0;31m         \u001b[0;32mimport\u001b[0m \u001b[0mselenium\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwebdriver\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m    116\u001b[0m     \u001b[0;32mexcept\u001b[0m \u001b[0mImportError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'selenium'",
      "\nDuring handling of the above exception, another exception occurred:\n",
      "\u001b[0;31mImportError\u001b[0m                               Traceback (most recent call last)",
      "\u001b[0;32m<ipython-input-10-06ee86bb9189>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m     15\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     16\u001b[0m \u001b[0mchart\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msave\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mPath\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfigures_path\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m/\u001b[0m \u001b[0;34m'switzerland-cases-by-canton.html'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 17\u001b[0;31m \u001b[0mchart\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msave\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mPath\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfigures_path\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m/\u001b[0m \u001b[0;34m'switzerland-cases-by-canton.svg'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m     18\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     19\u001b[0m \u001b[0mdisplay\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mhtml_credits\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m/opt/conda/lib/python3.7/site-packages/altair/vegalite/v4/api.py\u001b[0m in \u001b[0;36msave\u001b[0;34m(self, fp, format, override_data_transformer, scale_factor, vegalite_version, vega_version, vegaembed_version, **kwargs)\u001b[0m\n\u001b[1;32m    445\u001b[0m         \u001b[0;32mif\u001b[0m \u001b[0moverride_data_transformer\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    446\u001b[0m             \u001b[0;32mwith\u001b[0m \u001b[0mdata_transformers\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdisable_max_rows\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 447\u001b[0;31m                 \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msave\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mkwds\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m    448\u001b[0m         \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    449\u001b[0m             \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msave\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mkwds\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m/opt/conda/lib/python3.7/site-packages/altair/utils/save.py\u001b[0m in \u001b[0;36msave\u001b[0;34m(chart, fp, vega_version, vegaembed_version, format, mode, vegalite_version, embed_options, json_kwds, webdriver, scale_factor, **kwargs)\u001b[0m\n\u001b[1;32m    100\u001b[0m                                         \u001b[0mvegaembed_version\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvegaembed_version\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    101\u001b[0m                                         \u001b[0mwebdriver\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mwebdriver\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 102\u001b[0;31m                                         scale_factor=scale_factor, **kwargs)\n\u001b[0m\u001b[1;32m    103\u001b[0m         \u001b[0;32mif\u001b[0m \u001b[0mformat\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'png'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    104\u001b[0m             \u001b[0mwrite_file_or_filename\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmimebundle\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'image/png'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmode\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'wb'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m/opt/conda/lib/python3.7/site-packages/altair/utils/mimebundle.py\u001b[0m in \u001b[0;36mspec_to_mimebundle\u001b[0;34m(spec, format, mode, vega_version, vegaembed_version, vegalite_version, **kwargs)\u001b[0m\n\u001b[1;32m     54\u001b[0m                               \u001b[0mvega_version\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvega_version\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     55\u001b[0m                               \u001b[0mvegaembed_version\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvegaembed_version\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 56\u001b[0;31m                               vegalite_version=vegalite_version, **kwargs)\n\u001b[0m\u001b[1;32m     57\u001b[0m         \u001b[0;32mif\u001b[0m \u001b[0mformat\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'png'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     58\u001b[0m             \u001b[0mrender\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbase64\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mb64decode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrender\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msplit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m','\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mencode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m/opt/conda/lib/python3.7/site-packages/altair/utils/headless.py\u001b[0m in \u001b[0;36mcompile_spec\u001b[0;34m(spec, format, mode, vega_version, vegaembed_version, vegalite_version, scale_factor, driver_timeout, webdriver)\u001b[0m\n\u001b[1;32m    116\u001b[0m     \u001b[0;32mexcept\u001b[0m \u001b[0mImportError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    117\u001b[0m         raise ImportError(\"selenium package is required \"\n\u001b[0;32m--> 118\u001b[0;31m                           \"for saving chart as {}\".format(format))\n\u001b[0m\u001b[1;32m    119\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    120\u001b[0m     \u001b[0;32mif\u001b[0m \u001b[0mformat\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32min\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;34m'png'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'svg'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'vega'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;31mImportError\u001b[0m: selenium package is required for saving chart as svg"
     ]
    }
   ],
   "source": [
    "base = alt.Chart(df.where(df.ncumul_conf>0).dropna(subset=['abbreviation_canton_and_fl']))\n",
    "base.configure_header(titleFontSize=25)\n",
    "base.configure_axis(labelFontSize=15, titleFontSize=15)\n",
    "\n",
    "cumul = generate_canton_chart('ncumul_conf', 'Cases', 'Cases')\n",
    "cumul_100k = generate_canton_chart('ncumul_conf_100k', 'Cases per 100k population', 'Cases/100k')\n",
    "\n",
    "chart = alt.hconcat(\n",
    "    cumul, cumul_100k, title='Covid-19 cases in Switzerland by Canton'\n",
    ").configure_title(\n",
    "    anchor='middle'\n",
    ")\n",
    "\n",
    "display(chart)\n",
    "if save_figures:\n",
    "    chart.save(str(Path(figures_path) / 'switzerland-cases-by-canton.html'))\n",
    "    \n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Deaths"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-b4142f67daa44fc1981f6562f0d754e7\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-b4142f67daa44fc1981f6562f0d754e7\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}, \"title\": {\"anchor\": \"middle\"}}, \"hconcat\": [{\"mark\": \"line\", \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"legend\": {\"title\": \"Canton\"}}, \"opacity\": {\"condition\": {\"value\": 1, \"selection\": \"selector003\"}, \"value\": 0.2}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"title\": \"Canton\"}, {\"type\": \"quantitative\", \"field\": \"ncumul_deceased\", \"title\": \"Deaths\"}, {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}], \"x\": {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"ncumul_deceased\", \"scale\": {\"type\": \"linear\"}, \"title\": \"Deaths\"}}, \"selection\": {\"selector003\": {\"type\": \"multi\", \"fields\": [\"abbreviation_canton_and_fl\"], \"bind\": \"legend\"}}}, {\"mark\": \"line\", \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"legend\": {\"title\": \"Canton\"}}, \"opacity\": {\"condition\": {\"value\": 1, \"selection\": \"selector004\"}, \"value\": 0.2}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"abbreviation_canton_and_fl\", \"title\": \"Canton\"}, {\"type\": \"quantitative\", \"field\": \"ncumul_deceased_100k\", \"title\": \"Deaths/100k\"}, {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}], \"x\": {\"type\": \"temporal\", \"field\": \"date\", \"title\": \"Date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"ncumul_deceased_100k\", \"scale\": {\"type\": \"linear\"}, \"title\": \"Deaths per 100k population\"}}, \"selection\": {\"selector004\": {\"type\": \"multi\", \"fields\": [\"abbreviation_canton_and_fl\"], \"bind\": \"legend\"}}}], \"data\": {\"name\": \"data-ece5694c273a008a74c98162a881ea53\"}, \"title\": \"Covid-19 deaths in Switzerland by Canton\", \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-ece5694c273a008a74c98162a881ea53\": [{\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 76.0, \"ncumul_hosp\": 17.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 22.09591370964225, \"ncumul_deceased_100k\": 0.2907357067058191}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 98.0, \"ncumul_hosp\": 22.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 28.49209925717027, \"ncumul_deceased_100k\": 0.2907357067058191}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 116.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": 1.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 33.72534197787501, \"ncumul_deceased_100k\": 0.5814714134116382}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 173.0, \"ncumul_hosp\": 29.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.vs.ch/de/web/coronavirus/info?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_delta=5&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_1rjMHS5sCcaN_cur=2#collapse6927494\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.297277260106696, \"ncumul_deceased_100k\": 0.8722071201174572}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 225.0, \"ncumul_hosp\": 33.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 65.41553400880929, \"ncumul_deceased_100k\": 0.8722071201174572}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 311.0, \"ncumul_hosp\": 42.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.vs.ch/de/web/coronavirus#collapse6955818\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 90.41880478550974, \"ncumul_deceased_100k\": 1.1629428268232764}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 346.0, \"ncumul_hosp\": 47.0, \"ncumul_ICU\": 5.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 100.59455452021339, \"ncumul_deceased_100k\": 1.7444142402349143}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 433.0, \"ncumul_hosp\": 55.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 7.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 125.88856100361967, \"ncumul_deceased_100k\": 2.0351499469407335}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 490.0, \"ncumul_hosp\": 64.0, \"ncumul_ICU\": 7.0, \"ncumul_vent\": 6.0, \"ncumul_released\": null, \"ncumul_deceased\": 10.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 142.46049628585135, \"ncumul_deceased_100k\": 2.9073570670581907}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 527.0, \"ncumul_hosp\": 70.0, \"ncumul_ICU\": 10.0, \"ncumul_vent\": 7.0, \"ncumul_released\": null, \"ncumul_deceased\": 12.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 153.21771743396664, \"ncumul_deceased_100k\": 3.4888284804698286}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 606.0, \"ncumul_hosp\": 80.0, \"ncumul_ICU\": 11.0, \"ncumul_vent\": 9.0, \"ncumul_released\": null, \"ncumul_deceased\": 13.0, \"source\": \"https://www.vs.ch/de/web/coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 176.18583826372634, \"ncumul_deceased_100k\": 3.7795641871756476}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"VS\", \"ncumul_tested\": null, \"ncumul_conf\": 651.0, \"ncumul_hosp\": 84.0, \"ncumul_ICU\": 11.0, \"ncumul_vent\": 9.0, \"ncumul_released\": null, \"ncumul_deceased\": 14.0, \"source\": \"https://www.vs.ch/documents/6756452/7008787/Sit%20Epid%20-%20%C3%89tat%20Stand%2025.03.2020.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 189.26894506548823, \"ncumul_deceased_100k\": 4.070299893881467}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 116.0, \"ncumul_hosp\": 13.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 58.473931212477126, \"ncumul_deceased_100k\": 0.5040856139006649}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 145.0, \"ncumul_hosp\": 18.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 73.0924140155964, \"ncumul_deceased_100k\": 0.5040856139006649}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 213.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 107.37023576084161, \"ncumul_deceased_100k\": 1.5122568417019946}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 239.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 120.4764617222589, \"ncumul_deceased_100k\": 1.5122568417019946}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 266.0, \"ncumul_hosp\": 27.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 134.08677329757685, \"ncumul_deceased_100k\": 3.024513683403989}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 276.0, \"ncumul_hosp\": 29.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 139.12762943658353, \"ncumul_deceased_100k\": 3.024513683403989}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GR\", \"ncumul_tested\": null, \"ncumul_conf\": 322.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.gr.ch/DE/institutionen/verwaltung/djsg/ga/coronavirus/info/Seiten/Start.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 162.3155676760141, \"ncumul_deceased_100k\": 3.024513683403989}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 123.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 11.884322067060427, \"ncumul_deceased_100k\": 0.09662050461024736}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 193.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 18.647757389777745, \"ncumul_deceased_100k\": 0.09662050461024736}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 282.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 27.24698230008976, \"ncumul_deceased_100k\": 0.09662050461024736}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 377.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 36.42593023806326, \"ncumul_deceased_100k\": 0.19324100922049472}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 418.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 40.3873709270834, \"ncumul_deceased_100k\": 0.28986151383074216}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 470.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 45.41163716681627, \"ncumul_deceased_100k\": 0.48310252305123685}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 532.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 51.4021084526516, \"ncumul_deceased_100k\": 0.5797230276614843}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 624.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 60.29119487679437, \"ncumul_deceased_100k\": 0.5797230276614843}, {\"date\": \"2020-03-26T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BE\", \"ncumul_tested\": null, \"ncumul_conf\": 660.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 7.0, \"source\": \"https://www.besondere-lage.sites.be.ch/besondere-lage_sites/de/index/corona/index.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 63.76953304276327, \"ncumul_deceased_100k\": 0.6763435322717316}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 19.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/patient-im-kantonsspital-baselland-stirbt-an-den-folgen-einer-coronavirus-infektion\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.594199880610277, \"ncumul_deceased_100k\": 0.34706315161106716}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 20.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-xx-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.941263032221343, \"ncumul_deceased_100k\": 0.34706315161106716}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 22.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 7.635389335443477, \"ncumul_deceased_100k\": 0.34706315161106716}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 26.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-26-bestaetigte-faelle-in-basel-landschaft-1\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.023641941887746, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 26.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": null, \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.023641941887746, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 42.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-26-bestaetigte-faelle-in-basel-landschaft-2\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 14.576652367664822, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 47.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-47-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 16.311968125720156, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 54.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-54-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 18.741410186997626, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 76.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-67-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 26.376799522441107, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 89.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-89-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 30.888620493384977, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 116.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-116-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 40.25932558688379, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 134.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-131-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 46.506462315883, \"ncumul_deceased_100k\": 0.6941263032221343}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 184.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-170-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 63.859619896436364, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 282.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-282-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 97.87180875432094, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 289.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-289-bestaetigte-faelle-in-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 100.30125081559841, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 302.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/medienmitteilungen/update-289-bestaetigte-faelle-in-basel-landschaft-1\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 104.81307178654227, \"ncumul_deceased_100k\": 1.0411894548332015}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"15:30\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 306.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fur-gesundheit/medizinische-dienste/kantonsarztlicher-dienst/aktuelles/covid-19-faelle-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 106.20132439298655, \"ncumul_deceased_100k\": 1.3882526064442686}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 341.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fur-gesundheit/medizinische-dienste/kantonsarztlicher-dienst/aktuelles/covid-19-faelle-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 118.3485346993739, \"ncumul_deceased_100k\": 1.7353157580553358}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"BL\", \"ncumul_tested\": null, \"ncumul_conf\": 422.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.baselland.ch/politik-und-behorden/direktionen/volkswirtschafts-und-gesundheitsdirektion/amt-fur-gesundheit/medizinische-dienste/kantonsarztlicher-dienst/aktuelles/covid-19-faelle-kanton-basel-landschaft\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 146.46064997987034, \"ncumul_deceased_100k\": 1.7353157580553358}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 95.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.77382372965731, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"00:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 104.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 38.06818597773011, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"00:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 129.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 47.219192222376776, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"00:00\", \"abbreviation_canton_and_fl\": \"SO\", \"ncumul_tested\": null, \"ncumul_conf\": 141.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://corona.so.ch/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 51.61167521980717, \"ncumul_deceased_100k\": 0.36604024978586647}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 228.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 44.90867584405659, \"ncumul_deceased_100k\": 0.19696787650902012}, {\"date\": \"2020-03-25T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 228.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 44.90867584405659, \"ncumul_deceased_100k\": 0.19696787650902012}, {\"date\": \"2020-03-26T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"SG\", \"ncumul_tested\": null, \"ncumul_conf\": 280.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.sg.ch/tools/informationen-coronavirus.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 55.15100542252564, \"ncumul_deceased_100k\": 0.19696787650902012}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"16:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 159.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 89.90670059372349, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"15:30\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 177.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 100.08481764206955, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 188.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 106.30477806050325, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 204.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 115.35199321458863, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 230.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 130.05371783997737, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"14:00\", \"abbreviation_canton_and_fl\": \"NE\", \"ncumul_tested\": null, \"ncumul_conf\": 256.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ne.ch/autorites/DFS/SCSP/medecin-cantonal/maladies-vaccinations/Pages/Coronavirus.aspx\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 144.75544246536614, \"ncumul_deceased_100k\": 1.130901894260673}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 109.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus;https://newsletter.lu.ch/inxmail/html_mail.jsp?params=7UGt4J1Fx6OIONHlV9upAAuOzkQ6ZmQA%2FxRrLjJkeDWZdweUdKfwhAE94i2Apium%2F6rIvcF2Z5MaTtV52A77W2jrwVmrkZ8UhFPVmHC4iuI%3D\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 26.61412208801217, \"ncumul_deceased_100k\": 0.24416625768818503}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 131.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 31.98577975715224, \"ncumul_deceased_100k\": 0.24416625768818503}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 156.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 38.08993619935686, \"ncumul_deceased_100k\": 0.24416625768818503}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 205.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.05408282607794, \"ncumul_deceased_100k\": 0.48833251537637007}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"LU\", \"ncumul_tested\": null, \"ncumul_conf\": 228.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://gesundheit.lu.ch/themen/Humanmedizin/Infektionskrankheiten/Coronavirus\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 55.669906752906186, \"ncumul_deceased_100k\": 0.48833251537637007}, {\"date\": \"2020-03-12T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 73.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 4.0, \"ncumul_deceased\": 1.0, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1238073089902235648?s=20   https://www.coronavirus.bs.ch/nm/2020-coronavirus-ende-der-quarantaenemassnahmen-im-fall-kita-riehen-gd.html   https://www.coronavirus.bs.ch/nm/2020-coronavirus-erster-todesfall-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 37.48087448527977, \"ncumul_deceased_100k\": 0.5134366367846545}, {\"date\": \"2020-03-13T00:00:00\", \"time\": \"12:30\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 92.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1238430659762364417?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 47.2361705841882, \"ncumul_deceased_100k\": 0.5134366367846545}, {\"date\": \"2020-03-14T00:00:00\", \"time\": \"11:27\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 100.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://twitter.com/BAG_OFSP_UFSP/status/1238773726423941127?s=20\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 51.34366367846545, \"ncumul_deceased_100k\": 0.5134366367846545}, {\"date\": \"2020-03-16T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 144.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-144-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 73.93487569699023, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-17T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 165.0, \"ncumul_hosp\": 30.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 25.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-165-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 84.71704506946797, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-18T00:00:00\", \"time\": \"11:15\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 182.0, \"ncumul_hosp\": 40.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 36.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-182-bestaetigte-faelle-im-kanton-basel-stadt-treffen-mit-allen-spitaelern-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 93.4454678948071, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-19T00:00:00\", \"time\": \"11:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 222.0, \"ncumul_hosp\": 40.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 44.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-222-bestaetigte-faelle-basel-stadt-trifft-gemeinsam-mit-den-spitaelern-vorkehrungen-fuer-intensiv--und-beatmungskapazitaeten-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 113.98293336619327, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 272.0, \"ncumul_hosp\": 45.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 46.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-272-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 139.654765205426, \"ncumul_deceased_100k\": 2.053746547138618}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 299.0, \"ncumul_hosp\": 46.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 57.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-299-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 153.51755439861168, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"10:30\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 358.0, \"ncumul_hosp\": 50.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 73.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-358-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 183.81031596890628, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 376.0, \"ncumul_hosp\": 56.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 78.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-376-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 193.05217543103007, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"09:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 414.0, \"ncumul_hosp\": 58.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 105.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-414-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 212.56276762884693, \"ncumul_deceased_100k\": 2.567183183923272}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 466.0, \"ncumul_hosp\": 58.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": 128.0, \"ncumul_deceased\": 8.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-466-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 239.26147274164893, \"ncumul_deceased_100k\": 4.107493094277236}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"10:30\", \"abbreviation_canton_and_fl\": \"BS\", \"ncumul_tested\": null, \"ncumul_conf\": 505.0, \"ncumul_hosp\": 74.0, \"ncumul_ICU\": 8.0, \"ncumul_vent\": null, \"ncumul_released\": 155.0, \"ncumul_deceased\": 12.0, \"source\": \"https://www.coronavirus.bs.ch/nm/2020-tagesbulletin-coronavirus-505-bestaetigte-faelle-im-kanton-basel-stadt-gd.html\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 259.2855015762505, \"ncumul_deceased_100k\": 6.161239641415853}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 168.0, \"ncumul_hosp\": 25.0, \"ncumul_ICU\": 4.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200320_KFS_Coronavirus_Lagebulletin_16.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 24.771198174008823, \"ncumul_deceased_100k\": 0.14744760817862393}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 232.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ag.ch/de/aktuelles/medienportal/medienmitteilung/medienmitteilungen/mediendetails_139237.jsp\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.20784509744075, \"ncumul_deceased_100k\": 0.14744760817862393}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 241.0, \"ncumul_hosp\": 10.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200323_KFS_Coronavirus_Lagebulletin_17.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 35.534873571048365, \"ncumul_deceased_100k\": 0.14744760817862393}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 266.0, \"ncumul_hosp\": 24.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": 2.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200324_KFS_Coronavirus_Lagebulletin_18.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 39.22106377551396, \"ncumul_deceased_100k\": 0.29489521635724786}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"15:00\", \"abbreviation_canton_and_fl\": \"AG\", \"ncumul_tested\": null, \"ncumul_conf\": 319.0, \"ncumul_hosp\": 16.0, \"ncumul_ICU\": 5.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ag.ch/media/kanton_aargau/themen_1/coronavirus_1/lagebulletins/200325_KFS_Coronavirus_Lagebulletin_19.pdf\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 47.03578700898103, \"ncumul_deceased_100k\": 0.29489521635724786}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 44.0, \"ncumul_hosp\": 13.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 0.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 8.80916152798911, \"ncumul_deceased_100k\": 0.200208216545207}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 68.0, \"ncumul_hosp\": 18.0, \"ncumul_ICU\": 4.0, \"ncumul_vent\": 1.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 1.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 13.614158725074077, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 79.0, \"ncumul_hosp\": 20.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": 4.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 1.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 15.816449107071355, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 108.0, \"ncumul_hosp\": 23.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": 4.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 4.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 21.62248738688236, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 173.0, \"ncumul_hosp\": 33.0, \"ncumul_ICU\": 7.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 0.0, \"ncumul_ICU_intub\": 4.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.63602146232081, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 282.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": 8.0, \"ncumul_vent\": 5.0, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 5.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 56.458717065748374, \"ncumul_deceased_100k\": 0.400416433090414}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 372.0, \"ncumul_hosp\": 46.0, \"ncumul_ICU\": 12.0, \"ncumul_vent\": 8.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 5.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 74.47745655481701, \"ncumul_deceased_100k\": 0.800832866180828}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 472.0, \"ncumul_hosp\": 66.0, \"ncumul_ICU\": 10.0, \"ncumul_vent\": 9.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 4.0, \"ncumul_ICU_intub\": 8.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 94.49827820933771, \"ncumul_deceased_100k\": 0.800832866180828}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 619.0, \"ncumul_hosp\": 75.0, \"ncumul_ICU\": 19.0, \"ncumul_vent\": 17.0, \"ncumul_released\": null, \"ncumul_deceased\": 4.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 9.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 123.92888604148315, \"ncumul_deceased_100k\": 0.800832866180828}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 751.0, \"ncumul_hosp\": 78.0, \"ncumul_ICU\": 20.0, \"ncumul_vent\": 17.0, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 2.0, \"ncumul_ICU_intub\": 17.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 150.35637062545047, \"ncumul_deceased_100k\": 1.0010410827260352}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 961.0, \"ncumul_hosp\": 92.0, \"ncumul_ICU\": 19.0, \"ncumul_vent\": 18.0, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 5.0, \"ncumul_ICU_intub\": 17.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 192.40009609994394, \"ncumul_deceased_100k\": 1.0010410827260352}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1136.0, \"ncumul_hosp\": 109.0, \"ncumul_ICU\": 22.0, \"ncumul_vent\": 21.0, \"ncumul_released\": null, \"ncumul_deceased\": 8.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 5.0, \"ncumul_ICU_intub\": 21.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 227.43653399535518, \"ncumul_deceased_100k\": 1.601665732361656}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1262.0, \"ncumul_hosp\": 145.0, \"ncumul_ICU\": 25.0, \"ncumul_vent\": 24.0, \"ncumul_released\": null, \"ncumul_deceased\": 10.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 13.0, \"ncumul_ICU_intub\": 24.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 252.66276928005126, \"ncumul_deceased_100k\": 2.0020821654520704}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1417.0, \"ncumul_hosp\": 179.0, \"ncumul_ICU\": 36.0, \"ncumul_vent\": 36.0, \"ncumul_released\": null, \"ncumul_deceased\": 9.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 6.0, \"ncumul_ICU_intub\": 36.0, \"ncumul_deceased_suspect\": 4.0, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 283.6950428445583, \"ncumul_deceased_100k\": 1.8018739489068631}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1509.0, \"ncumul_hosp\": 214.0, \"ncumul_ICU\": 43.0, \"ncumul_vent\": 41.0, \"ncumul_released\": null, \"ncumul_deceased\": 9.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 11.0, \"ncumul_ICU_intub\": 41.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 302.1141987667174, \"ncumul_deceased_100k\": 1.8018739489068631}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1598.0, \"ncumul_hosp\": 238.0, \"ncumul_ICU\": 41.0, \"ncumul_vent\": 41.0, \"ncumul_released\": 103.0, \"ncumul_deceased\": 12.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 21.0, \"ncumul_ICU_intub\": 41.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 319.9327300392408, \"ncumul_deceased_100k\": 2.4024985985424845}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"12:00\", \"abbreviation_canton_and_fl\": \"GE\", \"ncumul_tested\": null, \"ncumul_conf\": 1604.0, \"ncumul_hosp\": 258.0, \"ncumul_ICU\": 50.0, \"ncumul_vent\": 48.0, \"ncumul_released\": 122.0, \"ncumul_deceased\": 15.0, \"source\": \"https://www.ge.ch/document/covid-19-situation-epidemiologique-geneve/telecharger\", \"ncumul_ICF\": 18.0, \"ncumul_ICU_intub\": 48.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 321.133979338512, \"ncumul_deceased_100k\": 3.003123248178105}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": null, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187422&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=24aa247e65de88fdd1551a61fcc407d9\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": null, \"ncumul_deceased_100k\": 0.2830111251673303}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 265.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187466&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=1b10e6e8117296766155edcf9c317a4c\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 74.99794816934254, \"ncumul_deceased_100k\": 0.849033375501991}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 291.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 6.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187467&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=af5473066754ef4d1272e156056acc07\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 82.35623742369313, \"ncumul_deceased_100k\": 1.698066751003982}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 330.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 8.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187475&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=dee4a529abd4e9300e116c7ff4db5774\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 93.39367130521902, \"ncumul_deceased_100k\": 2.2640890013386423}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 422.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 10.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187486&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=d106aab74491da09b294ff13ffadd02f\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 119.43069482061341, \"ncumul_deceased_100k\": 2.8301112516733036}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 511.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 14.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187493&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=7803bbc03dd49ef2e421dfd6b12dd239\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 144.6186849605058, \"ncumul_deceased_100k\": 3.9621557523426247}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 638.0, \"ncumul_hosp\": 155.0, \"ncumul_ICU\": 33.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 15.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187499&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=634a783514bdcbb426c005f1ea916268 https://www.youtube.com/watch?v=34RQ7OOWYoI\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 180.56109785675676, \"ncumul_deceased_100k\": 4.245166877509955}, {\"date\": \"2020-03-20T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 834.0, \"ncumul_hosp\": 168.0, \"ncumul_ICU\": 35.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 22.0, \"source\": \"https://www4.ti.ch/dss/dsp/covid19/home/ https://www.youtube.com/watch?v=34RQ7OOWYoI\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 236.0312783895535, \"ncumul_deceased_100k\": 6.226244753681267}, {\"date\": \"2020-03-21T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 918.0, \"ncumul_hosp\": 184.0, \"ncumul_ICU\": 40.0, \"ncumul_vent\": 37.0, \"ncumul_released\": null, \"ncumul_deceased\": 28.0, \"source\": \"https://www4.ti.ch/dss/dsp/covid19/home/ https://www.youtube.com/watch?v=7g2sALU9bQM\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 259.8042129036092, \"ncumul_deceased_100k\": 7.9243115046852495}, {\"date\": \"2020-03-22T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 939.0, \"ncumul_hosp\": 246.0, \"ncumul_ICU\": 46.0, \"ncumul_vent\": 43.0, \"ncumul_released\": null, \"ncumul_deceased\": 37.0, \"source\": \"https://web.archive.org/web/20200322153528/https://www4.ti.ch/dss/dsp/covid19/home/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 265.74744653212315, \"ncumul_deceased_100k\": 10.471411631191222}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 1165.0, \"ncumul_hosp\": 261.0, \"ncumul_ICU\": 45.0, \"ncumul_vent\": 43.0, \"ncumul_released\": null, \"ncumul_deceased\": 48.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187510&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=0120f665ab49651b9d66c876ef272a91\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 329.70796081993984, \"ncumul_deceased_100k\": 13.584534008031856}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 1211.0, \"ncumul_hosp\": 285.0, \"ncumul_ICU\": 50.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 53.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187520&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=4d581f57e92de04937175bab9e5b0f14\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": 48.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 342.726472577637, \"ncumul_deceased_100k\": 14.999589633868506}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"TI\", \"ncumul_tested\": null, \"ncumul_conf\": 1354.0, \"ncumul_hosp\": 306.0, \"ncumul_ICU\": 57.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 60.0, \"source\": \"https://www4.ti.ch/area-media/comunicati/dettaglio-comunicato/?NEWS_ID=187523&tx_tichareamedia_comunicazioni%5Baction%5D=show&tx_tichareamedia_comunicazioni%5Bcontroller%5D=Comunicazioni&cHash=982795a2c13394282accc3a8506c9ba0\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": 55.0, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 383.19706347656523, \"ncumul_deceased_100k\": 16.98066751003982}, {\"date\": \"2020-03-18T00:00:00\", \"time\": \"17:00\", \"abbreviation_canton_and_fl\": \"FR\", \"ncumul_tested\": null, \"ncumul_conf\": null, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.fr.ch/de/sr/gesundheit/covid-19/covid-19-im-kanton-freiburg-ist-ein-erster-todesfall-zu-beklagen\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": null, \"ncumul_deceased_100k\": 0.3137609267242732}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"TG\", \"ncumul_tested\": null, \"ncumul_conf\": 87.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.tg.ch/news/fachdossier-coronavirus.html/10552 & https://www.tg.ch/news/news-detailseite.html/485/news/44925\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 31.46792441910935, \"ncumul_deceased_100k\": 0.36170028067941784}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 270.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 17.7518527674481, \"ncumul_deceased_100k\": 0.06574760284240036}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 526.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 34.58323909510259, \"ncumul_deceased_100k\": 0.1972428085272011}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 773.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 3.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.822896997175484, \"ncumul_deceased_100k\": 0.1972428085272011}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 1068.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 70.2184398356836, \"ncumul_deceased_100k\": 0.32873801421200183}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"9:30\", \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 1211.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 5.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 79.62034704214685, \"ncumul_deceased_100k\": 0.32873801421200183}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"9:30\", \"abbreviation_canton_and_fl\": \"ZH\", \"ncumul_tested\": null, \"ncumul_conf\": 1363.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 7.0, \"source\": \"https://gd.zh.ch/internet/gesundheitsdirektion/de/themen/coronavirus.html#title-content-internet-gesundheitsdirektion-de-themen-coronavirus-jcr-content-contentPar-textimage_7\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 89.6139826741917, \"ncumul_deceased_100k\": 0.4602332198968026}, {\"date\": \"2020-03-06T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 23.0, \"ncumul_hosp\": 15.0, \"ncumul_ICU\": 2.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 2.878075943664792, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-07T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 30.0, \"ncumul_hosp\": 16.0, \"ncumul_ICU\": 4.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 3.754012100432337, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-08T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 40.0, \"ncumul_hosp\": 22.0, \"ncumul_ICU\": 3.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 5.005349467243116, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-09T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 51.0, \"ncumul_hosp\": 29.0, \"ncumul_ICU\": 5.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 6.381820570734973, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-10T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 77.0, \"ncumul_hosp\": 36.0, \"ncumul_ICU\": 6.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 9.635297724442998, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-11T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 108.0, \"ncumul_hosp\": 38.0, \"ncumul_ICU\": 7.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 13.514443561556416, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-12T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 156.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": 8.0, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 19.520862922248153, \"ncumul_deceased_100k\": 0.1251337366810779}, {\"date\": \"2020-03-13T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 204.0, \"ncumul_hosp\": 52.0, \"ncumul_ICU\": 10.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 2.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 25.527282282939893, \"ncumul_deceased_100k\": 0.2502674733621558}, {\"date\": \"2020-03-14T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 350.0, \"ncumul_hosp\": 43.0, \"ncumul_ICU\": 14.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 3.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 43.79680783837727, \"ncumul_deceased_100k\": 0.3754012100432337}, {\"date\": \"2020-03-15T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 406.0, \"ncumul_hosp\": 62.0, \"ncumul_ICU\": 19.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 4.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 50.80429709251763, \"ncumul_deceased_100k\": 0.5005349467243116}, {\"date\": \"2020-03-16T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 508.0, \"ncumul_hosp\": 66.0, \"ncumul_ICU\": 27.0, \"ncumul_vent\": null, \"ncumul_released\": 5.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 63.567938233987576, \"ncumul_deceased_100k\": 0.6256686834053895}, {\"date\": \"2020-03-17T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 608.0, \"ncumul_hosp\": 95.0, \"ncumul_ICU\": 35.0, \"ncumul_vent\": null, \"ncumul_released\": 9.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 76.08131190209536, \"ncumul_deceased_100k\": 0.6256686834053895}, {\"date\": \"2020-03-18T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 796.0, \"ncumul_hosp\": 128.0, \"ncumul_ICU\": 34.0, \"ncumul_vent\": null, \"ncumul_released\": 16.0, \"ncumul_deceased\": 5.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 99.60645439813801, \"ncumul_deceased_100k\": 0.6256686834053895}, {\"date\": \"2020-03-19T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1212.0, \"ncumul_hosp\": 140.0, \"ncumul_ICU\": 32.0, \"ncumul_vent\": null, \"ncumul_released\": 52.0, \"ncumul_deceased\": 7.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 151.66208885746641, \"ncumul_deceased_100k\": 0.8759361567675453}, {\"date\": \"2020-03-20T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1432.0, \"ncumul_hosp\": 152.0, \"ncumul_ICU\": 30.0, \"ncumul_vent\": null, \"ncumul_released\": 62.0, \"ncumul_deceased\": 12.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 179.19151092730357, \"ncumul_deceased_100k\": 1.5016048401729347}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1676.0, \"ncumul_hosp\": 175.0, \"ncumul_ICU\": 23.0, \"ncumul_vent\": null, \"ncumul_released\": 70.0, \"ncumul_deceased\": 15.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 209.72414267748655, \"ncumul_deceased_100k\": 1.8770060502161685}, {\"date\": \"2020-03-22T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 1782.0, \"ncumul_hosp\": 203.0, \"ncumul_ICU\": 23.0, \"ncumul_vent\": null, \"ncumul_released\": 75.0, \"ncumul_deceased\": 16.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 222.98831876568082, \"ncumul_deceased_100k\": 2.0021397868972466}, {\"date\": \"2020-03-23T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 2162.0, \"ncumul_hosp\": 223.0, \"ncumul_ICU\": 41.0, \"ncumul_vent\": null, \"ncumul_released\": 91.0, \"ncumul_deceased\": 17.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 270.5391387044904, \"ncumul_deceased_100k\": 2.127273523578324}, {\"date\": \"2020-03-24T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"VD\", \"ncumul_tested\": null, \"ncumul_conf\": 2234.0, \"ncumul_hosp\": 266.0, \"ncumul_ICU\": 46.0, \"ncumul_vent\": null, \"ncumul_released\": 100.0, \"ncumul_deceased\": 21.0, \"source\": \"https://www.vd.ch/toutes-les-actualites/hotline-et-informations-sur-le-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 279.54876774552804, \"ncumul_deceased_100k\": 2.627808470302636}, {\"date\": \"2020-03-21T00:00:00\", \"time\": null, \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": null, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ar.ch/schnellzugriff/medienmitteilungen-der-kantonalen-verwaltung/detail/news/coronavirus-erster-todesfall-in-appenzell-ausserrhoden/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail&cHash=a88f209df29c38474f9c5f9e1c5dd53f\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": null, \"ncumul_deceased_100k\": 6.193868070610096}, {\"date\": \"2020-03-23T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 30.0, \"ncumul_hosp\": 7.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 1.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 185.81604211830287, \"ncumul_deceased_100k\": 6.193868070610096}, {\"date\": \"2020-03-24T00:00:00\", \"time\": \"10:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 33.0, \"ncumul_hosp\": 6.0, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 204.39764633013317, \"ncumul_deceased_100k\": 12.387736141220191}, {\"date\": \"2020-03-25T00:00:00\", \"time\": \"08:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": 57.0, \"ncumul_conf\": 34.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 210.59151440074325, \"ncumul_deceased_100k\": 12.387736141220191}, {\"date\": \"2020-03-26T00:00:00\", \"time\": \"09:00\", \"abbreviation_canton_and_fl\": \"AR\", \"ncumul_tested\": null, \"ncumul_conf\": 40.0, \"ncumul_hosp\": null, \"ncumul_ICU\": null, \"ncumul_vent\": null, \"ncumul_released\": null, \"ncumul_deceased\": 2.0, \"source\": \"https://www.ar.ch/verwaltung/departement-gesundheit-und-soziales/amt-fuer-gesundheit/informationsseite-coronavirus/\", \"ncumul_ICF\": null, \"ncumul_ICU_intub\": null, \"ncumul_deceased_suspect\": null, \"TotalPosTests1\": null, \"TotalCured\": null, \"ncumul_conf_100k\": 247.75472282440384, \"ncumul_deceased_100k\": 12.387736141220191}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.HConcatChart(...)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://github.com/openZH/covid_19\">OpenData Zuerich</a>,\n",
       "  <a href=\"https://www.bfs.admin.ch\">Federal Statistical Office</a>\n",
       "<br>\n",
       "Analysis:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "base = alt.Chart(df.where(df.ncumul_deceased>0).dropna(subset=['abbreviation_canton_and_fl']))\n",
    "base.configure_header(titleFontSize=25)\n",
    "base.configure_axis(labelFontSize=15, titleFontSize=15)\n",
    "\n",
    "deaths = generate_canton_chart('ncumul_deceased', 'Deaths', 'Deaths')\n",
    "deaths_100k = generate_canton_chart('ncumul_deceased_100k', 'Deaths per 100k population', 'Deaths/100k')\n",
    "\n",
    "chart = alt.hconcat(\n",
    "    deaths, deaths_100k, title='Covid-19 deaths in Switzerland by Canton'\n",
    ").configure_title(\n",
    "    anchor='middle'\n",
    ")\n",
    "display(chart)    \n",
    "display(html_credits)\n",
    "\n",
    "if save_figures:\n",
    "    chart.save(str(Path(figures_path) / 'switzerland-deaths-by-canton.html'))\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "hide_input": true,
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.3"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}