{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import os\n", "import datetime\n", "import matplotlib.pyplot as plt\n", "import pandas as pd\n", "import subprocess\n", "import requests\n", "import json\n", "from scipy import stats\n", "from ipywidgets import interactive\n", "import ipywidgets as widgets\n", "%matplotlib inline" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "datasource = 'https://github.com/CSSEGISandData/COVID-19.git'\n", "testsource = 'https://covidtracking.com/api/states/daily'\n", "state_populations = 'SCPRC-EST2019-18+POP-RES.csv'\n", "state_abbreviations = 'state_abbreviations.csv'\n", "nation = 'US'\n", "series = 'confirmed'" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['/home/leon/Covid-19/COVID-19',\n", " '/home/leon/Covid-19/COVID-19/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv']" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "covid19_dir = os.path.join(\n", " os.environ['HOME'],\n", " 'Covid-19',\n", " 'COVID-19'\n", ")\n", "ts_file = os.path.join(\n", " covid19_dir,\n", " 'csse_covid_19_data',\n", " 'csse_covid_19_time_series',\n", " # 'time_series_19-covid-{series}.csv'.format(series=series),\n", " 'time_series_covid19_{series}_global.csv'.format(series=series.lower())\n", ")\n", "[\n", " covid19_dir,\n", " ts_file\n", "]" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "def run(cmd):\n", " result = subprocess.run(cmd, capture_output=True)\n", " if result.stdout:\n", " print('\\nStdout:\\n', \n", " result.stdout.decode(), \n", " '\\n')\n", " if result.stderr:\n", " print('\\nStderr:\\n', \n", " result.stderr.decode(), \n", " '\\n')\n", " return result" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "Stderr:\n", " fatal: remote CSSEGISandData already exists.\n", " \n", "\n", "\n", "Stderr:\n", " POST git-upload-pack (gzip 1034 to 598 bytes)\n", "From https://github.com/CSSEGISandData/COVID-19\n", " 63649e41..a4ccce6f master -> CSSEGISandData/master\n", " c642bb2c..b849db17 web-data -> CSSEGISandData/web-data\n", " \n", "\n", "\n", "Stdout:\n", " Updating 63649e41..a4ccce6f\n", "Fast-forward\n", " .../csse_covid_19_daily_reports/03-29-2020.csv | 3435 ++++++++++++++++++++\n", " .../time_series_covid19_confirmed_global.csv | 508 +--\n", " .../time_series_covid19_deaths_global.csv | 508 +--\n", " .../time_series_covid19_recovered_global.csv | 480 +--\n", " 4 files changed, 4183 insertions(+), 748 deletions(-)\n", " create mode 100644 csse_covid_19_data/csse_covid_19_daily_reports/03-29-2020.csv\n", " \n", "\n" ] }, { "data": { "text/plain": [ "[CompletedProcess(args=['git', 'remote', '-v', 'add', 'CSSEGISandData', 'https://github.com/CSSEGISandData/COVID-19.git'], returncode=128, stdout=b'', stderr=b'fatal: remote CSSEGISandData already exists.\\n'),\n", " CompletedProcess(args=['git', 'fetch', '-v', 'CSSEGISandData'], returncode=0, stdout=b'', stderr=b'POST git-upload-pack (gzip 1034 to 598 bytes)\\nFrom https://github.com/CSSEGISandData/COVID-19\\n 63649e41..a4ccce6f master -> CSSEGISandData/master\\n c642bb2c..b849db17 web-data -> CSSEGISandData/web-data\\n'),\n", " CompletedProcess(args=['git', 'merge', '-v', 'CSSEGISandData/master'], returncode=0, stdout=b'Updating 63649e41..a4ccce6f\\nFast-forward\\n .../csse_covid_19_daily_reports/03-29-2020.csv | 3435 ++++++++++++++++++++\\n .../time_series_covid19_confirmed_global.csv | 508 +--\\n .../time_series_covid19_deaths_global.csv | 508 +--\\n .../time_series_covid19_recovered_global.csv | 480 +--\\n 4 files changed, 4183 insertions(+), 748 deletions(-)\\n create mode 100644 csse_covid_19_data/csse_covid_19_daily_reports/03-29-2020.csv\\n', stderr=b'')]" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "os.chdir(covid19_dir)\n", "[\n", " run(['git', 'remote','-v', 'add', 'CSSEGISandData', datasource]),\n", " run(['git', 'fetch','-v', 'CSSEGISandData']),\n", " run(['git', 'merge', '-v', 'CSSEGISandData/master'])\n", "]" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Province/StateCountry/RegionLatLong1/22/201/23/201/24/201/25/201/26/201/27/20...3/20/203/21/203/22/203/23/203/24/203/25/203/26/203/27/203/28/203/29/20
0NaNAfghanistan33.000065.0000000000...24244040748494110110120
1NaNAlbania41.153320.1683000000...707689104123146174186197212
2NaNAlgeria28.03391.6596000000...90139201230264302367409454511
3NaNAndorra42.50631.5218000000...7588113133164188224267308334
4NaNAngola-11.202717.8739000000...1223334457
..................................................................
248NaNBurma21.916295.9560000000...00000008810
249AnguillaUnited Kingdom18.2206-63.0686000000...0000000022
250British Virgin IslandsUnited Kingdom18.4207-64.6400000000...0000000022
251Turks and Caicos IslandsUnited Kingdom21.6940-71.7979000000...0000000044
252NaNMS Zaandam0.00000.0000000000...0000000022
\n", "

253 rows × 72 columns

\n", "
" ], "text/plain": [ " Province/State Country/Region Lat Long 1/22/20 \\\n", "0 NaN Afghanistan 33.0000 65.0000 0 \n", "1 NaN Albania 41.1533 20.1683 0 \n", "2 NaN Algeria 28.0339 1.6596 0 \n", "3 NaN Andorra 42.5063 1.5218 0 \n", "4 NaN Angola -11.2027 17.8739 0 \n", ".. ... ... ... ... ... \n", "248 NaN Burma 21.9162 95.9560 0 \n", "249 Anguilla United Kingdom 18.2206 -63.0686 0 \n", "250 British Virgin Islands United Kingdom 18.4207 -64.6400 0 \n", "251 Turks and Caicos Islands United Kingdom 21.6940 -71.7979 0 \n", "252 NaN MS Zaandam 0.0000 0.0000 0 \n", "\n", " 1/23/20 1/24/20 1/25/20 1/26/20 1/27/20 ... 3/20/20 3/21/20 \\\n", "0 0 0 0 0 0 ... 24 24 \n", "1 0 0 0 0 0 ... 70 76 \n", "2 0 0 0 0 0 ... 90 139 \n", "3 0 0 0 0 0 ... 75 88 \n", "4 0 0 0 0 0 ... 1 2 \n", ".. ... ... ... ... ... ... ... ... \n", "248 0 0 0 0 0 ... 0 0 \n", "249 0 0 0 0 0 ... 0 0 \n", "250 0 0 0 0 0 ... 0 0 \n", "251 0 0 0 0 0 ... 0 0 \n", "252 0 0 0 0 0 ... 0 0 \n", "\n", " 3/22/20 3/23/20 3/24/20 3/25/20 3/26/20 3/27/20 3/28/20 3/29/20 \n", "0 40 40 74 84 94 110 110 120 \n", "1 89 104 123 146 174 186 197 212 \n", "2 201 230 264 302 367 409 454 511 \n", "3 113 133 164 188 224 267 308 334 \n", "4 2 3 3 3 4 4 5 7 \n", ".. ... ... ... ... ... ... ... ... \n", "248 0 0 0 0 0 8 8 10 \n", "249 0 0 0 0 0 0 2 2 \n", "250 0 0 0 0 0 0 2 2 \n", "251 0 0 0 0 0 0 4 4 \n", "252 0 0 0 0 0 0 2 2 \n", "\n", "[253 rows x 72 columns]" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ts_frame = pd.read_csv(ts_file, parse_dates=True, date_parser=pd.to_datetime)\n", "ts_frame" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array(['Afghanistan', 'Albania', 'Algeria', 'Andorra', 'Angola',\n", " 'Antigua and Barbuda', 'Argentina', 'Armenia', 'Australia',\n", " 'Austria', 'Azerbaijan', 'Bahamas', 'Bahrain', 'Bangladesh',\n", " 'Barbados', 'Belarus', 'Belgium', 'Belize', 'Benin', 'Bhutan',\n", " 'Bolivia', 'Bosnia and Herzegovina', 'Brazil', 'Brunei',\n", " 'Bulgaria', 'Burkina Faso', 'Burma', 'Cabo Verde', 'Cambodia',\n", " 'Cameroon', 'Canada', 'Central African Republic', 'Chad', 'Chile',\n", " 'China', 'Colombia', 'Congo (Brazzaville)', 'Congo (Kinshasa)',\n", " 'Costa Rica', \"Cote d'Ivoire\", 'Croatia', 'Cuba', 'Cyprus',\n", " 'Czechia', 'Denmark', 'Diamond Princess', 'Djibouti', 'Dominica',\n", " 'Dominican Republic', 'Ecuador', 'Egypt', 'El Salvador',\n", " 'Equatorial Guinea', 'Eritrea', 'Estonia', 'Eswatini', 'Ethiopia',\n", " 'Fiji', 'Finland', 'France', 'Gabon', 'Gambia', 'Georgia',\n", " 'Germany', 'Ghana', 'Greece', 'Grenada', 'Guatemala', 'Guinea',\n", " 'Guinea-Bissau', 'Guyana', 'Haiti', 'Holy See', 'Honduras',\n", " 'Hungary', 'Iceland', 'India', 'Indonesia', 'Iran', 'Iraq',\n", " 'Ireland', 'Israel', 'Italy', 'Jamaica', 'Japan', 'Jordan',\n", " 'Kazakhstan', 'Kenya', 'Korea, South', 'Kosovo', 'Kuwait',\n", " 'Kyrgyzstan', 'Laos', 'Latvia', 'Lebanon', 'Liberia', 'Libya',\n", " 'Liechtenstein', 'Lithuania', 'Luxembourg', 'MS Zaandam',\n", " 'Madagascar', 'Malaysia', 'Maldives', 'Mali', 'Malta',\n", " 'Mauritania', 'Mauritius', 'Mexico', 'Moldova', 'Monaco',\n", " 'Mongolia', 'Montenegro', 'Morocco', 'Mozambique', 'Namibia',\n", " 'Nepal', 'Netherlands', 'New Zealand', 'Nicaragua', 'Niger',\n", " 'Nigeria', 'North Macedonia', 'Norway', 'Oman', 'Pakistan',\n", " 'Panama', 'Papua New Guinea', 'Paraguay', 'Peru', 'Philippines',\n", " 'Poland', 'Portugal', 'Qatar', 'Romania', 'Russia', 'Rwanda',\n", " 'Saint Kitts and Nevis', 'Saint Lucia',\n", " 'Saint Vincent and the Grenadines', 'San Marino', 'Saudi Arabia',\n", " 'Senegal', 'Serbia', 'Seychelles', 'Singapore', 'Slovakia',\n", " 'Slovenia', 'Somalia', 'South Africa', 'Spain', 'Sri Lanka',\n", " 'Sudan', 'Suriname', 'Sweden', 'Switzerland', 'Syria', 'Taiwan*',\n", " 'Tanzania', 'Thailand', 'Timor-Leste', 'Togo',\n", " 'Trinidad and Tobago', 'Tunisia', 'Turkey', 'US', 'Uganda',\n", " 'Ukraine', 'United Arab Emirates', 'United Kingdom', 'Uruguay',\n", " 'Uzbekistan', 'Venezuela', 'Vietnam', 'West Bank and Gaza',\n", " 'Zambia', 'Zimbabwe'], dtype=object)" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "nations = np.unique(np.array(ts_frame.loc[:,'Country/Region']))\n", "nations" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0 False\n", "1 False\n", "2 False\n", "3 False\n", "4 False\n", " ... \n", "248 False\n", "249 False\n", "250 False\n", "251 False\n", "252 False\n", "Name: Country/Region, Length: 253, dtype: bool" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "nationrows = ts_frame.loc[:, 'Country/Region'] == nation\n", "nationrows" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Province/StateCountry/RegionLatLong1/22/201/23/201/24/201/25/201/26/201/27/20...3/20/203/21/203/22/203/23/203/24/203/25/203/26/203/27/203/28/203/29/20
225NaNUS37.0902-95.7129112255...19100254893327643847537406577883836101657121478140886
\n", "

1 rows × 72 columns

\n", "
" ], "text/plain": [ " Province/State Country/Region Lat Long 1/22/20 1/23/20 \\\n", "225 NaN US 37.0902 -95.7129 1 1 \n", "\n", " 1/24/20 1/25/20 1/26/20 1/27/20 ... 3/20/20 3/21/20 3/22/20 \\\n", "225 2 2 5 5 ... 19100 25489 33276 \n", "\n", " 3/23/20 3/24/20 3/25/20 3/26/20 3/27/20 3/28/20 3/29/20 \n", "225 43847 53740 65778 83836 101657 121478 140886 \n", "\n", "[1 rows x 72 columns]" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "nation_frame = ts_frame[nationrows]\n", "nation_frame" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Province/State 0\n", "Country/Region US\n", "Lat 37.0902\n", "Long -95.7129\n", "1/22/20 1\n", " ... \n", "3/25/20 65778\n", "3/26/20 83836\n", "3/27/20 101657\n", "3/28/20 121478\n", "3/29/20 140886\n", "Length: 72, dtype: object" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "nation_frame.aggregate(np.sum)" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[pandas.core.series.Series,\n", " 1/22/20 1\n", " 1/23/20 1\n", " 1/24/20 2\n", " 1/25/20 2\n", " 1/26/20 5\n", " ... \n", " 3/25/20 65778\n", " 3/26/20 83836\n", " 3/27/20 101657\n", " 3/28/20 121478\n", " 3/29/20 140886\n", " Length: 68, dtype: object]" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "nation_series = nation_frame.agg(np.sum)[4:]\n", "[\n", " type(nation_series),\n", " nation_series\n", "]" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "3/25/20 1.27453\n", "3/26/20 1.21257\n", "3/27/20 1.19498\n", "3/28/20 1.15977\n", "dtype: object" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "np.array(nation_series[-4:])/nation_series[-5:-1]" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "scrolled": false }, "outputs": [ { "data": { "text/plain": [ "[pandas.core.indexes.base.Index,\n", " Index(['1/22/20', '1/23/20', '1/24/20', '1/25/20', '1/26/20', '1/27/20',\n", " '1/28/20', '1/29/20', '1/30/20', '1/31/20', '2/1/20', '2/2/20',\n", " '2/3/20', '2/4/20', '2/5/20', '2/6/20', '2/7/20', '2/8/20', '2/9/20',\n", " '2/10/20', '2/11/20', '2/12/20', '2/13/20', '2/14/20', '2/15/20',\n", " '2/16/20', '2/17/20', '2/18/20', '2/19/20', '2/20/20', '2/21/20',\n", " '2/22/20', '2/23/20', '2/24/20', '2/25/20', '2/26/20', '2/27/20',\n", " '2/28/20', '2/29/20', '3/1/20', '3/2/20', '3/3/20', '3/4/20', '3/5/20',\n", " '3/6/20', '3/7/20', '3/8/20', '3/9/20', '3/10/20', '3/11/20', '3/12/20',\n", " '3/13/20', '3/14/20', '3/15/20', '3/16/20', '3/17/20', '3/18/20',\n", " '3/19/20', '3/20/20', '3/21/20', '3/22/20', '3/23/20', '3/24/20',\n", " '3/25/20', '3/26/20', '3/27/20', '3/28/20', '3/29/20'],\n", " dtype='object'),\n", " list,\n", " [Timestamp('2020-01-22 00:00:00'),\n", " Timestamp('2020-01-23 00:00:00'),\n", " Timestamp('2020-01-24 00:00:00'),\n", " Timestamp('2020-01-25 00:00:00'),\n", " Timestamp('2020-01-26 00:00:00'),\n", " Timestamp('2020-01-27 00:00:00'),\n", " Timestamp('2020-01-28 00:00:00'),\n", " Timestamp('2020-01-29 00:00:00'),\n", " Timestamp('2020-01-30 00:00:00'),\n", " Timestamp('2020-01-31 00:00:00'),\n", " Timestamp('2020-02-01 00:00:00'),\n", " Timestamp('2020-02-02 00:00:00'),\n", " Timestamp('2020-02-03 00:00:00'),\n", " Timestamp('2020-02-04 00:00:00'),\n", " Timestamp('2020-02-05 00:00:00'),\n", " Timestamp('2020-02-06 00:00:00'),\n", " Timestamp('2020-02-07 00:00:00'),\n", " Timestamp('2020-02-08 00:00:00'),\n", " Timestamp('2020-02-09 00:00:00'),\n", " Timestamp('2020-02-10 00:00:00'),\n", " Timestamp('2020-02-11 00:00:00'),\n", " Timestamp('2020-02-12 00:00:00'),\n", " Timestamp('2020-02-13 00:00:00'),\n", " Timestamp('2020-02-14 00:00:00'),\n", " Timestamp('2020-02-15 00:00:00'),\n", " Timestamp('2020-02-16 00:00:00'),\n", " Timestamp('2020-02-17 00:00:00'),\n", " Timestamp('2020-02-18 00:00:00'),\n", " Timestamp('2020-02-19 00:00:00'),\n", " Timestamp('2020-02-20 00:00:00'),\n", " Timestamp('2020-02-21 00:00:00'),\n", " Timestamp('2020-02-22 00:00:00'),\n", " Timestamp('2020-02-23 00:00:00'),\n", " Timestamp('2020-02-24 00:00:00'),\n", " Timestamp('2020-02-25 00:00:00'),\n", " Timestamp('2020-02-26 00:00:00'),\n", " Timestamp('2020-02-27 00:00:00'),\n", " Timestamp('2020-02-28 00:00:00'),\n", " Timestamp('2020-02-29 00:00:00'),\n", " Timestamp('2020-03-01 00:00:00'),\n", " Timestamp('2020-03-02 00:00:00'),\n", " Timestamp('2020-03-03 00:00:00'),\n", " Timestamp('2020-03-04 00:00:00'),\n", " Timestamp('2020-03-05 00:00:00'),\n", " Timestamp('2020-03-06 00:00:00'),\n", " Timestamp('2020-03-07 00:00:00'),\n", " Timestamp('2020-03-08 00:00:00'),\n", " Timestamp('2020-03-09 00:00:00'),\n", " Timestamp('2020-03-10 00:00:00'),\n", " Timestamp('2020-03-11 00:00:00'),\n", " Timestamp('2020-03-12 00:00:00'),\n", " Timestamp('2020-03-13 00:00:00'),\n", " Timestamp('2020-03-14 00:00:00'),\n", " Timestamp('2020-03-15 00:00:00'),\n", " Timestamp('2020-03-16 00:00:00'),\n", " Timestamp('2020-03-17 00:00:00'),\n", " Timestamp('2020-03-18 00:00:00'),\n", " Timestamp('2020-03-19 00:00:00'),\n", " Timestamp('2020-03-20 00:00:00'),\n", " Timestamp('2020-03-21 00:00:00'),\n", " Timestamp('2020-03-22 00:00:00'),\n", " Timestamp('2020-03-23 00:00:00'),\n", " Timestamp('2020-03-24 00:00:00'),\n", " Timestamp('2020-03-25 00:00:00'),\n", " Timestamp('2020-03-26 00:00:00'),\n", " Timestamp('2020-03-27 00:00:00'),\n", " Timestamp('2020-03-28 00:00:00'),\n", " Timestamp('2020-03-29 00:00:00')],\n", " array([1, 1, 2, 2, 5, 5, 5, 5, 5, 7, 8, 8, 11, 11, 11, 11, 11, 11, 11, 11,\n", " 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 15, 15, 15, 51, 51, 57, 58,\n", " 60, 68, 74, 98, 118, 149, 217, 262, 402, 518, 583, 959, 1281, 1663,\n", " 2179, 2727, 3499, 4632, 6421, 7783, 13677, 19100, 25489, 33276,\n", " 43847, 53740, 65778, 83836, 101657, 121478, 140886], dtype=object),\n", " '3/29/20']" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "strdates = nation_series.keys()\n", "dates = [pd.to_datetime(sd) for sd in strdates]\n", "[\n", " type(strdates),\n", " strdates,\n", " type(dates),\n", " dates,\n", " np.array(nation_series[:]),\n", " strdates[-1]\n", "]" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "nations_widget = widgets.Dropdown(\n", " options = nations,\n", " value = nation,\n", " description = \"Nation: \"\n", ")" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "dict_keys(['confirmed', 'deaths', 'recovered'])" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Load series into a dict of pandas dataframes\n", "# series_options = ['Confirmed','Deaths','Recovered']\n", "series_options = ['confirmed','deaths', 'recovered']\n", "#series_options = [re.match(r'time_series_19-covid-(.*).csv',file)[1] for file in os.listdir(os.path.join(\n", "# covid19_dir,\n", "# 'csse_covid_19_data',\n", "# 'csse_covid_19_time_series'))\n", "# if re.match(r'time_series_19-covid-(.*).csv',file)\n", "#]\n", "series_frames = dict();\n", "for series_to_read in series_options:\n", " ts_file = os.path.join(\n", " covid19_dir,\n", " 'csse_covid_19_data',\n", " 'csse_covid_19_time_series',\n", " f'time_series_covid19_{series_to_read}_global.csv' \n", " )\n", " series_frames[series_to_read] = pd.read_csv(ts_file, parse_dates=True, date_parser=pd.to_datetime)\n", " \n", "series_frames.keys()" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "nation_series_cache = dict()\n", "def get_nation_series(nation,series):\n", " if nation in nation_series_cache and series in nation_series_cache[nation]:\n", " nation_series = nation_series_cache[nation][series]\n", " else:\n", " ts_frame = series_frames[series]\n", " nationrows = ts_frame.loc[:, 'Country/Region'] == nation\n", " nation_frame = ts_frame[nationrows]\n", " nation_series = nation_frame.agg(np.sum)[4:]\n", " if nation not in nation_series_cache:\n", " nation_series_cache[nation] = dict()\n", " nation_series_cache[nation][series] = nation_series\n", "\n", " strdates = nation_series.keys()\n", " dates = [pd.to_datetime(sd) for sd in strdates]\n", "\n", " return (nation_series,dates)" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "dict_keys(['confirmed', 'deaths', 'recovered'])" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "series_frames.keys()" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "def plot_single_series(nation,series):\n", " nation_series, dates = get_nation_series(nation,series)\n", " nation_series.plot(\n", " x=dates,\n", " logy=True, \n", " title='Cumulative {series}: {nation}'.format(series=series, nation=nation),\n", " grid=True,\n", " figsize=(12,8)\n", " )\n", " plt.grid(True)\n", " plt.ylabel(series)\n", " plt.xlabel('Date')\n", " plt.legend([series])\n", "\n", "# Plot all the series\n", "def plot_all_series(nation, series_options=series_options):\n", " for series in series_frames.keys():\n", " plot_single_series(nation,series)\n", " plt.ylabel('Cases')\n", " plt.legend(series_options)\n", " plt.title(f'Cumulative: {nation}')\n", "\n", "plt.figure()\n", "plot_single_series(nation,series)\n", "\n", "plt.figure()\n", "plot_all_series(nation)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "690f3f4d0f884d2f8b0cc2987b7702b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "interactive(children=(Dropdown(description='Nation: ', index=165, options=('Afghanistan', 'Albania', 'Algeria'…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "interactive(plot_single_series,nation=nations_widget,series=series_options)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5fe6fea17f1b4e76856ebfb69be6512d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "interactive(children=(Dropdown(description='Nation: ', index=165, options=('Afghanistan', 'Albania', 'Algeria'…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "def do_linear_regression(nation,series,n_points,days_back):\n", " nation_series, dates = get_nation_series(nation,series)\n", " days = np.arange(0,nation_series.shape[0])\n", " y = np.log10(np.float64(nation_series+1))\n", " if days_back >= 0:\n", " s = slice(-n_points,None)\n", " else:\n", " s = slice(-n_points+days_back,days_back)\n", " lr = stats.linregress(days[s],y[s])\n", " \n", " fig = plt.figure(figsize=(12,8))\n", " plt.plot(days,y)\n", " line = lr.slope*days[s]+lr.intercept\n", " plt.plot(days[s],line)\n", " plt.grid(True)\n", "\n", " plt.xlabel('Days')\n", " plt.ylabel('log10(Cases+1)')\n", "\n", " str = f\"\"\"Slope: {lr.slope:.3f}\n", "Doubling time: {np.inf if lr.slope==0 else np.log10(2)/lr.slope:.3f} days\n", "Daily increase: {(np.exp(lr.slope)-1)*100:2.0f}%\"\"\"\n", "\n", " plt.text(days[s][0]-25,line[0],str)\n", "\n", " return lr\n", " \n", "interactive(do_linear_regression,\n", " nation=nations_widget,\n", " series=series_options,\n", " n_points=widgets.IntSlider(value=4,min=2,max=nation_series.shape[0]),\n", " days_back=widgets.IntSlider(value=0,min=-nation_series.shape[0],max=0)\n", " )" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "testresponse = requests.get(testsource)\n", "testresponse" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'date': 20200329,\n", " 'state': 'AK',\n", " 'positive': 102,\n", " 'negative': 3232,\n", " 'pending': None,\n", " 'hospitalized': 6,\n", " 'death': 2,\n", " 'total': 3334,\n", " 'hash': 'd4c0789e67f59e98176a9ea96200ed348161c6d4',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3334,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 396,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 413},\n", " {'date': 20200329,\n", " 'state': 'AL',\n", " 'positive': 806,\n", " 'negative': 4184,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 4990,\n", " 'hash': '9dbf0b598d35897b1f6857899d0a834990f4ec51',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 4990,\n", " 'fips': '01',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 110,\n", " 'totalTestResultsIncrease': 110},\n", " {'date': 20200329,\n", " 'state': 'AR',\n", " 'positive': 426,\n", " 'negative': 3027,\n", " 'pending': None,\n", " 'hospitalized': 48,\n", " 'death': 6,\n", " 'total': 3453,\n", " 'hash': '2c8ed5059d37cc0aa0d20f4f3066a64db930c6c5',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3453,\n", " 'fips': '05',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 89,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 111},\n", " {'date': 20200329,\n", " 'state': 'AS',\n", " 'positive': None,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': 'f2050b47409f64a09bb4e959284c05d25eca8832',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200329,\n", " 'state': 'AZ',\n", " 'positive': 919,\n", " 'negative': 12953,\n", " 'pending': None,\n", " 'hospitalized': 78,\n", " 'death': 17,\n", " 'total': 13872,\n", " 'hash': '14deca609d3762fb4b92807785e2b9c7015661e6',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 13872,\n", " 'fips': '04',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 78,\n", " 'negativeIncrease': 5498,\n", " 'positiveIncrease': 46,\n", " 'totalTestResultsIncrease': 5544},\n", " {'date': 20200329,\n", " 'state': 'CA',\n", " 'positive': 5708,\n", " 'negative': 20549,\n", " 'pending': 64400,\n", " 'hospitalized': 1034,\n", " 'death': 123,\n", " 'total': 90657,\n", " 'hash': 'c364ec885909accfd4baf8e2d329903900870ba9',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 26257,\n", " 'fips': '06',\n", " 'deathIncrease': 22,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1065,\n", " 'totalTestResultsIncrease': 1065},\n", " {'date': 20200329,\n", " 'state': 'CO',\n", " 'positive': 2061,\n", " 'negative': 11215,\n", " 'pending': None,\n", " 'hospitalized': 274,\n", " 'death': 44,\n", " 'total': 13276,\n", " 'hash': '10769183d6c8ae4f67d7694c1e90e053315457ad',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 13276,\n", " 'fips': '08',\n", " 'deathIncrease': 13,\n", " 'hospitalizedIncrease': 35,\n", " 'negativeIncrease': 1273,\n", " 'positiveIncrease': 327,\n", " 'totalTestResultsIncrease': 1600},\n", " {'date': 20200329,\n", " 'state': 'CT',\n", " 'positive': 1993,\n", " 'negative': 9907,\n", " 'pending': None,\n", " 'hospitalized': 404,\n", " 'death': 34,\n", " 'total': 11900,\n", " 'hash': 'a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 11900,\n", " 'fips': '09',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 231,\n", " 'negativeIncrease': 2798,\n", " 'positiveIncrease': 702,\n", " 'totalTestResultsIncrease': 3500},\n", " {'date': 20200329,\n", " 'state': 'DC',\n", " 'positive': 342,\n", " 'negative': 2469,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 2812,\n", " 'hash': '951af61bdce7b51bbfb818f7d11e3865a59e31ae',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 2811,\n", " 'fips': '11',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 258,\n", " 'positiveIncrease': 38,\n", " 'totalTestResultsIncrease': 296},\n", " {'date': 20200329,\n", " 'state': 'DE',\n", " 'positive': 232,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': 33,\n", " 'death': 6,\n", " 'total': 268,\n", " 'hash': 'ba8edd92448c4db2b977c3e519df1d6421968cd1',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 268,\n", " 'fips': '10',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200329,\n", " 'state': 'FL',\n", " 'positive': 4246,\n", " 'negative': 39070,\n", " 'pending': None,\n", " 'hospitalized': 594,\n", " 'death': 56,\n", " 'total': 43316,\n", " 'hash': '8ce3ce4c8ee42dd4925356994534079c50bc67ca',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 43316,\n", " 'fips': '12',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 68,\n", " 'negativeIncrease': 3704,\n", " 'positiveIncrease': 483,\n", " 'totalTestResultsIncrease': 4187},\n", " {'date': 20200329,\n", " 'state': 'GA',\n", " 'positive': 2651,\n", " 'negative': 9913,\n", " 'pending': None,\n", " 'hospitalized': 666,\n", " 'death': 80,\n", " 'total': 12564,\n", " 'hash': '7d692c3fbf28e3dbfdd58fc99dace80c1a9958d2',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 12564,\n", " 'fips': '13',\n", " 'deathIncrease': 11,\n", " 'hospitalizedIncrease': 49,\n", " 'negativeIncrease': 1228,\n", " 'positiveIncrease': 285,\n", " 'totalTestResultsIncrease': 1513},\n", " {'date': 20200329,\n", " 'state': 'GU',\n", " 'positive': 56,\n", " 'negative': 334,\n", " 'pending': None,\n", " 'hospitalized': 15,\n", " 'death': 1,\n", " 'total': 390,\n", " 'hash': 'c375c6bdc73751dd51ba6d5889c9e84d53303510',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 390,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 35,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200329,\n", " 'state': 'HI',\n", " 'positive': 151,\n", " 'negative': 6849,\n", " 'pending': 4,\n", " 'hospitalized': 12,\n", " 'death': 0,\n", " 'total': 7004,\n", " 'hash': 'f9ea13c2d669a5af5e440577fd13339db609c58d',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 7000,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 4,\n", " 'negativeIncrease': 2492,\n", " 'positiveIncrease': 31,\n", " 'totalTestResultsIncrease': 2523},\n", " {'date': 20200329,\n", " 'state': 'IA',\n", " 'positive': 336,\n", " 'negative': 5013,\n", " 'pending': None,\n", " 'hospitalized': 68,\n", " 'death': 4,\n", " 'total': 5349,\n", " 'hash': '0e8a6c975f6cdda9eb1f68596e52293afbfba37e',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 5349,\n", " 'fips': '19',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 7,\n", " 'negativeIncrease': 638,\n", " 'positiveIncrease': 38,\n", " 'totalTestResultsIncrease': 676},\n", " {'date': 20200329,\n", " 'state': 'ID',\n", " 'positive': 261,\n", " 'negative': 4021,\n", " 'pending': None,\n", " 'hospitalized': 36,\n", " 'death': 5,\n", " 'total': 4282,\n", " 'hash': 'e58918bfa4321b0a6884b02c3ff7761ec4778e6b',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 4282,\n", " 'fips': '16',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 11,\n", " 'negativeIncrease': 679,\n", " 'positiveIncrease': 31,\n", " 'totalTestResultsIncrease': 710},\n", " {'date': 20200329,\n", " 'state': 'IL',\n", " 'positive': 4596,\n", " 'negative': 23166,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 65,\n", " 'total': 27762,\n", " 'hash': 'e6e6b00bdc70ca71fc14b3056568dfc40097d750',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 27762,\n", " 'fips': '17',\n", " 'deathIncrease': 18,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1166,\n", " 'positiveIncrease': 1105,\n", " 'totalTestResultsIncrease': 2271},\n", " {'date': 20200329,\n", " 'state': 'IN',\n", " 'positive': 1514,\n", " 'negative': 8316,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 32,\n", " 'total': 9830,\n", " 'hash': '659e4aad9785c14cf15e898f481aebda271e73e3',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 9830,\n", " 'fips': '18',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1141,\n", " 'positiveIncrease': 282,\n", " 'totalTestResultsIncrease': 1423},\n", " {'date': 20200329,\n", " 'state': 'KS',\n", " 'positive': 319,\n", " 'negative': 4194,\n", " 'pending': None,\n", " 'hospitalized': 55,\n", " 'death': 6,\n", " 'total': 4513,\n", " 'hash': 'be3c8cd4ff2e10e3092723512f8ea5a03ec9d486',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 4513,\n", " 'fips': '20',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 28,\n", " 'negativeIncrease': 523,\n", " 'positiveIncrease': 58,\n", " 'totalTestResultsIncrease': 581},\n", " {'date': 20200329,\n", " 'state': 'KY',\n", " 'positive': 394,\n", " 'negative': 5147,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 9,\n", " 'total': 5541,\n", " 'hash': '563d46bc3630e17fd60499a2115df267a8645ae0',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 5541,\n", " 'fips': '21',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 326,\n", " 'positiveIncrease': 92,\n", " 'totalTestResultsIncrease': 418},\n", " {'date': 20200329,\n", " 'state': 'LA',\n", " 'positive': 3540,\n", " 'negative': 24331,\n", " 'pending': None,\n", " 'hospitalized': 1127,\n", " 'death': 151,\n", " 'total': 27871,\n", " 'hash': '38b4d0f6b224b46b63a1c01841b1d1385a2a3742',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 27871,\n", " 'fips': '22',\n", " 'deathIncrease': 14,\n", " 'hospitalizedIncrease': 200,\n", " 'negativeIncrease': 2485,\n", " 'positiveIncrease': 225,\n", " 'totalTestResultsIncrease': 2710},\n", " {'date': 20200329,\n", " 'state': 'MA',\n", " 'positive': 4955,\n", " 'negative': 34111,\n", " 'pending': None,\n", " 'hospitalized': 399,\n", " 'death': 48,\n", " 'total': 39066,\n", " 'hash': '85320d5eb34b32da6ffe44dfb937835574a335a1',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 39066,\n", " 'fips': '25',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 49,\n", " 'negativeIncrease': 3319,\n", " 'positiveIncrease': 698,\n", " 'totalTestResultsIncrease': 4017},\n", " {'date': 20200329,\n", " 'state': 'MD',\n", " 'positive': 1239,\n", " 'negative': 12354,\n", " 'pending': None,\n", " 'hospitalized': 277,\n", " 'death': 10,\n", " 'total': 13593,\n", " 'hash': 'b017ab05576951a20e7c57f1faf56b614bc443f1',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 13593,\n", " 'fips': '24',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 51,\n", " 'negativeIncrease': 838,\n", " 'positiveIncrease': 247,\n", " 'totalTestResultsIncrease': 1085},\n", " {'date': 20200329,\n", " 'state': 'ME',\n", " 'positive': 253,\n", " 'negative': 3394,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 3647,\n", " 'hash': '2e6f8d654325315d3ff90837e0355efb83712cdb',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3647,\n", " 'fips': '23',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 42,\n", " 'totalTestResultsIncrease': 42},\n", " {'date': 20200329,\n", " 'state': 'MI',\n", " 'positive': 5486,\n", " 'negative': 11893,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 132,\n", " 'total': 17379,\n", " 'hash': '25fd0b3fada36382067e735f2ea785fcbb58376a',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 17379,\n", " 'fips': '26',\n", " 'deathIncrease': 40,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2784,\n", " 'positiveIncrease': 1829,\n", " 'totalTestResultsIncrease': 4613},\n", " {'date': 20200329,\n", " 'state': 'MN',\n", " 'positive': 503,\n", " 'negative': 17154,\n", " 'pending': None,\n", " 'hospitalized': 75,\n", " 'death': 9,\n", " 'total': 17657,\n", " 'hash': 'a7684a9182a0b32142849036fecf82ec7701d8a3',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 17657,\n", " 'fips': '27',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 18,\n", " 'negativeIncrease': 1466,\n", " 'positiveIncrease': 62,\n", " 'totalTestResultsIncrease': 1528},\n", " {'date': 20200329,\n", " 'state': 'MO',\n", " 'positive': 838,\n", " 'negative': 11547,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 10,\n", " 'total': 12385,\n", " 'hash': '228bc579fa237f56c7e55fd2dd8f9bfe9d410b20',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 12385,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1465,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 1465},\n", " {'date': 20200329,\n", " 'state': 'MP',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': '8499fa1ff060f43b78b442e20c46c95495534385',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200329,\n", " 'state': 'MS',\n", " 'positive': 758,\n", " 'negative': 2560,\n", " 'pending': None,\n", " 'hospitalized': 235,\n", " 'death': 14,\n", " 'total': 3318,\n", " 'hash': 'daa6037b61ae96e6c2526a155139e7e732cd0368',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3318,\n", " 'fips': '28',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 16,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 95,\n", " 'totalTestResultsIncrease': 95},\n", " {'date': 20200329,\n", " 'state': 'MT',\n", " 'positive': 154,\n", " 'negative': 4143,\n", " 'pending': None,\n", " 'hospitalized': 8,\n", " 'death': 1,\n", " 'total': 4297,\n", " 'hash': 'd071e5b6a217a1d7bc9f1020995fa9c92a50d0ee',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 4297,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 887,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 912},\n", " {'date': 20200329,\n", " 'state': 'NC',\n", " 'positive': 1040,\n", " 'negative': 17905,\n", " 'pending': None,\n", " 'hospitalized': 91,\n", " 'death': 4,\n", " 'total': 18945,\n", " 'hash': '94c103bb6dc3385d5a5f366a0913180f83223df8',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 18945,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 4,\n", " 'negativeIncrease': 1313,\n", " 'positiveIncrease': 105,\n", " 'totalTestResultsIncrease': 1418},\n", " {'date': 20200329,\n", " 'state': 'ND',\n", " 'positive': 98,\n", " 'negative': 3355,\n", " 'pending': None,\n", " 'hospitalized': 17,\n", " 'death': 1,\n", " 'total': 3453,\n", " 'hash': '2c4c2aa7b34f5a07b885b9fe64752fa44d9decb5',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3453,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 546,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 561},\n", " {'date': 20200329,\n", " 'state': 'NE',\n", " 'positive': 108,\n", " 'negative': 1968,\n", " 'pending': 4,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 2080,\n", " 'hash': '44e85c9c9b448faa6a1b8a6af39c84820610bff0',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 2076,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 64,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 76},\n", " {'date': 20200329,\n", " 'state': 'NH',\n", " 'positive': 214,\n", " 'negative': 4524,\n", " 'pending': 285,\n", " 'hospitalized': 33,\n", " 'death': 2,\n", " 'total': 5023,\n", " 'hash': '5602e725da5424f5efebbaa8e3b8ac7c71a21d53',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 4738,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 3,\n", " 'negativeIncrease': 868,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 895},\n", " {'date': 20200329,\n", " 'state': 'NJ',\n", " 'positive': 13386,\n", " 'negative': 22216,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 161,\n", " 'total': 35602,\n", " 'hash': '5e0cce3ce15a05bc385736f7f690e041feb4f2d9',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 35602,\n", " 'fips': '34',\n", " 'deathIncrease': 21,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2830,\n", " 'positiveIncrease': 2262,\n", " 'totalTestResultsIncrease': 5092},\n", " {'date': 20200329,\n", " 'state': 'NM',\n", " 'positive': 237,\n", " 'negative': 10769,\n", " 'pending': None,\n", " 'hospitalized': 19,\n", " 'death': 2,\n", " 'total': 11006,\n", " 'hash': 'c76b9199e33fb36ea9e9509cce54c2ad94146dfd',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 11006,\n", " 'fips': '35',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 1573,\n", " 'positiveIncrease': 46,\n", " 'totalTestResultsIncrease': 1619},\n", " {'date': 20200329,\n", " 'state': 'NV',\n", " 'positive': 738,\n", " 'negative': 8412,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 14,\n", " 'total': 9150,\n", " 'hash': 'd0408e54d643518f6c0b61bd367061c20ea69327',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 9150,\n", " 'fips': '32',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 511,\n", " 'positiveIncrease': 117,\n", " 'totalTestResultsIncrease': 628},\n", " {'date': 20200329,\n", " 'state': 'NY',\n", " 'positive': 59513,\n", " 'negative': 112847,\n", " 'pending': None,\n", " 'hospitalized': 12075,\n", " 'death': 965,\n", " 'total': 172360,\n", " 'hash': 'ba807849425122f97cff754bfca452232a1e75ce',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 172360,\n", " 'fips': '36',\n", " 'deathIncrease': 237,\n", " 'hospitalizedIncrease': 2021,\n", " 'negativeIncrease': 9231,\n", " 'positiveIncrease': 7195,\n", " 'totalTestResultsIncrease': 16426},\n", " {'date': 20200329,\n", " 'state': 'OH',\n", " 'positive': 1653,\n", " 'negative': 19012,\n", " 'pending': None,\n", " 'hospitalized': 403,\n", " 'death': 29,\n", " 'total': 20665,\n", " 'hash': 'bf97498f0e2f4741137db5392baa1abf5648979f',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 20665,\n", " 'fips': '39',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 59,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 247,\n", " 'totalTestResultsIncrease': 247},\n", " {'date': 20200329,\n", " 'state': 'OK',\n", " 'positive': 429,\n", " 'negative': 1205,\n", " 'pending': None,\n", " 'hospitalized': 140,\n", " 'death': 16,\n", " 'total': 1634,\n", " 'hash': '43ef7985bd9555698d09d6a950875ade320286df',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 1634,\n", " 'fips': '40',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 14,\n", " 'negativeIncrease': 25,\n", " 'positiveIncrease': 52,\n", " 'totalTestResultsIncrease': 77},\n", " {'date': 20200329,\n", " 'state': 'OR',\n", " 'positive': 548,\n", " 'negative': 10878,\n", " 'pending': None,\n", " 'hospitalized': 129,\n", " 'death': 13,\n", " 'total': 11426,\n", " 'hash': 'ec860456b55d5a18391c8cbf2748ea02bf908fd2',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 11426,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 12,\n", " 'negativeIncrease': 1185,\n", " 'positiveIncrease': 69,\n", " 'totalTestResultsIncrease': 1254},\n", " {'date': 20200329,\n", " 'state': 'PA',\n", " 'positive': 3394,\n", " 'negative': 30061,\n", " 'pending': None,\n", " 'hospitalized': 682,\n", " 'death': 38,\n", " 'total': 33455,\n", " 'hash': 'ad1df7816ad6d19a996749d630bc38345291f26e',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 33455,\n", " 'fips': '42',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 4807,\n", " 'positiveIncrease': 643,\n", " 'totalTestResultsIncrease': 5450},\n", " {'date': 20200329,\n", " 'state': 'PR',\n", " 'positive': 127,\n", " 'negative': 841,\n", " 'pending': 817,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 1785,\n", " 'hash': '5b8d867a604216d7e456141b6f80f93183e22f2c',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 968,\n", " 'fips': '72',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 102,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 129},\n", " {'date': 20200329,\n", " 'state': 'RI',\n", " 'positive': 294,\n", " 'negative': 2541,\n", " 'pending': None,\n", " 'hospitalized': 35,\n", " 'death': 3,\n", " 'total': 2835,\n", " 'hash': 'a4d42dba093e9b91662dc7547081bffbecd06bef',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 2835,\n", " 'fips': '44',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 7,\n", " 'negativeIncrease': 235,\n", " 'positiveIncrease': 91,\n", " 'totalTestResultsIncrease': 326},\n", " {'date': 20200329,\n", " 'state': 'SC',\n", " 'positive': 774,\n", " 'negative': 3015,\n", " 'pending': None,\n", " 'hospitalized': 129,\n", " 'death': 16,\n", " 'total': 3789,\n", " 'hash': 'b85a9aaa3da2d62f633714b4d08f409109f52bb4',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3789,\n", " 'fips': '45',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 607,\n", " 'positiveIncrease': 235,\n", " 'totalTestResultsIncrease': 842},\n", " {'date': 20200329,\n", " 'state': 'SD',\n", " 'positive': 90,\n", " 'negative': 3127,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 3218,\n", " 'hash': '2ecdd93c12093321637eb882b51f779ef2269d3a',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3217,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 535,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 557},\n", " {'date': 20200329,\n", " 'state': 'TN',\n", " 'positive': 1537,\n", " 'negative': 19037,\n", " 'pending': None,\n", " 'hospitalized': 133,\n", " 'death': 7,\n", " 'total': 20574,\n", " 'hash': 'c928e23a1549ab46b5a78ea8b86ea8fa727ca05f',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 20574,\n", " 'fips': '47',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 15,\n", " 'negativeIncrease': 2072,\n", " 'positiveIncrease': 164,\n", " 'totalTestResultsIncrease': 2236},\n", " {'date': 20200329,\n", " 'state': 'TX',\n", " 'positive': 2552,\n", " 'negative': 23208,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 34,\n", " 'total': 25760,\n", " 'hash': '38db35dbc7abd19b31e25fa9eaa4165ad5eece4a',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 25760,\n", " 'fips': '48',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 500,\n", " 'totalTestResultsIncrease': 500},\n", " {'date': 20200329,\n", " 'state': 'UT',\n", " 'positive': 719,\n", " 'negative': 13274,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 13993,\n", " 'hash': '7da47dee17adc7161be7aeefa3d507b3bc735edf',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 13993,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2564,\n", " 'positiveIncrease': 117,\n", " 'totalTestResultsIncrease': 2681},\n", " {'date': 20200329,\n", " 'state': 'VA',\n", " 'positive': 890,\n", " 'negative': 9719,\n", " 'pending': None,\n", " 'hospitalized': 112,\n", " 'death': 22,\n", " 'total': 10609,\n", " 'hash': '66ebeae58d1a5e123904bd7f39d840dbe24449c2',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 10609,\n", " 'fips': '51',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 13,\n", " 'negativeIncrease': 1292,\n", " 'positiveIncrease': 151,\n", " 'totalTestResultsIncrease': 1443},\n", " {'date': 20200329,\n", " 'state': 'VI',\n", " 'positive': 23,\n", " 'negative': 123,\n", " 'pending': 37,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 183,\n", " 'hash': '15a59f27f2acd69bd9c1e95a02de01c044339d2f',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 146,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 17,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200329,\n", " 'state': 'VT',\n", " 'positive': 235,\n", " 'negative': 3466,\n", " 'pending': None,\n", " 'hospitalized': 18,\n", " 'death': 12,\n", " 'total': 3701,\n", " 'hash': '90a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 3701,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1303,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 1327},\n", " {'date': 20200329,\n", " 'state': 'WA',\n", " 'positive': 4310,\n", " 'negative': 54896,\n", " 'pending': None,\n", " 'hospitalized': 254,\n", " 'death': 189,\n", " 'total': 59206,\n", " 'hash': '02bb082a97f1ddda79562a855dd090e632e2e5e9',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 59206,\n", " 'fips': '53',\n", " 'deathIncrease': 14,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 5881,\n", " 'positiveIncrease': 587,\n", " 'totalTestResultsIncrease': 6468},\n", " {'date': 20200329,\n", " 'state': 'WI',\n", " 'positive': 1112,\n", " 'negative': 16550,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 13,\n", " 'total': 17662,\n", " 'hash': '2cd5d65e6cf10a667f00fe96ffd78eb850713129',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 17662,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1318,\n", " 'positiveIncrease': 123,\n", " 'totalTestResultsIncrease': 1441},\n", " {'date': 20200329,\n", " 'state': 'WV',\n", " 'positive': 113,\n", " 'negative': 2705,\n", " 'pending': 0,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 2818,\n", " 'hash': '626ca2fdd89b005a3d3b606376e4ac5fd2a4772c',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 2818,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 374,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 391},\n", " {'date': 20200329,\n", " 'state': 'WY',\n", " 'positive': 86,\n", " 'negative': 1554,\n", " 'pending': None,\n", " 'hospitalized': 15,\n", " 'death': 0,\n", " 'total': 1640,\n", " 'hash': 'e6365afc2c29afd4168c8d82cd57312427281140',\n", " 'dateChecked': '2020-03-29T20:00:00Z',\n", " 'totalTestResults': 1640,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 79,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 83},\n", " {'date': 20200328,\n", " 'state': 'AK',\n", " 'positive': 85,\n", " 'negative': 2836,\n", " 'pending': None,\n", " 'hospitalized': 5,\n", " 'death': 2,\n", " 'total': 2921,\n", " 'hash': 'edb7e6bcde715f8bbea31547e99aa8b4712ea5fb',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2921,\n", " 'fips': '02',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 517,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 533},\n", " {'date': 20200328,\n", " 'state': 'AL',\n", " 'positive': 696,\n", " 'negative': 4184,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 4880,\n", " 'hash': 'c9986a845bd2f8f9c9a4294a8e5d66a01ee6aadf',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 4880,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 109,\n", " 'totalTestResultsIncrease': 109},\n", " {'date': 20200328,\n", " 'state': 'AR',\n", " 'positive': 404,\n", " 'negative': 2938,\n", " 'pending': 0,\n", " 'hospitalized': 48,\n", " 'death': 5,\n", " 'total': 3342,\n", " 'hash': '47d05acbbf2fbb56ddd9c44c3b9e204d10f050c3',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 3342,\n", " 'fips': '05',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1393,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 1416},\n", " {'date': 20200328,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': 'c6fae61e10e1a1154e848a52a3665304ec76dd53',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200328,\n", " 'state': 'AZ',\n", " 'positive': 873,\n", " 'negative': 7455,\n", " 'pending': 21,\n", " 'hospitalized': None,\n", " 'death': 15,\n", " 'total': 8349,\n", " 'hash': '9b04c4c073cb904f606bb9efb2ac77c8ecc810cd',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 8328,\n", " 'fips': '04',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 137,\n", " 'totalTestResultsIncrease': 137},\n", " {'date': 20200328,\n", " 'state': 'CA',\n", " 'positive': 4643,\n", " 'negative': 20549,\n", " 'pending': 64400,\n", " 'hospitalized': 1034,\n", " 'death': 101,\n", " 'total': 89592,\n", " 'hash': '399721733fa1eeda46e39c0158322c44fb1d985d',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 25192,\n", " 'fips': '06',\n", " 'deathIncrease': 23,\n", " 'hospitalizedIncrease': 288,\n", " 'negativeIncrease': 3169,\n", " 'positiveIncrease': 764,\n", " 'totalTestResultsIncrease': 3933},\n", " {'date': 20200328,\n", " 'state': 'CO',\n", " 'positive': 1734,\n", " 'negative': 9942,\n", " 'pending': None,\n", " 'hospitalized': 239,\n", " 'death': 31,\n", " 'total': 11676,\n", " 'hash': '022e1e4cd67636726626d2eebe84070c6a8f4357',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 11676,\n", " 'fips': '08',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 55,\n", " 'negativeIncrease': 1250,\n", " 'positiveIncrease': 304,\n", " 'totalTestResultsIncrease': 1554},\n", " {'date': 20200328,\n", " 'state': 'CT',\n", " 'positive': 1291,\n", " 'negative': 7109,\n", " 'pending': None,\n", " 'hospitalized': 173,\n", " 'death': 27,\n", " 'total': 8400,\n", " 'hash': '90ce8de029dfe5ca226ddf1d654ebb6195b03da2',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 8400,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200328,\n", " 'state': 'DC',\n", " 'positive': 304,\n", " 'negative': 2211,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 2516,\n", " 'hash': 'aee096d8e6eca08d4c3134c250615071b84ea5b4',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2515,\n", " 'fips': '11',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 314,\n", " 'positiveIncrease': 37,\n", " 'totalTestResultsIncrease': 351},\n", " {'date': 20200328,\n", " 'state': 'DE',\n", " 'positive': 214,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': 31,\n", " 'death': 3,\n", " 'total': 250,\n", " 'hash': 'f477658d1b39079257d92f7e6f93ab4f6714f102',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 250,\n", " 'fips': '10',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 16,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 51,\n", " 'totalTestResultsIncrease': 51},\n", " {'date': 20200328,\n", " 'state': 'FL',\n", " 'positive': 3763,\n", " 'negative': 35366,\n", " 'pending': None,\n", " 'hospitalized': 526,\n", " 'death': 54,\n", " 'total': 39129,\n", " 'hash': '409a6045a3778362e1bc5f136d46ea7524fa2ed3',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 39129,\n", " 'fips': '12',\n", " 'deathIncrease': 20,\n", " 'hospitalizedIncrease': 70,\n", " 'negativeIncrease': 7180,\n", " 'positiveIncrease': 998,\n", " 'totalTestResultsIncrease': 8178},\n", " {'date': 20200328,\n", " 'state': 'GA',\n", " 'positive': 2366,\n", " 'negative': 8685,\n", " 'pending': None,\n", " 'hospitalized': 617,\n", " 'death': 69,\n", " 'total': 11051,\n", " 'hash': '5f92f2a9e3841a01029d55f55f828e1307da5355',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 11051,\n", " 'fips': '13',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 51,\n", " 'negativeIncrease': 821,\n", " 'positiveIncrease': 365,\n", " 'totalTestResultsIncrease': 1186},\n", " {'date': 20200328,\n", " 'state': 'GU',\n", " 'positive': 55,\n", " 'negative': 299,\n", " 'pending': None,\n", " 'hospitalized': 15,\n", " 'death': 1,\n", " 'total': 354,\n", " 'hash': '6bcdecd285ce74822cb5edf6b8c2acbc5aa726f6',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 354,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 4,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 4},\n", " {'date': 20200328,\n", " 'state': 'HI',\n", " 'positive': 120,\n", " 'negative': 4357,\n", " 'pending': 3,\n", " 'hospitalized': 8,\n", " 'death': 0,\n", " 'total': 4480,\n", " 'hash': '89688658eb0c2ae49b9d4f3e1fbd2475ba645063',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 4477,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 14},\n", " {'date': 20200328,\n", " 'state': 'IA',\n", " 'positive': 298,\n", " 'negative': 4375,\n", " 'pending': None,\n", " 'hospitalized': 61,\n", " 'death': 3,\n", " 'total': 4673,\n", " 'hash': '36185c766d5dc5fda30e4bcd4e76931804fb3825',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 4673,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 11,\n", " 'negativeIncrease': 635,\n", " 'positiveIncrease': 63,\n", " 'totalTestResultsIncrease': 698},\n", " {'date': 20200328,\n", " 'state': 'ID',\n", " 'positive': 230,\n", " 'negative': 3342,\n", " 'pending': None,\n", " 'hospitalized': 25,\n", " 'death': 4,\n", " 'total': 3572,\n", " 'hash': '84db46869f9ec3e305e374828199af9aa7eed671',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 3572,\n", " 'fips': '16',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 25,\n", " 'negativeIncrease': 674,\n", " 'positiveIncrease': 41,\n", " 'totalTestResultsIncrease': 715},\n", " {'date': 20200328,\n", " 'state': 'IL',\n", " 'positive': 3491,\n", " 'negative': 22000,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 47,\n", " 'total': 25491,\n", " 'hash': 'a874a1cfa1dfcafd1bb994844a8cf665e01089c3',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 25491,\n", " 'fips': '17',\n", " 'deathIncrease': 13,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 3484,\n", " 'positiveIncrease': 465,\n", " 'totalTestResultsIncrease': 3949},\n", " {'date': 20200328,\n", " 'state': 'IN',\n", " 'positive': 1232,\n", " 'negative': 7175,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 31,\n", " 'total': 8407,\n", " 'hash': '035fd92e63c30632831d1cde240908eeb34fbd22',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 8407,\n", " 'fips': '18',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1220,\n", " 'positiveIncrease': 251,\n", " 'totalTestResultsIncrease': 1471},\n", " {'date': 20200328,\n", " 'state': 'KS',\n", " 'positive': 261,\n", " 'negative': 3671,\n", " 'pending': None,\n", " 'hospitalized': 27,\n", " 'death': 5,\n", " 'total': 3932,\n", " 'hash': 'db5689b59cf0197253cd650281bffdd0d2bf006e',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 3932,\n", " 'fips': '20',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 442,\n", " 'positiveIncrease': 59,\n", " 'totalTestResultsIncrease': 501},\n", " {'date': 20200328,\n", " 'state': 'KY',\n", " 'positive': 302,\n", " 'negative': 4821,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 5123,\n", " 'hash': '7e7bbd0d3f52ab0b65d5625cd768f7d4f9e9faff',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 5123,\n", " 'fips': '21',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1053,\n", " 'positiveIncrease': 54,\n", " 'totalTestResultsIncrease': 1107},\n", " {'date': 20200328,\n", " 'state': 'LA',\n", " 'positive': 3315,\n", " 'negative': 21846,\n", " 'pending': None,\n", " 'hospitalized': 927,\n", " 'death': 137,\n", " 'total': 25161,\n", " 'hash': 'ef4db6416e4eb94c77abdb38e29a15c0e92e9972',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 25161,\n", " 'fips': '22',\n", " 'deathIncrease': 18,\n", " 'hospitalizedIncrease': 154,\n", " 'negativeIncrease': 3233,\n", " 'positiveIncrease': 569,\n", " 'totalTestResultsIncrease': 3802},\n", " {'date': 20200328,\n", " 'state': 'MA',\n", " 'positive': 4257,\n", " 'negative': 30792,\n", " 'pending': None,\n", " 'hospitalized': 350,\n", " 'death': 44,\n", " 'total': 35049,\n", " 'hash': 'e87fa6baa76ac494588840a42ee11a2dac74d0ca',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 35049,\n", " 'fips': '25',\n", " 'deathIncrease': 9,\n", " 'hospitalizedIncrease': 131,\n", " 'negativeIncrease': 4661,\n", " 'positiveIncrease': 1017,\n", " 'totalTestResultsIncrease': 5678},\n", " {'date': 20200328,\n", " 'state': 'MD',\n", " 'positive': 992,\n", " 'negative': 11516,\n", " 'pending': None,\n", " 'hospitalized': 226,\n", " 'death': 5,\n", " 'total': 12508,\n", " 'hash': 'e0e4d12ec0228431701ccfff3cc5aacf681084d0',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 12508,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 53,\n", " 'negativeIncrease': 11422,\n", " 'positiveIncrease': 218,\n", " 'totalTestResultsIncrease': 11640},\n", " {'date': 20200328,\n", " 'state': 'ME',\n", " 'positive': 211,\n", " 'negative': 3394,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 3605,\n", " 'hash': '48ae808cfd1cbb99dea5e00a336027bc337ca83d',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 3605,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 43,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200328,\n", " 'state': 'MI',\n", " 'positive': 3657,\n", " 'negative': 9109,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 92,\n", " 'total': 12766,\n", " 'hash': '45b642849e6ce40f4f3645f8c33e159865adbae8',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 12766,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2559,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 2559},\n", " {'date': 20200328,\n", " 'state': 'MN',\n", " 'positive': 441,\n", " 'negative': 15688,\n", " 'pending': None,\n", " 'hospitalized': 57,\n", " 'death': 5,\n", " 'total': 16129,\n", " 'hash': 'ea0c127151996f5b91ec44b431d7de9e45f3a43e',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 16129,\n", " 'fips': '27',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 6,\n", " 'negativeIncrease': 2083,\n", " 'positiveIncrease': 43,\n", " 'totalTestResultsIncrease': 2126},\n", " {'date': 20200328,\n", " 'state': 'MO',\n", " 'positive': 838,\n", " 'negative': 10082,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 10,\n", " 'total': 10920,\n", " 'hash': 'dd2b048746f8c45ec96389c21bd277ba06b19282',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 10920,\n", " 'fips': '29',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 9713,\n", " 'positiveIncrease': 169,\n", " 'totalTestResultsIncrease': 9882},\n", " {'date': 20200328,\n", " 'state': 'MP',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': 'cf5add882df8467a1c2685a686dd566d4ed40074',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200328,\n", " 'state': 'MS',\n", " 'positive': 663,\n", " 'negative': 2560,\n", " 'pending': None,\n", " 'hospitalized': 219,\n", " 'death': 13,\n", " 'total': 3223,\n", " 'hash': '37be39d177f27107e3b3a5a0663681b8df69325b',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 3223,\n", " 'fips': '28',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 34,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 84,\n", " 'totalTestResultsIncrease': 84},\n", " {'date': 20200328,\n", " 'state': 'MT',\n", " 'positive': 129,\n", " 'negative': 3256,\n", " 'pending': None,\n", " 'hospitalized': 7,\n", " 'death': 1,\n", " 'total': 3385,\n", " 'hash': '7513b0f7bd85255430a0e1f99aa512adeca7c4ae',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 3385,\n", " 'fips': '30',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 666,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 687},\n", " {'date': 20200328,\n", " 'state': 'NC',\n", " 'positive': 935,\n", " 'negative': 16592,\n", " 'pending': None,\n", " 'hospitalized': 87,\n", " 'death': 4,\n", " 'total': 17527,\n", " 'hash': '6c1a0bb65d1d7ec7c17e54522c0b6ba7fddac5d6',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 17527,\n", " 'fips': '37',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 10,\n", " 'negativeIncrease': 2219,\n", " 'positiveIncrease': 172,\n", " 'totalTestResultsIncrease': 2391},\n", " {'date': 20200328,\n", " 'state': 'ND',\n", " 'positive': 83,\n", " 'negative': 2809,\n", " 'pending': None,\n", " 'hospitalized': 16,\n", " 'death': 1,\n", " 'total': 2892,\n", " 'hash': '327f76bbe39ccd8cf1b2cbf9ee1747bd419cb70a',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2892,\n", " 'fips': '38',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 3,\n", " 'negativeIncrease': 382,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 400},\n", " {'date': 20200328,\n", " 'state': 'NE',\n", " 'positive': 96,\n", " 'negative': 1904,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 2000,\n", " 'hash': '936157c283223d112cd1aa18d45b543d188ae577',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2000,\n", " 'fips': '31',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 143,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 154},\n", " {'date': 20200328,\n", " 'state': 'NH',\n", " 'positive': 187,\n", " 'negative': 3656,\n", " 'pending': 296,\n", " 'hospitalized': 30,\n", " 'death': 2,\n", " 'total': 4139,\n", " 'hash': '7f4a1008f74cd5b992793cc1a14227717b188b14',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 3843,\n", " 'fips': '33',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 5,\n", " 'negativeIncrease': 261,\n", " 'positiveIncrease': 29,\n", " 'totalTestResultsIncrease': 290},\n", " {'date': 20200328,\n", " 'state': 'NJ',\n", " 'positive': 11124,\n", " 'negative': 19386,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 140,\n", " 'total': 30510,\n", " 'hash': '6b1bd2572fa2c62e810ae1c4e98532c704f1e400',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 30510,\n", " 'fips': '34',\n", " 'deathIncrease': 32,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2839,\n", " 'positiveIncrease': 2299,\n", " 'totalTestResultsIncrease': 5138},\n", " {'date': 20200328,\n", " 'state': 'NM',\n", " 'positive': 191,\n", " 'negative': 9196,\n", " 'pending': None,\n", " 'hospitalized': 17,\n", " 'death': 1,\n", " 'total': 9387,\n", " 'hash': '40e614ee40536af9f0ad6d0648d8e00bd9f66187',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 9387,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 17,\n", " 'negativeIncrease': 819,\n", " 'positiveIncrease': 55,\n", " 'totalTestResultsIncrease': 874},\n", " {'date': 20200328,\n", " 'state': 'NV',\n", " 'positive': 621,\n", " 'negative': 7901,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 10,\n", " 'total': 8522,\n", " 'hash': 'dd0f7f450bd269db4ca880dc78574f7f59d63a5e',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 8522,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1740,\n", " 'positiveIncrease': 86,\n", " 'totalTestResultsIncrease': 1826},\n", " {'date': 20200328,\n", " 'state': 'NY',\n", " 'positive': 52318,\n", " 'negative': 103616,\n", " 'pending': None,\n", " 'hospitalized': 10054,\n", " 'death': 728,\n", " 'total': 155934,\n", " 'hash': '48075031d0fd463fcdb0367c15d2fda5b6883bfa',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 155934,\n", " 'fips': '36',\n", " 'deathIncrease': 209,\n", " 'hospitalizedIncrease': 1528,\n", " 'negativeIncrease': 2498,\n", " 'positiveIncrease': 7683,\n", " 'totalTestResultsIncrease': 10181},\n", " {'date': 20200328,\n", " 'state': 'OH',\n", " 'positive': 1406,\n", " 'negative': 19012,\n", " 'pending': None,\n", " 'hospitalized': 344,\n", " 'death': 25,\n", " 'total': 20418,\n", " 'hash': 'f16c2936b6d42faf0191c4dfdb0d7a95d5bd1e4b',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 20418,\n", " 'fips': '39',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 68,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 269,\n", " 'totalTestResultsIncrease': 269},\n", " {'date': 20200328,\n", " 'state': 'OK',\n", " 'positive': 377,\n", " 'negative': 1180,\n", " 'pending': None,\n", " 'hospitalized': 126,\n", " 'death': 15,\n", " 'total': 1557,\n", " 'hash': 'd4bfad814b5b93eda484b5aeda41a71459d6d49e',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 1557,\n", " 'fips': '40',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 21,\n", " 'negativeIncrease': 96,\n", " 'positiveIncrease': 55,\n", " 'totalTestResultsIncrease': 151},\n", " {'date': 20200328,\n", " 'state': 'OR',\n", " 'positive': 479,\n", " 'negative': 9693,\n", " 'pending': None,\n", " 'hospitalized': 117,\n", " 'death': 13,\n", " 'total': 10172,\n", " 'hash': '50450e8ead9a204cadc0719d0673414d2e3cc4e0',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 10172,\n", " 'fips': '41',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 15,\n", " 'negativeIncrease': 1183,\n", " 'positiveIncrease': 65,\n", " 'totalTestResultsIncrease': 1248},\n", " {'date': 20200328,\n", " 'state': 'PA',\n", " 'positive': 2751,\n", " 'negative': 25254,\n", " 'pending': None,\n", " 'hospitalized': 682,\n", " 'death': 34,\n", " 'total': 28005,\n", " 'hash': 'a138272d2a237d08ede9cb8f9fcb1faffcf9b7d8',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 28005,\n", " 'fips': '42',\n", " 'deathIncrease': 12,\n", " 'hospitalizedIncrease': 131,\n", " 'negativeIncrease': 4238,\n", " 'positiveIncrease': 533,\n", " 'totalTestResultsIncrease': 4771},\n", " {'date': 20200328,\n", " 'state': 'PR',\n", " 'positive': 100,\n", " 'negative': 739,\n", " 'pending': 792,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 1631,\n", " 'hash': '51921e8ecd67796a7012722ff74ef3b90177979c',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 839,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 220,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 241},\n", " {'date': 20200328,\n", " 'state': 'RI',\n", " 'positive': 203,\n", " 'negative': 2306,\n", " 'pending': 138,\n", " 'hospitalized': 28,\n", " 'death': None,\n", " 'total': 2647,\n", " 'hash': '7bdb9500e9204743f5717ac12560e015bd4f8ab2',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2509,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 5,\n", " 'negativeIncrease': 940,\n", " 'positiveIncrease': 38,\n", " 'totalTestResultsIncrease': 978},\n", " {'date': 20200328,\n", " 'state': 'SC',\n", " 'positive': 539,\n", " 'negative': 2408,\n", " 'pending': None,\n", " 'hospitalized': 129,\n", " 'death': 13,\n", " 'total': 2947,\n", " 'hash': '7b183f0f5f07cdec09fac173846f64bde68ab83d',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2947,\n", " 'fips': '45',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 20,\n", " 'negativeIncrease': 101,\n", " 'positiveIncrease': 83,\n", " 'totalTestResultsIncrease': 184},\n", " {'date': 20200328,\n", " 'state': 'SD',\n", " 'positive': 68,\n", " 'negative': 2592,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 2660,\n", " 'hash': '035db6e595733f1fdbd55e99bf62dbedd378ea6a',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2660,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 205,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 215},\n", " {'date': 20200328,\n", " 'state': 'TN',\n", " 'positive': 1373,\n", " 'negative': 16965,\n", " 'pending': None,\n", " 'hospitalized': 118,\n", " 'death': 6,\n", " 'total': 18338,\n", " 'hash': 'b039a87ddec68dd8b765db496689a4d9f53c6a64',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 18338,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 15,\n", " 'negativeIncrease': 2077,\n", " 'positiveIncrease': 170,\n", " 'totalTestResultsIncrease': 2247},\n", " {'date': 20200328,\n", " 'state': 'TX',\n", " 'positive': 2052,\n", " 'negative': 23208,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 27,\n", " 'total': 25260,\n", " 'hash': '99dfc03ce154cf5e62e21acc97fd188c2d5d6a44',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 25260,\n", " 'fips': '48',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1273,\n", " 'positiveIncrease': 321,\n", " 'totalTestResultsIncrease': 1594},\n", " {'date': 20200328,\n", " 'state': 'UT',\n", " 'positive': 602,\n", " 'negative': 10710,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 11312,\n", " 'hash': '420d1343cfcf7ebbfacba4950858bd17de0cc6d7',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 11312,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1946,\n", " 'positiveIncrease': 122,\n", " 'totalTestResultsIncrease': 2068},\n", " {'date': 20200328,\n", " 'state': 'VA',\n", " 'positive': 739,\n", " 'negative': 8427,\n", " 'pending': None,\n", " 'hospitalized': 99,\n", " 'death': 17,\n", " 'total': 9166,\n", " 'hash': '0df53b90e0f378737889e7f2945bcacb846dc69f',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 9166,\n", " 'fips': '51',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 16,\n", " 'negativeIncrease': 1694,\n", " 'positiveIncrease': 135,\n", " 'totalTestResultsIncrease': 1829},\n", " {'date': 20200328,\n", " 'state': 'VI',\n", " 'positive': 22,\n", " 'negative': 106,\n", " 'pending': 55,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 183,\n", " 'hash': '66de9cd425a928572f5aaae13dab685f32b428fd',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 128,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 51,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 54},\n", " {'date': 20200328,\n", " 'state': 'VT',\n", " 'positive': 211,\n", " 'negative': 2163,\n", " 'pending': None,\n", " 'hospitalized': 18,\n", " 'death': 12,\n", " 'total': 2374,\n", " 'hash': '0071a3e7343e8ec7083494bfd43a0907c1259fa4',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2374,\n", " 'fips': '50',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 86,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 113},\n", " {'date': 20200328,\n", " 'state': 'WA',\n", " 'positive': 3723,\n", " 'negative': 49015,\n", " 'pending': None,\n", " 'hospitalized': 254,\n", " 'death': 175,\n", " 'total': 52738,\n", " 'hash': '0c30c31bdfbfdf11198b5dea189ac2f9a4d3e7f5',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 52738,\n", " 'fips': '53',\n", " 'deathIncrease': 28,\n", " 'hospitalizedIncrease': 254,\n", " 'negativeIncrease': 5842,\n", " 'positiveIncrease': 516,\n", " 'totalTestResultsIncrease': 6358},\n", " {'date': 20200328,\n", " 'state': 'WI',\n", " 'positive': 989,\n", " 'negative': 15232,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 13,\n", " 'total': 16221,\n", " 'hash': '64137a9be9ebca4d2f0585cca9319064a1785a04',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 16221,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2092,\n", " 'positiveIncrease': 147,\n", " 'totalTestResultsIncrease': 2239},\n", " {'date': 20200328,\n", " 'state': 'WV',\n", " 'positive': 96,\n", " 'negative': 2331,\n", " 'pending': 6,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 2433,\n", " 'hash': '1a356d8df9f5461221287aae15a7ecf95e273aeb',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 2427,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 552,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 572},\n", " {'date': 20200328,\n", " 'state': 'WY',\n", " 'positive': 82,\n", " 'negative': 1475,\n", " 'pending': None,\n", " 'hospitalized': 14,\n", " 'death': 0,\n", " 'total': 1557,\n", " 'hash': '44a009ad19612b01340eeb3374d72c76d4db0168',\n", " 'dateChecked': '2020-03-28T20:00:00Z',\n", " 'totalTestResults': 1557,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 3,\n", " 'negativeIncrease': 264,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 276},\n", " {'date': 20200327,\n", " 'state': 'AK',\n", " 'positive': 69,\n", " 'negative': 2319,\n", " 'pending': 13,\n", " 'hospitalized': 3,\n", " 'death': 1,\n", " 'total': 2401,\n", " 'hash': '588f633d59494e4d58466fccfa9628c98568396b',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2388,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 518,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 528},\n", " {'date': 20200327,\n", " 'state': 'AL',\n", " 'positive': 587,\n", " 'negative': 4184,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 4771,\n", " 'hash': 'c3883f10c8760fdd9d196c5e2483205434bc4e0f',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 4771,\n", " 'fips': '01',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 591,\n", " 'positiveIncrease': 81,\n", " 'totalTestResultsIncrease': 672},\n", " {'date': 20200327,\n", " 'state': 'AR',\n", " 'positive': 381,\n", " 'negative': 1545,\n", " 'pending': 0,\n", " 'hospitalized': 48,\n", " 'death': 3,\n", " 'total': 1926,\n", " 'hash': 'a67d588363970b93865400184a7b96de73096b8d',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 1926,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 7,\n", " 'negativeIncrease': 41,\n", " 'positiveIncrease': 46,\n", " 'totalTestResultsIncrease': 87},\n", " {'date': 20200327,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '84bac05a7009ace4086a2e5280d56a5ccea95c40',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200327,\n", " 'state': 'AZ',\n", " 'positive': 736,\n", " 'negative': 7455,\n", " 'pending': 30,\n", " 'hospitalized': None,\n", " 'death': 13,\n", " 'total': 8221,\n", " 'hash': '81fb87573f6b5484fc4879e20ef93989c969d113',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 8191,\n", " 'fips': '04',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7108,\n", " 'positiveIncrease': 159,\n", " 'totalTestResultsIncrease': 7267},\n", " {'date': 20200327,\n", " 'state': 'CA',\n", " 'positive': 3879,\n", " 'negative': 17380,\n", " 'pending': 57400,\n", " 'hospitalized': 746,\n", " 'death': 78,\n", " 'total': 78659,\n", " 'hash': 'd7b5a1250b2f63a88e58953c8547feab1986f158',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 21259,\n", " 'fips': '06',\n", " 'deathIncrease': 13,\n", " 'hospitalizedIncrease': 746,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 873,\n", " 'totalTestResultsIncrease': 873},\n", " {'date': 20200327,\n", " 'state': 'CO',\n", " 'positive': 1430,\n", " 'negative': 8692,\n", " 'pending': None,\n", " 'hospitalized': 184,\n", " 'death': 24,\n", " 'total': 10122,\n", " 'hash': '47ea1cad10813f21f89b795589930e0be43ca6a1',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 10122,\n", " 'fips': '08',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 36,\n", " 'negativeIncrease': 1714,\n", " 'positiveIncrease': 344,\n", " 'totalTestResultsIncrease': 2058},\n", " {'date': 20200327,\n", " 'state': 'CT',\n", " 'positive': 1291,\n", " 'negative': 7109,\n", " 'pending': None,\n", " 'hospitalized': 173,\n", " 'death': 27,\n", " 'total': 8400,\n", " 'hash': '890423bc4025abb5384d27c05582d7b59db0de3c',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 8400,\n", " 'fips': '09',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 48,\n", " 'negativeIncrease': 1484,\n", " 'positiveIncrease': 279,\n", " 'totalTestResultsIncrease': 1763},\n", " {'date': 20200327,\n", " 'state': 'DC',\n", " 'positive': 267,\n", " 'negative': 1897,\n", " 'pending': 2,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2166,\n", " 'hash': '240b1b4a63a74f4ec3b4d336b27c067924f2a10d',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2164,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 271,\n", " 'positiveIncrease': 36,\n", " 'totalTestResultsIncrease': 307},\n", " {'date': 20200327,\n", " 'state': 'DE',\n", " 'positive': 163,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': 15,\n", " 'death': 2,\n", " 'total': 199,\n", " 'hash': '86c4ed17fc96d0ee24845dfe40520b0309719dc5',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 199,\n", " 'fips': '10',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 33,\n", " 'totalTestResultsIncrease': 33},\n", " {'date': 20200327,\n", " 'state': 'FL',\n", " 'positive': 2765,\n", " 'negative': 28186,\n", " 'pending': 1517,\n", " 'hospitalized': 456,\n", " 'death': 34,\n", " 'total': 32468,\n", " 'hash': '0e1d5593efe6879f19d20c35803507c8804a441b',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 30951,\n", " 'fips': '12',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 50,\n", " 'negativeIncrease': 4445,\n", " 'positiveIncrease': 410,\n", " 'totalTestResultsIncrease': 4855},\n", " {'date': 20200327,\n", " 'state': 'GA',\n", " 'positive': 2001,\n", " 'negative': 7864,\n", " 'pending': None,\n", " 'hospitalized': 566,\n", " 'death': 64,\n", " 'total': 9865,\n", " 'hash': 'dd6b7dd6696009bd61b1496b5991085af9c671c5',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 9865,\n", " 'fips': '13',\n", " 'deathIncrease': 16,\n", " 'hospitalizedIncrease': 93,\n", " 'negativeIncrease': 463,\n", " 'positiveIncrease': 476,\n", " 'totalTestResultsIncrease': 939},\n", " {'date': 20200327,\n", " 'state': 'GU',\n", " 'positive': 51,\n", " 'negative': 299,\n", " 'pending': None,\n", " 'hospitalized': 11,\n", " 'death': 1,\n", " 'total': 350,\n", " 'hash': 'd443e3eea9672e157b46032e03fef23dd2e3ab36',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 350,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 36,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 42},\n", " {'date': 20200327,\n", " 'state': 'HI',\n", " 'positive': 106,\n", " 'negative': 4357,\n", " 'pending': 3,\n", " 'hospitalized': 7,\n", " 'death': None,\n", " 'total': 4466,\n", " 'hash': '4d1d87d0e614c84477d5422f8efadfa6471cc63d',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 4463,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200327,\n", " 'state': 'IA',\n", " 'positive': 235,\n", " 'negative': 3740,\n", " 'pending': None,\n", " 'hospitalized': 50,\n", " 'death': 3,\n", " 'total': 3975,\n", " 'hash': '9746ef952e68dee4325828c80d479d87c6445adb',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 3975,\n", " 'fips': '19',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 4,\n", " 'negativeIncrease': 1162,\n", " 'positiveIncrease': 56,\n", " 'totalTestResultsIncrease': 1218},\n", " {'date': 20200327,\n", " 'state': 'ID',\n", " 'positive': 189,\n", " 'negative': 2668,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2857,\n", " 'hash': '64dd214b7617daca44b6cef40a73a6141577ce0a',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2857,\n", " 'fips': '16',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 603,\n", " 'positiveIncrease': 66,\n", " 'totalTestResultsIncrease': 669},\n", " {'date': 20200327,\n", " 'state': 'IL',\n", " 'positive': 3026,\n", " 'negative': 18516,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 34,\n", " 'total': 21542,\n", " 'hash': '7906e84cf401c8d0e94fccbc8cb91939d13c0caa',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 21542,\n", " 'fips': '17',\n", " 'deathIncrease': 8,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 4423,\n", " 'positiveIncrease': 488,\n", " 'totalTestResultsIncrease': 4911},\n", " {'date': 20200327,\n", " 'state': 'IN',\n", " 'positive': 981,\n", " 'negative': 5955,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 24,\n", " 'total': 6936,\n", " 'hash': '38d253f99cc16dd1052d9fe12840428d505de503',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 6936,\n", " 'fips': '18',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1949,\n", " 'positiveIncrease': 336,\n", " 'totalTestResultsIncrease': 2285},\n", " {'date': 20200327,\n", " 'state': 'KS',\n", " 'positive': 202,\n", " 'negative': 3229,\n", " 'pending': None,\n", " 'hospitalized': 27,\n", " 'death': 4,\n", " 'total': 3431,\n", " 'hash': 'a911d702bff86e3d2c74966a261b7ce13acf82a7',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 3431,\n", " 'fips': '20',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 27,\n", " 'negativeIncrease': 360,\n", " 'positiveIncrease': 34,\n", " 'totalTestResultsIncrease': 394},\n", " {'date': 20200327,\n", " 'state': 'KY',\n", " 'positive': 248,\n", " 'negative': 3768,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 6,\n", " 'total': 4016,\n", " 'hash': 'b6f0f0fe75111858fbfe5c6fe5859672a2b15c67',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 4016,\n", " 'fips': '21',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 666,\n", " 'positiveIncrease': 50,\n", " 'totalTestResultsIncrease': 716},\n", " {'date': 20200327,\n", " 'state': 'LA',\n", " 'positive': 2746,\n", " 'negative': 18613,\n", " 'pending': None,\n", " 'hospitalized': 773,\n", " 'death': 119,\n", " 'total': 21359,\n", " 'hash': 'a7547887a4ab78a94951426e7ca6344de9716e0a',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 21359,\n", " 'fips': '22',\n", " 'deathIncrease': 36,\n", " 'hospitalizedIncrease': 97,\n", " 'negativeIncrease': 2889,\n", " 'positiveIncrease': 441,\n", " 'totalTestResultsIncrease': 3330},\n", " {'date': 20200327,\n", " 'state': 'MA',\n", " 'positive': 3240,\n", " 'negative': 26131,\n", " 'pending': None,\n", " 'hospitalized': 219,\n", " 'death': 35,\n", " 'total': 29371,\n", " 'hash': 'b9bf45fcb70c3e0014a69cf888336e4438122510',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 29371,\n", " 'fips': '25',\n", " 'deathIncrease': 10,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 4927,\n", " 'positiveIncrease': 823,\n", " 'totalTestResultsIncrease': 5750},\n", " {'date': 20200327,\n", " 'state': 'MD',\n", " 'positive': 774,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': 173,\n", " 'death': 5,\n", " 'total': 868,\n", " 'hash': '9da0ce5d162989adc7a53690b69621880debc51f',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 868,\n", " 'fips': '24',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 41,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 194,\n", " 'totalTestResultsIncrease': 194},\n", " {'date': 20200327,\n", " 'state': 'ME',\n", " 'positive': 168,\n", " 'negative': 3394,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 3562,\n", " 'hash': '889034488e610c4643e22d3c4f851670c17116ca',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 3562,\n", " 'fips': '23',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 13},\n", " {'date': 20200327,\n", " 'state': 'MI',\n", " 'positive': 3657,\n", " 'negative': 6550,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 92,\n", " 'total': 10207,\n", " 'hash': '2e6ce565a08a826ca05a17c6f49a421f05f5221a',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 10207,\n", " 'fips': '26',\n", " 'deathIncrease': 32,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 801,\n", " 'totalTestResultsIncrease': 801},\n", " {'date': 20200327,\n", " 'state': 'MN',\n", " 'positive': 398,\n", " 'negative': 13605,\n", " 'pending': None,\n", " 'hospitalized': 51,\n", " 'death': 4,\n", " 'total': 14003,\n", " 'hash': '9e494f78ad18173c861378a174bd9e9968253401',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 14003,\n", " 'fips': '27',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 10,\n", " 'negativeIncrease': 1001,\n", " 'positiveIncrease': 52,\n", " 'totalTestResultsIncrease': 1053},\n", " {'date': 20200327,\n", " 'state': 'MO',\n", " 'positive': 669,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 1038,\n", " 'hash': '041cebb3edf4df3a4dab42d8e5f4054bde64fec1',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 1038,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 167,\n", " 'totalTestResultsIncrease': 167},\n", " {'date': 20200327,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '0a09eb3bd334b9c2043fa9f210f5b3297f86f355',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200327,\n", " 'state': 'MS',\n", " 'positive': 579,\n", " 'negative': 2560,\n", " 'pending': None,\n", " 'hospitalized': 185,\n", " 'death': 8,\n", " 'total': 3139,\n", " 'hash': '086392aa819f45263d1db69799b5a8f12d5e6282',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 3139,\n", " 'fips': '28',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 35,\n", " 'negativeIncrease': 269,\n", " 'positiveIncrease': 94,\n", " 'totalTestResultsIncrease': 363},\n", " {'date': 20200327,\n", " 'state': 'MT',\n", " 'positive': 108,\n", " 'negative': 2590,\n", " 'pending': None,\n", " 'hospitalized': 7,\n", " 'death': None,\n", " 'total': 2698,\n", " 'hash': 'b58e79a132833c55d910739a96c583d8671711a7',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2698,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 6,\n", " 'negativeIncrease': 462,\n", " 'positiveIncrease': 37,\n", " 'totalTestResultsIncrease': 499},\n", " {'date': 20200327,\n", " 'state': 'NC',\n", " 'positive': 763,\n", " 'negative': 14373,\n", " 'pending': None,\n", " 'hospitalized': 77,\n", " 'death': 3,\n", " 'total': 15136,\n", " 'hash': 'a3f28be3fc93485dbafab662d84dc87c1360f589',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 15136,\n", " 'fips': '37',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 48,\n", " 'negativeIncrease': 2099,\n", " 'positiveIncrease': 127,\n", " 'totalTestResultsIncrease': 2226},\n", " {'date': 20200327,\n", " 'state': 'ND',\n", " 'positive': 65,\n", " 'negative': 2427,\n", " 'pending': None,\n", " 'hospitalized': 13,\n", " 'death': 0,\n", " 'total': 2492,\n", " 'hash': 'd17a82e430f6993a6833647f1d27016c718b9f3f',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2492,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 3,\n", " 'negativeIncrease': 388,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 401},\n", " {'date': 20200327,\n", " 'state': 'NE',\n", " 'positive': 85,\n", " 'negative': 1761,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1846,\n", " 'hash': '8246ae9f91c7755dcbc32eb5a505ec21e2be1740',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 1846,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 177,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 189},\n", " {'date': 20200327,\n", " 'state': 'NH',\n", " 'positive': 158,\n", " 'negative': 3395,\n", " 'pending': 592,\n", " 'hospitalized': 25,\n", " 'death': 1,\n", " 'total': 4145,\n", " 'hash': '98e786378941f26be94eb285222c42d65bcc9b8b',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 3553,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 6,\n", " 'negativeIncrease': 394,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 415},\n", " {'date': 20200327,\n", " 'state': 'NJ',\n", " 'positive': 8825,\n", " 'negative': 16547,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 108,\n", " 'total': 25372,\n", " 'hash': '0d39578151f81e5673a2dcc01976b9571e5aa75d',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 25372,\n", " 'fips': '34',\n", " 'deathIncrease': 27,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2886,\n", " 'positiveIncrease': 1949,\n", " 'totalTestResultsIncrease': 4835},\n", " {'date': 20200327,\n", " 'state': 'NM',\n", " 'positive': 136,\n", " 'negative': 8377,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 8513,\n", " 'hash': '5c149eabc29617580ecaddffefb02b7eecbb7fee',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 8513,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 696,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 720},\n", " {'date': 20200327,\n", " 'state': 'NV',\n", " 'positive': 535,\n", " 'negative': 6161,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 10,\n", " 'total': 6696,\n", " 'hash': '927461986e317a63dd25576235c91813eb7e887e',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 6696,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1464,\n", " 'positiveIncrease': 115,\n", " 'totalTestResultsIncrease': 1579},\n", " {'date': 20200327,\n", " 'state': 'NY',\n", " 'positive': 44635,\n", " 'negative': 101118,\n", " 'pending': None,\n", " 'hospitalized': 8526,\n", " 'death': 519,\n", " 'total': 145753,\n", " 'hash': '315e7bd97946c9c63a1b2d0648a51d3e73e6b51c',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 145753,\n", " 'fips': '36',\n", " 'deathIncrease': 134,\n", " 'hospitalizedIncrease': 1682,\n", " 'negativeIncrease': 16272,\n", " 'positiveIncrease': 7377,\n", " 'totalTestResultsIncrease': 23649},\n", " {'date': 20200327,\n", " 'state': 'OH',\n", " 'positive': 1137,\n", " 'negative': 19012,\n", " 'pending': None,\n", " 'hospitalized': 276,\n", " 'death': 19,\n", " 'total': 20149,\n", " 'hash': '35925f32120bbbb19224cee1f3f1385174e0759e',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 20149,\n", " 'fips': '39',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 53,\n", " 'negativeIncrease': 2563,\n", " 'positiveIncrease': 270,\n", " 'totalTestResultsIncrease': 2833},\n", " {'date': 20200327,\n", " 'state': 'OK',\n", " 'positive': 322,\n", " 'negative': 1084,\n", " 'pending': None,\n", " 'hospitalized': 105,\n", " 'death': 8,\n", " 'total': 1406,\n", " 'hash': '900fbe870a20e7992a71c1ec9d8527c140fd9e28',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 1406,\n", " 'fips': '40',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 19,\n", " 'negativeIncrease': 126,\n", " 'positiveIncrease': 74,\n", " 'totalTestResultsIncrease': 200},\n", " {'date': 20200327,\n", " 'state': 'OR',\n", " 'positive': 414,\n", " 'negative': 8510,\n", " 'pending': None,\n", " 'hospitalized': 102,\n", " 'death': 12,\n", " 'total': 8924,\n", " 'hash': '0b7d00e5ee9f4f5caa2694a35e0b787a9a3d6d76',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 8924,\n", " 'fips': '41',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 12,\n", " 'negativeIncrease': 1557,\n", " 'positiveIncrease': 87,\n", " 'totalTestResultsIncrease': 1644},\n", " {'date': 20200327,\n", " 'state': 'PA',\n", " 'positive': 2218,\n", " 'negative': 21016,\n", " 'pending': None,\n", " 'hospitalized': 551,\n", " 'death': 22,\n", " 'total': 23234,\n", " 'hash': 'ca765213011791d9ee3ecfb2abbcba1cbb7ce4e0',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 23234,\n", " 'fips': '42',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 551,\n", " 'negativeIncrease': 4575,\n", " 'positiveIncrease': 531,\n", " 'totalTestResultsIncrease': 5106},\n", " {'date': 20200327,\n", " 'state': 'PR',\n", " 'positive': 79,\n", " 'negative': 519,\n", " 'pending': 334,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 932,\n", " 'hash': 'e24ff31107a50572d23df58122885770c0140e34',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 598,\n", " 'fips': '72',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 142,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 157},\n", " {'date': 20200327,\n", " 'state': 'RI',\n", " 'positive': 165,\n", " 'negative': 1366,\n", " 'pending': 138,\n", " 'hospitalized': 23,\n", " 'death': None,\n", " 'total': 1669,\n", " 'hash': '5b4e302b5d340d03e592767e998b27ef7f003f80',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 1531,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 27},\n", " {'date': 20200327,\n", " 'state': 'SC',\n", " 'positive': 456,\n", " 'negative': 2307,\n", " 'pending': None,\n", " 'hospitalized': 109,\n", " 'death': 9,\n", " 'total': 2763,\n", " 'hash': '0cd8826e56fb3a4b91a7cd26668be0e064504067',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2763,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200327,\n", " 'state': 'SD',\n", " 'positive': 58,\n", " 'negative': 2387,\n", " 'pending': 20,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 2465,\n", " 'hash': '8954a7676c73679458bbd452884b2ea11f63fe71',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2445,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 414,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 426},\n", " {'date': 20200327,\n", " 'state': 'TN',\n", " 'positive': 1203,\n", " 'negative': 14888,\n", " 'pending': None,\n", " 'hospitalized': 103,\n", " 'death': 6,\n", " 'total': 16091,\n", " 'hash': '57a212977797119fa0ef4876f9ca783b3c8cba63',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 16091,\n", " 'fips': '47',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 27,\n", " 'negativeIncrease': 936,\n", " 'positiveIncrease': 246,\n", " 'totalTestResultsIncrease': 1182},\n", " {'date': 20200327,\n", " 'state': 'TX',\n", " 'positive': 1731,\n", " 'negative': 21935,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 23,\n", " 'total': 23666,\n", " 'hash': '4f9689bbee1981b2c94c62ca7394e4db47ba2aef',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 23666,\n", " 'fips': '48',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1907,\n", " 'positiveIncrease': 335,\n", " 'totalTestResultsIncrease': 2242},\n", " {'date': 20200327,\n", " 'state': 'UT',\n", " 'positive': 480,\n", " 'negative': 8764,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 9244,\n", " 'hash': '063e28b939df0d8faeaafb11a4197d98ceb84752',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 9244,\n", " 'fips': '49',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1456,\n", " 'positiveIncrease': 78,\n", " 'totalTestResultsIncrease': 1534},\n", " {'date': 20200327,\n", " 'state': 'VA',\n", " 'positive': 604,\n", " 'negative': 6733,\n", " 'pending': None,\n", " 'hospitalized': 83,\n", " 'death': 14,\n", " 'total': 7337,\n", " 'hash': '1f6f2375fe66673e5103abb455c3fdc1de06ac33',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 7337,\n", " 'fips': '51',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 18,\n", " 'negativeIncrease': 1004,\n", " 'positiveIncrease': 144,\n", " 'totalTestResultsIncrease': 1148},\n", " {'date': 20200327,\n", " 'state': 'VI',\n", " 'positive': 19,\n", " 'negative': 55,\n", " 'pending': 2,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 76,\n", " 'hash': '646672fa7b2d8ba43491061d09664e33f4c3f29a',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 74,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200327,\n", " 'state': 'VT',\n", " 'positive': 184,\n", " 'negative': 2077,\n", " 'pending': None,\n", " 'hospitalized': 18,\n", " 'death': 10,\n", " 'total': 2261,\n", " 'hash': 'd349c5c20ac8534547e25aa173f0db65ffcca069',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 2261,\n", " 'fips': '50',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 18,\n", " 'negativeIncrease': 227,\n", " 'positiveIncrease': 26,\n", " 'totalTestResultsIncrease': 253},\n", " {'date': 20200327,\n", " 'state': 'WA',\n", " 'positive': 3207,\n", " 'negative': 43173,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 147,\n", " 'total': 46380,\n", " 'hash': '3b14410e3c31a72e1e3eff10b17679a1c946d360',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 46380,\n", " 'fips': '53',\n", " 'deathIncrease': 15,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 11461,\n", " 'positiveIncrease': 627,\n", " 'totalTestResultsIncrease': 12088},\n", " {'date': 20200327,\n", " 'state': 'WI',\n", " 'positive': 842,\n", " 'negative': 13140,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 13,\n", " 'total': 13982,\n", " 'hash': '103b3236af903a8860fd6b98a2289d74ecd89e76',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 13982,\n", " 'fips': '55',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1557,\n", " 'positiveIncrease': 135,\n", " 'totalTestResultsIncrease': 1692},\n", " {'date': 20200327,\n", " 'state': 'WV',\n", " 'positive': 76,\n", " 'negative': 1779,\n", " 'pending': 43,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 1898,\n", " 'hash': 'aa9a6ceb818075a98206986c7816d184d527ac5d',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 1855,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 748,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 773},\n", " {'date': 20200327,\n", " 'state': 'WY',\n", " 'positive': 70,\n", " 'negative': 1211,\n", " 'pending': None,\n", " 'hospitalized': 11,\n", " 'death': 0,\n", " 'total': 1281,\n", " 'hash': '520b116fbe1bb79a5347ba8191856d0f0158375b',\n", " 'dateChecked': '2020-03-27T20:00:00Z',\n", " 'totalTestResults': 1281,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 11,\n", " 'negativeIncrease': 159,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 176},\n", " {'date': 20200326,\n", " 'state': 'AK',\n", " 'positive': 59,\n", " 'negative': 1801,\n", " 'pending': None,\n", " 'hospitalized': 3,\n", " 'death': 1,\n", " 'total': 1860,\n", " 'hash': 'bb8baf185872d88ff161657a159c8d42ba59d68e',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1860,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 152,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 169},\n", " {'date': 20200326,\n", " 'state': 'AL',\n", " 'positive': 506,\n", " 'negative': 3593,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 4099,\n", " 'hash': '3ed24ace840e59a47c3420308242d5db16f983ea',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 4099,\n", " 'fips': '01',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1064,\n", " 'positiveIncrease': 223,\n", " 'totalTestResultsIncrease': 1287},\n", " {'date': 20200326,\n", " 'state': 'AR',\n", " 'positive': 335,\n", " 'negative': 1504,\n", " 'pending': 0,\n", " 'hospitalized': 41,\n", " 'death': 3,\n", " 'total': 1839,\n", " 'hash': '4701eb06109a0e8901648e004a1209f24375a7de',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1839,\n", " 'fips': '05',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 19,\n", " 'negativeIncrease': 67,\n", " 'positiveIncrease': 55,\n", " 'totalTestResultsIncrease': 122},\n", " {'date': 20200326,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '534e4aa3749df88a58af5d7fbc5f43d304010523',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200326,\n", " 'state': 'AZ',\n", " 'positive': 577,\n", " 'negative': 347,\n", " 'pending': 33,\n", " 'hospitalized': 66,\n", " 'death': 8,\n", " 'total': 957,\n", " 'hash': '68a18075e16dd62d2cb29b74cd13c97e74ec8fa2',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 924,\n", " 'fips': '04',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 58,\n", " 'negativeIncrease': 24,\n", " 'positiveIncrease': 127,\n", " 'totalTestResultsIncrease': 151},\n", " {'date': 20200326,\n", " 'state': 'CA',\n", " 'positive': 3006,\n", " 'negative': 17380,\n", " 'pending': 57400,\n", " 'hospitalized': None,\n", " 'death': 65,\n", " 'total': 77786,\n", " 'hash': '7e64b7b706c2abbfa703b6a88da8eb4cf925b01b',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 20386,\n", " 'fips': '06',\n", " 'deathIncrease': 12,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1459,\n", " 'positiveIncrease': 651,\n", " 'totalTestResultsIncrease': 2110},\n", " {'date': 20200326,\n", " 'state': 'CO',\n", " 'positive': 1086,\n", " 'negative': 6978,\n", " 'pending': None,\n", " 'hospitalized': 148,\n", " 'death': 19,\n", " 'total': 8064,\n", " 'hash': '79d1cf349e0d9ce4a7af36d9852d827f96451c21',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 8064,\n", " 'fips': '08',\n", " 'deathIncrease': 8,\n", " 'hospitalizedIncrease': 64,\n", " 'negativeIncrease': 189,\n", " 'positiveIncrease': 174,\n", " 'totalTestResultsIncrease': 363},\n", " {'date': 20200326,\n", " 'state': 'CT',\n", " 'positive': 1012,\n", " 'negative': 5625,\n", " 'pending': None,\n", " 'hospitalized': 125,\n", " 'death': 21,\n", " 'total': 6637,\n", " 'hash': '6f853c15409c773ea737ef2d5e4f3be5b2008215',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 6637,\n", " 'fips': '09',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 12,\n", " 'negativeIncrease': 602,\n", " 'positiveIncrease': 137,\n", " 'totalTestResultsIncrease': 739},\n", " {'date': 20200326,\n", " 'state': 'DC',\n", " 'positive': 231,\n", " 'negative': 1626,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 1858,\n", " 'hash': 'cdbfecf50ae3692734ecbfe9f2c9983e1bb61015',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1857,\n", " 'fips': '11',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 203,\n", " 'positiveIncrease': 48,\n", " 'totalTestResultsIncrease': 251},\n", " {'date': 20200326,\n", " 'state': 'DE',\n", " 'positive': 130,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': 13,\n", " 'death': 1,\n", " 'total': 166,\n", " 'hash': '63b8aeda8018a12f092ba94db6d25fc29c4c6b94',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 166,\n", " 'fips': '10',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 15},\n", " {'date': 20200326,\n", " 'state': 'FL',\n", " 'positive': 2355,\n", " 'negative': 23741,\n", " 'pending': 1443,\n", " 'hospitalized': 406,\n", " 'death': 28,\n", " 'total': 27539,\n", " 'hash': '4172dd2b8f113dc69068014f43c9c1da9096c87d',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 26096,\n", " 'fips': '12',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 90,\n", " 'negativeIncrease': 8367,\n", " 'positiveIncrease': 673,\n", " 'totalTestResultsIncrease': 9040},\n", " {'date': 20200326,\n", " 'state': 'GA',\n", " 'positive': 1525,\n", " 'negative': 7401,\n", " 'pending': None,\n", " 'hospitalized': 473,\n", " 'death': 48,\n", " 'total': 8926,\n", " 'hash': '3cdd9821d18b1f1340b3ebcfc1c8d04abb53ce95',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 8926,\n", " 'fips': '13',\n", " 'deathIncrease': 8,\n", " 'hospitalizedIncrease': 79,\n", " 'negativeIncrease': 2469,\n", " 'positiveIncrease': 278,\n", " 'totalTestResultsIncrease': 2747},\n", " {'date': 20200326,\n", " 'state': 'GU',\n", " 'positive': 45,\n", " 'negative': 263,\n", " 'pending': None,\n", " 'hospitalized': 11,\n", " 'death': 1,\n", " 'total': 308,\n", " 'hash': '0319c8b7fa31ed1ffb03e1ade4a3a2ccd659c36b',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 308,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 30,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 38},\n", " {'date': 20200326,\n", " 'state': 'HI',\n", " 'positive': 95,\n", " 'negative': 4357,\n", " 'pending': None,\n", " 'hospitalized': 5,\n", " 'death': None,\n", " 'total': 4452,\n", " 'hash': '591602a1ff63d2e94199f65317128ad1bd8b16cd',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 4452,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': -1,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200326,\n", " 'state': 'IA',\n", " 'positive': 179,\n", " 'negative': 2578,\n", " 'pending': None,\n", " 'hospitalized': 46,\n", " 'death': 1,\n", " 'total': 2757,\n", " 'hash': '39aaf7f4bfbe3bc1a18b3a2c1864ac6a53c5311f',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2757,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 10,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 34,\n", " 'totalTestResultsIncrease': 34},\n", " {'date': 20200326,\n", " 'state': 'ID',\n", " 'positive': 123,\n", " 'negative': 2065,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 2188,\n", " 'hash': 'b996c35868f581e2178e56c337281e42ba3f5e04',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2188,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 178,\n", " 'positiveIncrease': 50,\n", " 'totalTestResultsIncrease': 228},\n", " {'date': 20200326,\n", " 'state': 'IL',\n", " 'positive': 2538,\n", " 'negative': 14093,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 26,\n", " 'total': 16631,\n", " 'hash': 'bda9cdd7e4f5646b5fcf38e11fee90e2981c782d',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 16631,\n", " 'fips': '17',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1749,\n", " 'positiveIncrease': 673,\n", " 'totalTestResultsIncrease': 2422},\n", " {'date': 20200326,\n", " 'state': 'IN',\n", " 'positive': 645,\n", " 'negative': 4006,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 17,\n", " 'total': 4651,\n", " 'hash': 'dccc280c3c97a1b043fc3c36f7b9df2adde302f6',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 4651,\n", " 'fips': '18',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1127,\n", " 'positiveIncrease': 168,\n", " 'totalTestResultsIncrease': 1295},\n", " {'date': 20200326,\n", " 'state': 'KS',\n", " 'positive': 168,\n", " 'negative': 2869,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 3037,\n", " 'hash': 'eb1c18dc3506f950a6fea9a578521534456a2c6e',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 3037,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 509,\n", " 'positiveIncrease': 42,\n", " 'totalTestResultsIncrease': 551},\n", " {'date': 20200326,\n", " 'state': 'KY',\n", " 'positive': 198,\n", " 'negative': 3102,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 3300,\n", " 'hash': '576434aafa04bbfa9cc04bdcf39d10085b902304',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 3300,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 237,\n", " 'positiveIncrease': 41,\n", " 'totalTestResultsIncrease': 278},\n", " {'date': 20200326,\n", " 'state': 'LA',\n", " 'positive': 2305,\n", " 'negative': 15724,\n", " 'pending': None,\n", " 'hospitalized': 676,\n", " 'death': 83,\n", " 'total': 18029,\n", " 'hash': '3985f09a58cfc8c3b1e902115f292033f3a12d56',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 18029,\n", " 'fips': '22',\n", " 'deathIncrease': 18,\n", " 'hospitalizedIncrease': 185,\n", " 'negativeIncrease': 6068,\n", " 'positiveIncrease': 510,\n", " 'totalTestResultsIncrease': 6578},\n", " {'date': 20200326,\n", " 'state': 'MA',\n", " 'positive': 2417,\n", " 'negative': 21204,\n", " 'pending': None,\n", " 'hospitalized': 219,\n", " 'death': 25,\n", " 'total': 23621,\n", " 'hash': '6f7fd972eb35e3e1fe4ed40a1faf078c85925e2c',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 23621,\n", " 'fips': '25',\n", " 'deathIncrease': 10,\n", " 'hospitalizedIncrease': 116,\n", " 'negativeIncrease': 3248,\n", " 'positiveIncrease': 579,\n", " 'totalTestResultsIncrease': 3827},\n", " {'date': 20200326,\n", " 'state': 'MD',\n", " 'positive': 580,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': 132,\n", " 'death': 4,\n", " 'total': 674,\n", " 'hash': 'c6a9e9721887079a5eac6aeb8bad1e242542b699',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 674,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 132,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 157,\n", " 'totalTestResultsIncrease': 157},\n", " {'date': 20200326,\n", " 'state': 'ME',\n", " 'positive': 155,\n", " 'negative': 3394,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3549,\n", " 'hash': 'fb515eba44cc6656694d2684fd61e6173df35b76',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 3549,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 217,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 223},\n", " {'date': 20200326,\n", " 'state': 'MI',\n", " 'positive': 2856,\n", " 'negative': 6550,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 60,\n", " 'total': 9406,\n", " 'hash': '8de6cd66adbb249077434a34b76676f3e3528591',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 9406,\n", " 'fips': '26',\n", " 'deathIncrease': 17,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 4481,\n", " 'positiveIncrease': 562,\n", " 'totalTestResultsIncrease': 5043},\n", " {'date': 20200326,\n", " 'state': 'MN',\n", " 'positive': 346,\n", " 'negative': 12604,\n", " 'pending': None,\n", " 'hospitalized': 41,\n", " 'death': 2,\n", " 'total': 12950,\n", " 'hash': 'b706d98263f09589f6338391ffa2d3a2c5f9dad5',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 12950,\n", " 'fips': '27',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 6,\n", " 'negativeIncrease': 1416,\n", " 'positiveIncrease': 59,\n", " 'totalTestResultsIncrease': 1475},\n", " {'date': 20200326,\n", " 'state': 'MO',\n", " 'positive': 502,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 871,\n", " 'hash': '90c8a2d640624774ca249ec49b18a55586e9c93d',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 871,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 146,\n", " 'totalTestResultsIncrease': 146},\n", " {'date': 20200326,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '26c69d9ccd11d980173738f7a5d6f4319ca3cc15',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200326,\n", " 'state': 'MS',\n", " 'positive': 485,\n", " 'negative': 2291,\n", " 'pending': None,\n", " 'hospitalized': 150,\n", " 'death': 6,\n", " 'total': 2776,\n", " 'hash': '3ebc31ffc01578912d6cb57fa9e1215f63c105d3',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2776,\n", " 'fips': '28',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 33,\n", " 'negativeIncrease': 725,\n", " 'positiveIncrease': 108,\n", " 'totalTestResultsIncrease': 833},\n", " {'date': 20200326,\n", " 'state': 'MT',\n", " 'positive': 71,\n", " 'negative': 2128,\n", " 'pending': None,\n", " 'hospitalized': 1,\n", " 'death': None,\n", " 'total': 2199,\n", " 'hash': '6fc9dacb9ffa97d5e7728dbecf95308f27c07fd6',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2199,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 180,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 198},\n", " {'date': 20200326,\n", " 'state': 'NC',\n", " 'positive': 636,\n", " 'negative': 12274,\n", " 'pending': None,\n", " 'hospitalized': 29,\n", " 'death': 2,\n", " 'total': 12910,\n", " 'hash': '0ed3d6c3fa3f195980047f320223916d31a04d0f',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 12910,\n", " 'fips': '37',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2289,\n", " 'positiveIncrease': 132,\n", " 'totalTestResultsIncrease': 2421},\n", " {'date': 20200326,\n", " 'state': 'ND',\n", " 'positive': 52,\n", " 'negative': 2039,\n", " 'pending': None,\n", " 'hospitalized': 10,\n", " 'death': 0,\n", " 'total': 2091,\n", " 'hash': '49974b047319ab02d855a61da4a0d00ef573983e',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2091,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 305,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 318},\n", " {'date': 20200326,\n", " 'state': 'NE',\n", " 'positive': 73,\n", " 'negative': 1584,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1657,\n", " 'hash': 'f9dc8803dded20eadc5493d1a086054ac3a24dfd',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1657,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 280,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 292},\n", " {'date': 20200326,\n", " 'state': 'NH',\n", " 'positive': 137,\n", " 'negative': 3001,\n", " 'pending': 712,\n", " 'hospitalized': 19,\n", " 'death': 1,\n", " 'total': 3850,\n", " 'hash': '16ba786267f8de9d3b7dd0bac1e7589b33b6ea52',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 3138,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 6,\n", " 'negativeIncrease': 645,\n", " 'positiveIncrease': 29,\n", " 'totalTestResultsIncrease': 674},\n", " {'date': 20200326,\n", " 'state': 'NJ',\n", " 'positive': 6876,\n", " 'negative': 13661,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 81,\n", " 'total': 20537,\n", " 'hash': '34f7a9a850720f81a711f094945383400616d38d',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 20537,\n", " 'fips': '34',\n", " 'deathIncrease': 19,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 3209,\n", " 'positiveIncrease': 2474,\n", " 'totalTestResultsIncrease': 5683},\n", " {'date': 20200326,\n", " 'state': 'NM',\n", " 'positive': 112,\n", " 'negative': 7681,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 7793,\n", " 'hash': 'c442ccd67759231e7886ec30300ced12ce18f940',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 7793,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 939,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 951},\n", " {'date': 20200326,\n", " 'state': 'NV',\n", " 'positive': 420,\n", " 'negative': 4697,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 10,\n", " 'total': 5117,\n", " 'hash': '1d6b1078fe874f1a19f7d5ec27cac4cbc3625106',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 5117,\n", " 'fips': '32',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 446,\n", " 'positiveIncrease': 99,\n", " 'totalTestResultsIncrease': 545},\n", " {'date': 20200326,\n", " 'state': 'NY',\n", " 'positive': 37258,\n", " 'negative': 84846,\n", " 'pending': None,\n", " 'hospitalized': 6844,\n", " 'death': 385,\n", " 'total': 122104,\n", " 'hash': '6061eb67c93494274fdee89bdc8bbc80e197f475',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 122104,\n", " 'fips': '36',\n", " 'deathIncrease': 100,\n", " 'hospitalizedIncrease': 3039,\n", " 'negativeIncrease': 12178,\n", " 'positiveIncrease': 6447,\n", " 'totalTestResultsIncrease': 18625},\n", " {'date': 20200326,\n", " 'state': 'OH',\n", " 'positive': 867,\n", " 'negative': 16449,\n", " 'pending': None,\n", " 'hospitalized': 223,\n", " 'death': 15,\n", " 'total': 17316,\n", " 'hash': '980c2c50865094a5ca418f7f8dcce9fd24dde422',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 17316,\n", " 'fips': '39',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 41,\n", " 'negativeIncrease': 2389,\n", " 'positiveIncrease': 163,\n", " 'totalTestResultsIncrease': 2552},\n", " {'date': 20200326,\n", " 'state': 'OK',\n", " 'positive': 248,\n", " 'negative': 958,\n", " 'pending': None,\n", " 'hospitalized': 86,\n", " 'death': 7,\n", " 'total': 1206,\n", " 'hash': '8801b586d8e862f81715da16dc26e591c8b0282d',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1206,\n", " 'fips': '40',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 27,\n", " 'negativeIncrease': 153,\n", " 'positiveIncrease': 84,\n", " 'totalTestResultsIncrease': 237},\n", " {'date': 20200326,\n", " 'state': 'OR',\n", " 'positive': 327,\n", " 'negative': 6953,\n", " 'pending': None,\n", " 'hospitalized': 90,\n", " 'death': 11,\n", " 'total': 7280,\n", " 'hash': 'f4fb4c00a275aa00d796613554a351d733deba05',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 7280,\n", " 'fips': '41',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 29,\n", " 'negativeIncrease': 2603,\n", " 'positiveIncrease': 118,\n", " 'totalTestResultsIncrease': 2721},\n", " {'date': 20200326,\n", " 'state': 'PA',\n", " 'positive': 1687,\n", " 'negative': 16441,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 16,\n", " 'total': 18128,\n", " 'hash': 'e714b135bf15ebb5a7bbad3151113b1b78b8fb0c',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 18128,\n", " 'fips': '42',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 5248,\n", " 'positiveIncrease': 560,\n", " 'totalTestResultsIncrease': 5808},\n", " {'date': 20200326,\n", " 'state': 'PR',\n", " 'positive': 64,\n", " 'negative': 377,\n", " 'pending': 335,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 776,\n", " 'hash': 'd6643348392f952bb17ed6f46f7ffa0e864403dc',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 441,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 60,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 73},\n", " {'date': 20200326,\n", " 'state': 'RI',\n", " 'positive': 165,\n", " 'negative': 1339,\n", " 'pending': 181,\n", " 'hospitalized': 23,\n", " 'death': None,\n", " 'total': 1685,\n", " 'hash': 'e1a7f1b17103c547d376ff10daece812c341e5d1',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1504,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 7,\n", " 'negativeIncrease': 196,\n", " 'positiveIncrease': 41,\n", " 'totalTestResultsIncrease': 237},\n", " {'date': 20200326,\n", " 'state': 'SC',\n", " 'positive': 456,\n", " 'negative': 2307,\n", " 'pending': None,\n", " 'hospitalized': 109,\n", " 'death': 9,\n", " 'total': 2763,\n", " 'hash': 'c2f15bb8173c1e01eb544f4ef56b5a7b90882ff5',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2763,\n", " 'fips': '45',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 7,\n", " 'negativeIncrease': 4,\n", " 'positiveIncrease': 32,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200326,\n", " 'state': 'SD',\n", " 'positive': 46,\n", " 'negative': 1973,\n", " 'pending': 125,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 2144,\n", " 'hash': 'dc2c035329319b68ceb68b859b881c0ac664767a',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2019,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1154,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 1159},\n", " {'date': 20200326,\n", " 'state': 'TN',\n", " 'positive': 957,\n", " 'negative': 13952,\n", " 'pending': None,\n", " 'hospitalized': 76,\n", " 'death': 3,\n", " 'total': 14909,\n", " 'hash': 'f35af5677002e7cbe7b2b92675d46b7573a34753',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 14909,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 23,\n", " 'negativeIncrease': 2940,\n", " 'positiveIncrease': 173,\n", " 'totalTestResultsIncrease': 3113},\n", " {'date': 20200326,\n", " 'state': 'TX',\n", " 'positive': 1396,\n", " 'negative': 20028,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 18,\n", " 'total': 21424,\n", " 'hash': '33ac609e1f7bd911f98af6f86d2ae80cce029686',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 21424,\n", " 'fips': '48',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7508,\n", " 'positiveIncrease': 422,\n", " 'totalTestResultsIncrease': 7930},\n", " {'date': 20200326,\n", " 'state': 'UT',\n", " 'positive': 402,\n", " 'negative': 7308,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 7710,\n", " 'hash': '93984738db4c5057bd380c57e3c933bb5a298f81',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 7710,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 817,\n", " 'positiveIncrease': 56,\n", " 'totalTestResultsIncrease': 873},\n", " {'date': 20200326,\n", " 'state': 'VA',\n", " 'positive': 460,\n", " 'negative': 5729,\n", " 'pending': None,\n", " 'hospitalized': 65,\n", " 'death': 13,\n", " 'total': 6189,\n", " 'hash': 'a60e45db2a29cf2bfd56ce702a29ed52ff5db3d2',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 6189,\n", " 'fips': '51',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 6,\n", " 'negativeIncrease': 750,\n", " 'positiveIncrease': 69,\n", " 'totalTestResultsIncrease': 819},\n", " {'date': 20200326,\n", " 'state': 'VI',\n", " 'positive': 17,\n", " 'negative': 55,\n", " 'pending': 2,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 74,\n", " 'hash': 'e3222ba38030530056047b275922c402606b0f0a',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 72,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200326,\n", " 'state': 'VT',\n", " 'positive': 158,\n", " 'negative': 1850,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 9,\n", " 'total': 2008,\n", " 'hash': '61ce01dbfc5742b14b0fdd9b20349c0501079471',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 2008,\n", " 'fips': '50',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 261,\n", " 'positiveIncrease': 35,\n", " 'totalTestResultsIncrease': 296},\n", " {'date': 20200326,\n", " 'state': 'WA',\n", " 'positive': 2580,\n", " 'negative': 31712,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 132,\n", " 'total': 34292,\n", " 'hash': '4fe63c8afc184048715fba6c3059d2aeaf4a60a3',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 34292,\n", " 'fips': '53',\n", " 'deathIncrease': 9,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 111,\n", " 'totalTestResultsIncrease': 111},\n", " {'date': 20200326,\n", " 'state': 'WI',\n", " 'positive': 707,\n", " 'negative': 11583,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 12290,\n", " 'hash': '4411ef71a558354983d21b5bab43ec979ba10f86',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 12290,\n", " 'fips': '55',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1494,\n", " 'positiveIncrease': 122,\n", " 'totalTestResultsIncrease': 1616},\n", " {'date': 20200326,\n", " 'state': 'WV',\n", " 'positive': 51,\n", " 'negative': 1031,\n", " 'pending': 19,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 1101,\n", " 'hash': 'f727c33b68454f29df1a719b634dadb52bb57d44',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1082,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 272,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 284},\n", " {'date': 20200326,\n", " 'state': 'WY',\n", " 'positive': 53,\n", " 'negative': 1052,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1105,\n", " 'hash': 'd309458bafe505a9f4aa8cc576a3ce7c5cbb47c9',\n", " 'dateChecked': '2020-03-26T20:00:00Z',\n", " 'totalTestResults': 1105,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 98,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 107},\n", " {'date': 20200325,\n", " 'state': 'AK',\n", " 'positive': 42,\n", " 'negative': 1649,\n", " 'pending': None,\n", " 'hospitalized': 1,\n", " 'death': 1,\n", " 'total': 1691,\n", " 'hash': '647716d5652582e93c41065a21d8285bae782558',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1691,\n", " 'fips': '02',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 663,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 669},\n", " {'date': 20200325,\n", " 'state': 'AL',\n", " 'positive': 283,\n", " 'negative': 2529,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 2812,\n", " 'hash': 'fc974a9995c6dacc8e3fd686a946b5c7820b1442',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 2812,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 423,\n", " 'positiveIncrease': 68,\n", " 'totalTestResultsIncrease': 491},\n", " {'date': 20200325,\n", " 'state': 'AR',\n", " 'positive': 280,\n", " 'negative': 1437,\n", " 'pending': 0,\n", " 'hospitalized': 22,\n", " 'death': 2,\n", " 'total': 1717,\n", " 'hash': '5999cc26c34fbae3db6f1f13acf88f11b61e4db2',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1717,\n", " 'fips': '05',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 490,\n", " 'positiveIncrease': 62,\n", " 'totalTestResultsIncrease': 552},\n", " {'date': 20200325,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '3e2631161aae6991f620c619416612234da12117',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200325,\n", " 'state': 'AZ',\n", " 'positive': 450,\n", " 'negative': 323,\n", " 'pending': 53,\n", " 'hospitalized': 8,\n", " 'death': 6,\n", " 'total': 826,\n", " 'hash': 'e9c1b9bec8e4c3344c5a1faed4d70aadfd65983c',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 773,\n", " 'fips': '04',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 10,\n", " 'positiveIncrease': 93,\n", " 'totalTestResultsIncrease': 103},\n", " {'date': 20200325,\n", " 'state': 'CA',\n", " 'positive': 2355,\n", " 'negative': 15921,\n", " 'pending': 48600,\n", " 'hospitalized': None,\n", " 'death': 53,\n", " 'total': 66876,\n", " 'hash': 'fb1eadab0449e18c728cd17fe348eda2dec401a2',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 18276,\n", " 'fips': '06',\n", " 'deathIncrease': 13,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2469,\n", " 'positiveIncrease': 253,\n", " 'totalTestResultsIncrease': 2722},\n", " {'date': 20200325,\n", " 'state': 'CO',\n", " 'positive': 912,\n", " 'negative': 6789,\n", " 'pending': None,\n", " 'hospitalized': 84,\n", " 'death': 11,\n", " 'total': 7701,\n", " 'hash': 'd8edc75fe3048c190c001f0e65a9d4d5ad7be85d',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 7701,\n", " 'fips': '08',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 12,\n", " 'negativeIncrease': 1285,\n", " 'positiveIncrease': 192,\n", " 'totalTestResultsIncrease': 1477},\n", " {'date': 20200325,\n", " 'state': 'CT',\n", " 'positive': 875,\n", " 'negative': 5023,\n", " 'pending': None,\n", " 'hospitalized': 113,\n", " 'death': 19,\n", " 'total': 5898,\n", " 'hash': 'af1091940ffe7ce8947bfbaadd9a2e544baa89ce',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 5898,\n", " 'fips': '09',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 42,\n", " 'negativeIncrease': 341,\n", " 'positiveIncrease': 257,\n", " 'totalTestResultsIncrease': 598},\n", " {'date': 20200325,\n", " 'state': 'DC',\n", " 'positive': 183,\n", " 'negative': 1423,\n", " 'pending': 3,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 1609,\n", " 'hash': '8c37f84c08801345dc97a7ce783130f115b984da',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1606,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 228,\n", " 'positiveIncrease': 46,\n", " 'totalTestResultsIncrease': 274},\n", " {'date': 20200325,\n", " 'state': 'DE',\n", " 'positive': 115,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': 11,\n", " 'death': 0,\n", " 'total': 151,\n", " 'hash': '02adef842bbff4ee8eba44e45bcfd98e3e395d89',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 151,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 11,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 24},\n", " {'date': 20200325,\n", " 'state': 'FL',\n", " 'positive': 1682,\n", " 'negative': 15374,\n", " 'pending': 1233,\n", " 'hospitalized': 316,\n", " 'death': 22,\n", " 'total': 18289,\n", " 'hash': 'f516a216c9c066e517838914a953b0d0e65b5e7b',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 17056,\n", " 'fips': '12',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 57,\n", " 'negativeIncrease': 2247,\n", " 'positiveIncrease': 270,\n", " 'totalTestResultsIncrease': 2517},\n", " {'date': 20200325,\n", " 'state': 'GA',\n", " 'positive': 1247,\n", " 'negative': 4932,\n", " 'pending': None,\n", " 'hospitalized': 394,\n", " 'death': 40,\n", " 'total': 6179,\n", " 'hash': '70b63f701699c16cbf14eab91c1ff346a184bd00',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 6179,\n", " 'fips': '13',\n", " 'deathIncrease': 8,\n", " 'hospitalizedIncrease': 394,\n", " 'negativeIncrease': 474,\n", " 'positiveIncrease': 221,\n", " 'totalTestResultsIncrease': 695},\n", " {'date': 20200325,\n", " 'state': 'GU',\n", " 'positive': 37,\n", " 'negative': 233,\n", " 'pending': None,\n", " 'hospitalized': 10,\n", " 'death': 1,\n", " 'total': 270,\n", " 'hash': '48069a3dde5e870f2da79356638300d94fb4bf16',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 270,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 5,\n", " 'negativeIncrease': 32,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 37},\n", " {'date': 20200325,\n", " 'state': 'HI',\n", " 'positive': 90,\n", " 'negative': 4357,\n", " 'pending': None,\n", " 'hospitalized': 6,\n", " 'death': 1,\n", " 'total': 4447,\n", " 'hash': '1490760131b68a44c128db66888fd09e32e8f77e',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 4447,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 768,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 781},\n", " {'date': 20200325,\n", " 'state': 'IA',\n", " 'positive': 145,\n", " 'negative': 2578,\n", " 'pending': None,\n", " 'hospitalized': 36,\n", " 'death': 1,\n", " 'total': 2723,\n", " 'hash': '20b75251bcb2986562086422633b597a9db2732c',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 2723,\n", " 'fips': '19',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 9,\n", " 'negativeIncrease': 263,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 284},\n", " {'date': 20200325,\n", " 'state': 'ID',\n", " 'positive': 73,\n", " 'negative': 1887,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1960,\n", " 'hash': '91fbd37ca5c788a8e96d9a60ad5716316eead0e4',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1960,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200325,\n", " 'state': 'IL',\n", " 'positive': 1865,\n", " 'negative': 12344,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 19,\n", " 'total': 14209,\n", " 'hash': '6a49cfd26acf14df6a4ae9c4731f1f977ec31ce7',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 14209,\n", " 'fips': '17',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2410,\n", " 'positiveIncrease': 330,\n", " 'totalTestResultsIncrease': 2740},\n", " {'date': 20200325,\n", " 'state': 'IN',\n", " 'positive': 477,\n", " 'negative': 2879,\n", " 'pending': None,\n", " 'hospitalized': 1,\n", " 'death': 14,\n", " 'total': 3356,\n", " 'hash': '966d82a1f16cfa557944a7f992fbcba13c11598e',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 3356,\n", " 'fips': '18',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 313,\n", " 'positiveIncrease': 112,\n", " 'totalTestResultsIncrease': 425},\n", " {'date': 20200325,\n", " 'state': 'KS',\n", " 'positive': 126,\n", " 'negative': 2360,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2486,\n", " 'hash': '328a2bb33162a25a5784ffdd5947e919cb8e00c4',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 2486,\n", " 'fips': '20',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 274,\n", " 'positiveIncrease': 28,\n", " 'totalTestResultsIncrease': 302},\n", " {'date': 20200325,\n", " 'state': 'KY',\n", " 'positive': 157,\n", " 'negative': 2865,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 3022,\n", " 'hash': 'ffa7cb27ce652c55ca61eb33358c74db5045b212',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 3022,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1123,\n", " 'positiveIncrease': 33,\n", " 'totalTestResultsIncrease': 1156},\n", " {'date': 20200325,\n", " 'state': 'LA',\n", " 'positive': 1795,\n", " 'negative': 9656,\n", " 'pending': None,\n", " 'hospitalized': 491,\n", " 'death': 65,\n", " 'total': 11451,\n", " 'hash': '86e512c3987eb05b189fdb907af3ea1c4172185d',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 11451,\n", " 'fips': '22',\n", " 'deathIncrease': 19,\n", " 'hospitalizedIncrease': 220,\n", " 'negativeIncrease': 2441,\n", " 'positiveIncrease': 407,\n", " 'totalTestResultsIncrease': 2848},\n", " {'date': 20200325,\n", " 'state': 'MA',\n", " 'positive': 1838,\n", " 'negative': 17956,\n", " 'pending': None,\n", " 'hospitalized': 103,\n", " 'death': 15,\n", " 'total': 19794,\n", " 'hash': '0170634b67ae342f72677fde65854d5953d3c69c',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 19794,\n", " 'fips': '25',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 9,\n", " 'negativeIncrease': 5366,\n", " 'positiveIncrease': 679,\n", " 'totalTestResultsIncrease': 6045},\n", " {'date': 20200325,\n", " 'state': 'MD',\n", " 'positive': 423,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 517,\n", " 'hash': 'd2a1128cbe93088c6caa4a64fd07b77daf856b66',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 517,\n", " 'fips': '24',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 74,\n", " 'totalTestResultsIncrease': 74},\n", " {'date': 20200325,\n", " 'state': 'ME',\n", " 'positive': 149,\n", " 'negative': 3177,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3326,\n", " 'hash': '5d2c483028b93453bb8b651c9153eb34ae2e641e',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 3326,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 163,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 187},\n", " {'date': 20200325,\n", " 'state': 'MI',\n", " 'positive': 2294,\n", " 'negative': 2069,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 43,\n", " 'total': 4363,\n", " 'hash': '8162d7cdd0ae0db62aa50c1af599982639d374c3',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 4363,\n", " 'fips': '26',\n", " 'deathIncrease': 19,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 503,\n", " 'totalTestResultsIncrease': 503},\n", " {'date': 20200325,\n", " 'state': 'MN',\n", " 'positive': 287,\n", " 'negative': 11188,\n", " 'pending': None,\n", " 'hospitalized': 35,\n", " 'death': 1,\n", " 'total': 11475,\n", " 'hash': '95c30a94fd93b3d0bb552520d1ff4a2014fbd4a6',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 11475,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 14,\n", " 'negativeIncrease': 5638,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 5663},\n", " {'date': 20200325,\n", " 'state': 'MO',\n", " 'positive': 356,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 725,\n", " 'hash': '288cdbc9ddae8815ae18e598517d11bd4e5286b9',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 725,\n", " 'fips': '29',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 173,\n", " 'totalTestResultsIncrease': 173},\n", " {'date': 20200325,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '33d8aef1f2bbc22f8bdde6b7a36f003601ebbf13',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200325,\n", " 'state': 'MS',\n", " 'positive': 377,\n", " 'negative': 1566,\n", " 'pending': None,\n", " 'hospitalized': 117,\n", " 'death': 2,\n", " 'total': 1943,\n", " 'hash': '1c3a96b4fce25ff1f6e02d577608443935f870aa',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1943,\n", " 'fips': '28',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 31,\n", " 'negativeIncrease': 14,\n", " 'positiveIncrease': 57,\n", " 'totalTestResultsIncrease': 71},\n", " {'date': 20200325,\n", " 'state': 'MT',\n", " 'positive': 53,\n", " 'negative': 1948,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2001,\n", " 'hash': 'eebbb270f486af977360a1391d361e4f2cb06822',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 2001,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 305,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 312},\n", " {'date': 20200325,\n", " 'state': 'NC',\n", " 'positive': 504,\n", " 'negative': 9985,\n", " 'pending': None,\n", " 'hospitalized': 29,\n", " 'death': 1,\n", " 'total': 10489,\n", " 'hash': '7894805b435db59e2d979e5e812bf7d799982583',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 10489,\n", " 'fips': '37',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 29,\n", " 'negativeIncrease': 1844,\n", " 'positiveIncrease': 106,\n", " 'totalTestResultsIncrease': 1950},\n", " {'date': 20200325,\n", " 'state': 'ND',\n", " 'positive': 39,\n", " 'negative': 1734,\n", " 'pending': None,\n", " 'hospitalized': 8,\n", " 'death': 0,\n", " 'total': 1773,\n", " 'hash': 'c67a8d86c13907a36d3545bf366318a826674e05',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1773,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 3,\n", " 'negativeIncrease': 280,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 285},\n", " {'date': 20200325,\n", " 'state': 'NE',\n", " 'positive': 61,\n", " 'negative': 1304,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1365,\n", " 'hash': '9081e43af87d366ab4b57245362b5dd8d03ae6ec',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1365,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 329,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 338},\n", " {'date': 20200325,\n", " 'state': 'NH',\n", " 'positive': 108,\n", " 'negative': 2356,\n", " 'pending': 804,\n", " 'hospitalized': 13,\n", " 'death': 1,\n", " 'total': 3268,\n", " 'hash': 'a234c0c14a60d9b08ea02f689f0485d6209bab13',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 2464,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 2,\n", " 'negativeIncrease': 909,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 916},\n", " {'date': 20200325,\n", " 'state': 'NJ',\n", " 'positive': 4402,\n", " 'negative': 10452,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 62,\n", " 'total': 14854,\n", " 'hash': 'd30471a7dce5d19a5dfae58a586231e98ec5cd93',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 14854,\n", " 'fips': '34',\n", " 'deathIncrease': 18,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2127,\n", " 'positiveIncrease': 727,\n", " 'totalTestResultsIncrease': 2854},\n", " {'date': 20200325,\n", " 'state': 'NM',\n", " 'positive': 100,\n", " 'negative': 6742,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 6842,\n", " 'hash': '362677584a420c0643f12045e8e4cd06c3005427',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 6842,\n", " 'fips': '35',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 852,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 869},\n", " {'date': 20200325,\n", " 'state': 'NV',\n", " 'positive': 321,\n", " 'negative': 4251,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 6,\n", " 'total': 4572,\n", " 'hash': '28a9dfd19399d3b549de78905158a4add5d4e05e',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 4572,\n", " 'fips': '32',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 297,\n", " 'positiveIncrease': 43,\n", " 'totalTestResultsIncrease': 340},\n", " {'date': 20200325,\n", " 'state': 'NY',\n", " 'positive': 30811,\n", " 'negative': 72668,\n", " 'pending': None,\n", " 'hospitalized': 3805,\n", " 'death': 285,\n", " 'total': 103479,\n", " 'hash': '4ef31e776a148365f2df74d120980b0c3816eed3',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 103479,\n", " 'fips': '36',\n", " 'deathIncrease': 75,\n", " 'hospitalizedIncrease': 571,\n", " 'negativeIncrease': 7063,\n", " 'positiveIncrease': 5146,\n", " 'totalTestResultsIncrease': 12209},\n", " {'date': 20200325,\n", " 'state': 'OH',\n", " 'positive': 704,\n", " 'negative': 14060,\n", " 'pending': None,\n", " 'hospitalized': 182,\n", " 'death': 10,\n", " 'total': 14764,\n", " 'hash': '0ed9cc667be68808e56eabd663f61c1b6ba2af11',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 14764,\n", " 'fips': '39',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 37,\n", " 'negativeIncrease': 13920,\n", " 'positiveIncrease': 140,\n", " 'totalTestResultsIncrease': 14060},\n", " {'date': 20200325,\n", " 'state': 'OK',\n", " 'positive': 164,\n", " 'negative': 805,\n", " 'pending': None,\n", " 'hospitalized': 59,\n", " 'death': 5,\n", " 'total': 969,\n", " 'hash': '843e38420eed0df56bf3090ef1ae55832d160a31',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 969,\n", " 'fips': '40',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 34,\n", " 'negativeIncrease': 70,\n", " 'positiveIncrease': 58,\n", " 'totalTestResultsIncrease': 128},\n", " {'date': 20200325,\n", " 'state': 'OR',\n", " 'positive': 209,\n", " 'negative': 4350,\n", " 'pending': None,\n", " 'hospitalized': 61,\n", " 'death': 8,\n", " 'total': 4559,\n", " 'hash': '30d803695e96c177174fb2f2615ea8f6f73c6c95',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 4559,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200325,\n", " 'state': 'PA',\n", " 'positive': 1127,\n", " 'negative': 11193,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 11,\n", " 'total': 12320,\n", " 'hash': 'b9968033b193c6e5a2d749cd91278881e61b857e',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 12320,\n", " 'fips': '42',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2550,\n", " 'positiveIncrease': 276,\n", " 'totalTestResultsIncrease': 2826},\n", " {'date': 20200325,\n", " 'state': 'PR',\n", " 'positive': 51,\n", " 'negative': 317,\n", " 'pending': 70,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 438,\n", " 'hash': '69f643dd7fe0bcddb6417a90a880e7f61b1cd7c4',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 368,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 49,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 61},\n", " {'date': 20200325,\n", " 'state': 'RI',\n", " 'positive': 124,\n", " 'negative': 1143,\n", " 'pending': 196,\n", " 'hospitalized': 16,\n", " 'death': None,\n", " 'total': 1463,\n", " 'hash': '15a58e03559efe261b6d532f427091eab9781927',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1267,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 16,\n", " 'negativeIncrease': 23,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 41},\n", " {'date': 20200325,\n", " 'state': 'SC',\n", " 'positive': 424,\n", " 'negative': 2303,\n", " 'pending': None,\n", " 'hospitalized': 102,\n", " 'death': 7,\n", " 'total': 2727,\n", " 'hash': '450d9eccb92563af7816cfbcd278328d51bc1b16',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 2727,\n", " 'fips': '45',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 102,\n", " 'negativeIncrease': 291,\n", " 'positiveIncrease': 126,\n", " 'totalTestResultsIncrease': 417},\n", " {'date': 20200325,\n", " 'state': 'SD',\n", " 'positive': 41,\n", " 'negative': 819,\n", " 'pending': 268,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1128,\n", " 'hash': 'da3efc40046087cb527aa40bc79e6ddb9854192f',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 860,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 29,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 40},\n", " {'date': 20200325,\n", " 'state': 'TN',\n", " 'positive': 784,\n", " 'negative': 11012,\n", " 'pending': None,\n", " 'hospitalized': 53,\n", " 'death': 3,\n", " 'total': 11796,\n", " 'hash': 'c41ad4687adcf4d1b42135fb4b41102cc275fa73',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 11796,\n", " 'fips': '47',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 53,\n", " 'negativeIncrease': 495,\n", " 'positiveIncrease': 117,\n", " 'totalTestResultsIncrease': 612},\n", " {'date': 20200325,\n", " 'state': 'TX',\n", " 'positive': 974,\n", " 'negative': 12520,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 12,\n", " 'total': 13494,\n", " 'hash': '91d17b89756a65686fbeadadea6a1af6640d2eae',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 13494,\n", " 'fips': '48',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1763,\n", " 'positiveIncrease': 564,\n", " 'totalTestResultsIncrease': 2327},\n", " {'date': 20200325,\n", " 'state': 'UT',\n", " 'positive': 346,\n", " 'negative': 6491,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 6837,\n", " 'hash': '13979ec107cbdc97c2f1faecdc5cefded8fe6738',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 6837,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 967,\n", " 'positiveIncrease': 47,\n", " 'totalTestResultsIncrease': 1014},\n", " {'date': 20200325,\n", " 'state': 'VA',\n", " 'positive': 391,\n", " 'negative': 4979,\n", " 'pending': None,\n", " 'hospitalized': 59,\n", " 'death': 9,\n", " 'total': 5370,\n", " 'hash': 'f9584b54cc219465f81d4305043da82a1602db4c',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 5370,\n", " 'fips': '51',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 14,\n", " 'negativeIncrease': 799,\n", " 'positiveIncrease': 101,\n", " 'totalTestResultsIncrease': 900},\n", " {'date': 20200325,\n", " 'state': 'VI',\n", " 'positive': 17,\n", " 'negative': 55,\n", " 'pending': 2,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 74,\n", " 'hash': 'a9becd63fde01e3023dce0cb843d31f6a2a87da6',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 72,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 55,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 55},\n", " {'date': 20200325,\n", " 'state': 'VT',\n", " 'positive': 123,\n", " 'negative': 1589,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 1712,\n", " 'hash': '0d7b329d92383f2d790acf8d135ea5b9c54f1401',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 1712,\n", " 'fips': '50',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 149,\n", " 'positiveIncrease': 28,\n", " 'totalTestResultsIncrease': 177},\n", " {'date': 20200325,\n", " 'state': 'WA',\n", " 'positive': 2469,\n", " 'negative': 31712,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 123,\n", " 'total': 34181,\n", " 'hash': 'a1177aa4d96c855b8bf322225638e82854d35b3a',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 34181,\n", " 'fips': '53',\n", " 'deathIncrease': 13,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 248,\n", " 'totalTestResultsIncrease': 248},\n", " {'date': 20200325,\n", " 'state': 'WI',\n", " 'positive': 585,\n", " 'negative': 10089,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 7,\n", " 'total': 10674,\n", " 'hash': 'c29c27bdbf1a31468cbf5c47cc2f4ac472c04a07',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 10674,\n", " 'fips': '55',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1852,\n", " 'positiveIncrease': 128,\n", " 'totalTestResultsIncrease': 1980},\n", " {'date': 20200325,\n", " 'state': 'WV',\n", " 'positive': 39,\n", " 'negative': 759,\n", " 'pending': 6,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 804,\n", " 'hash': '3cded67ef2709b061dc803b4b4161c6ac227c16e',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 798,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 149,\n", " 'positiveIncrease': 19,\n", " 'totalTestResultsIncrease': 168},\n", " {'date': 20200325,\n", " 'state': 'WY',\n", " 'positive': 44,\n", " 'negative': 954,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 998,\n", " 'hash': '4a7b1b0e485e09b21e92668d61e841e290d496b8',\n", " 'dateChecked': '2020-03-25T20:00:00Z',\n", " 'totalTestResults': 998,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 244,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 259},\n", " {'date': 20200324,\n", " 'state': 'AK',\n", " 'positive': 36,\n", " 'negative': 986,\n", " 'pending': None,\n", " 'hospitalized': 0,\n", " 'death': None,\n", " 'total': 1022,\n", " 'hash': 'cc942aee33e126b6e009dec85f938c84be74a2a8',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1022,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 40,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 54},\n", " {'date': 20200324,\n", " 'state': 'AL',\n", " 'positive': 215,\n", " 'negative': 2106,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 2321,\n", " 'hash': '371560bdda2ca2f27f585247eb65815f14234722',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 2321,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 441,\n", " 'positiveIncrease': 48,\n", " 'totalTestResultsIncrease': 489},\n", " {'date': 20200324,\n", " 'state': 'AR',\n", " 'positive': 218,\n", " 'negative': 947,\n", " 'pending': 0,\n", " 'hospitalized': 22,\n", " 'death': 0,\n", " 'total': 1165,\n", " 'hash': 'c6e1655fa62e2c61bcc2cd0085773317b320f76a',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1165,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 9,\n", " 'negativeIncrease': 41,\n", " 'positiveIncrease': 44,\n", " 'totalTestResultsIncrease': 85},\n", " {'date': 20200324,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': 'bdc89566ef4eb934e97cf69810b2ba9eee4575e0',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200324,\n", " 'state': 'AZ',\n", " 'positive': 357,\n", " 'negative': 313,\n", " 'pending': 22,\n", " 'hospitalized': 8,\n", " 'death': 5,\n", " 'total': 692,\n", " 'hash': '35851941e3a66847eec2f13b73c31e216f1608c9',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 670,\n", " 'fips': '04',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 8,\n", " 'negativeIncrease': 4,\n", " 'positiveIncrease': 92,\n", " 'totalTestResultsIncrease': 96},\n", " {'date': 20200324,\n", " 'state': 'CA',\n", " 'positive': 2102,\n", " 'negative': 13452,\n", " 'pending': 12100,\n", " 'hospitalized': None,\n", " 'death': 40,\n", " 'total': 27654,\n", " 'hash': '5eaf1168a0b26e1298f8cd58cbddc54f258e7cdf',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 15554,\n", " 'fips': '06',\n", " 'deathIncrease': 13,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 885,\n", " 'positiveIncrease': 369,\n", " 'totalTestResultsIncrease': 1254},\n", " {'date': 20200324,\n", " 'state': 'CO',\n", " 'positive': 720,\n", " 'negative': 5504,\n", " 'pending': None,\n", " 'hospitalized': 72,\n", " 'death': 7,\n", " 'total': 6224,\n", " 'hash': 'a06b60967133aacca05b86750a3637cc7c727ac8',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 6224,\n", " 'fips': '08',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 14,\n", " 'negativeIncrease': 659,\n", " 'positiveIncrease': 129,\n", " 'totalTestResultsIncrease': 788},\n", " {'date': 20200324,\n", " 'state': 'CT',\n", " 'positive': 618,\n", " 'negative': 4682,\n", " 'pending': None,\n", " 'hospitalized': 71,\n", " 'death': 12,\n", " 'total': 5300,\n", " 'hash': 'f34accca9a345cddeae7dfea636464d9dd86bff0',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 5300,\n", " 'fips': '09',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 17,\n", " 'negativeIncrease': 597,\n", " 'positiveIncrease': 203,\n", " 'totalTestResultsIncrease': 800},\n", " {'date': 20200324,\n", " 'state': 'DC',\n", " 'positive': 137,\n", " 'negative': 1195,\n", " 'pending': 2,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 1334,\n", " 'hash': 'db50668d62375b11a861733c9b1fc9331c7b02a5',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1332,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 82,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 103},\n", " {'date': 20200324,\n", " 'state': 'DE',\n", " 'positive': 91,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': 0,\n", " 'death': 0,\n", " 'total': 127,\n", " 'hash': '5aa4f510382c73d725ddd5ecbb614887cf024f09',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 127,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200324,\n", " 'state': 'FL',\n", " 'positive': 1412,\n", " 'negative': 13127,\n", " 'pending': 1008,\n", " 'hospitalized': 259,\n", " 'death': 18,\n", " 'total': 15547,\n", " 'hash': 'f6016788df0acb93476b7c76001430a204a40ae4',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 14539,\n", " 'fips': '12',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 42,\n", " 'negativeIncrease': 2064,\n", " 'positiveIncrease': 241,\n", " 'totalTestResultsIncrease': 2305},\n", " {'date': 20200324,\n", " 'state': 'GA',\n", " 'positive': 1026,\n", " 'negative': 4458,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 32,\n", " 'total': 5484,\n", " 'hash': '77c57990afd06cfd56fe829c3e74853574dd6a63',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 5484,\n", " 'fips': '13',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 161,\n", " 'positiveIncrease': 254,\n", " 'totalTestResultsIncrease': 415},\n", " {'date': 20200324,\n", " 'state': 'GU',\n", " 'positive': 32,\n", " 'negative': 201,\n", " 'pending': None,\n", " 'hospitalized': 5,\n", " 'death': 1,\n", " 'total': 233,\n", " 'hash': '8ab4f32c58ed101814b31f6007e95fd7b337c4bf',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 233,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 5,\n", " 'negativeIncrease': 40,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200324,\n", " 'state': 'HI',\n", " 'positive': 77,\n", " 'negative': 3589,\n", " 'pending': None,\n", " 'hospitalized': 4,\n", " 'death': 1,\n", " 'total': 3666,\n", " 'hash': 'b2e5f6198395408de30e0d2fe307c450db2b7bb3',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 3666,\n", " 'fips': '15',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 4,\n", " 'negativeIncrease': 634,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 655},\n", " {'date': 20200324,\n", " 'state': 'IA',\n", " 'positive': 124,\n", " 'negative': 2315,\n", " 'pending': None,\n", " 'hospitalized': 27,\n", " 'death': None,\n", " 'total': 2439,\n", " 'hash': 'c874cb9c7350f561abbd5c0b7a7067b29520f77b',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 2439,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 27,\n", " 'negativeIncrease': 272,\n", " 'positiveIncrease': 19,\n", " 'totalTestResultsIncrease': 291},\n", " {'date': 20200324,\n", " 'state': 'ID',\n", " 'positive': 50,\n", " 'negative': 1887,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1937,\n", " 'hash': '2029e9b505e4522579b80f13d92add5903f8d647',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1937,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 578,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 581},\n", " {'date': 20200324,\n", " 'state': 'IL',\n", " 'positive': 1535,\n", " 'negative': 9934,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 16,\n", " 'total': 11469,\n", " 'hash': '7ff751438cc4c2eb20e04f36c7b798a5baf12fa9',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 11469,\n", " 'fips': '17',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1351,\n", " 'positiveIncrease': 262,\n", " 'totalTestResultsIncrease': 1613},\n", " {'date': 20200324,\n", " 'state': 'IN',\n", " 'positive': 365,\n", " 'negative': 2566,\n", " 'pending': None,\n", " 'hospitalized': 1,\n", " 'death': 12,\n", " 'total': 2931,\n", " 'hash': '8a4cd54aef4ca850ea00b92b88fa532ba6a96e60',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 2931,\n", " 'fips': '18',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 865,\n", " 'positiveIncrease': 106,\n", " 'totalTestResultsIncrease': 971},\n", " {'date': 20200324,\n", " 'state': 'KS',\n", " 'positive': 98,\n", " 'negative': 2086,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 2184,\n", " 'hash': '2524a89b454ad4a2b5344be34e7f2941d4f9f15e',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 2184,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1669,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 1685},\n", " {'date': 20200324,\n", " 'state': 'KY',\n", " 'positive': 124,\n", " 'negative': 1742,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 1866,\n", " 'hash': '8389258f7916d5fa6cc2ffe506ef910851a67ad2',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1866,\n", " 'fips': '21',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': -20,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200324,\n", " 'state': 'LA',\n", " 'positive': 1388,\n", " 'negative': 7215,\n", " 'pending': None,\n", " 'hospitalized': 271,\n", " 'death': 46,\n", " 'total': 8603,\n", " 'hash': '59d8dc408b875628807271b4f3110da2f4008795',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 8603,\n", " 'fips': '22',\n", " 'deathIncrease': 12,\n", " 'hospitalizedIncrease': 271,\n", " 'negativeIncrease': 2439,\n", " 'positiveIncrease': 216,\n", " 'totalTestResultsIncrease': 2655},\n", " {'date': 20200324,\n", " 'state': 'MA',\n", " 'positive': 1159,\n", " 'negative': 12590,\n", " 'pending': None,\n", " 'hospitalized': 94,\n", " 'death': 11,\n", " 'total': 13749,\n", " 'hash': '760c13c9ba5c284ccacd1a475a60cb24ab51fd0f',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 13749,\n", " 'fips': '25',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 15,\n", " 'negativeIncrease': 4445,\n", " 'positiveIncrease': 382,\n", " 'totalTestResultsIncrease': 4827},\n", " {'date': 20200324,\n", " 'state': 'MD',\n", " 'positive': 349,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 443,\n", " 'hash': 'ef3375abce7e0be5627536c38d97e6f81c5973d7',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 443,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 61,\n", " 'totalTestResultsIncrease': 61},\n", " {'date': 20200324,\n", " 'state': 'ME',\n", " 'positive': 125,\n", " 'negative': 3014,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3139,\n", " 'hash': '1cbff940791d826e8812fc58399145be2ead62d0',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 3139,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 223,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 241},\n", " {'date': 20200324,\n", " 'state': 'MI',\n", " 'positive': 1791,\n", " 'negative': 2069,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 24,\n", " 'total': 3860,\n", " 'hash': '85f7fb3939b9c1e639a25ae271703186bad31450',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 3860,\n", " 'fips': '26',\n", " 'deathIncrease': 9,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 463,\n", " 'totalTestResultsIncrease': 463},\n", " {'date': 20200324,\n", " 'state': 'MN',\n", " 'positive': 262,\n", " 'negative': 5550,\n", " 'pending': None,\n", " 'hospitalized': 21,\n", " 'death': 1,\n", " 'total': 5812,\n", " 'hash': 'fc7079118a181623b4677259c7db7e433317e252',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 5812,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 4,\n", " 'negativeIncrease': 1039,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 1066},\n", " {'date': 20200324,\n", " 'state': 'MO',\n", " 'positive': 183,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 552,\n", " 'hash': 'ab66a5d407af6ffa303c3f2898abb92b13294f00',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 552,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200324,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': 'd53153e31b8ff5f1062d8e9ac186302b64557cf8',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200324,\n", " 'state': 'MS',\n", " 'positive': 320,\n", " 'negative': 1552,\n", " 'pending': None,\n", " 'hospitalized': 86,\n", " 'death': 1,\n", " 'total': 1872,\n", " 'hash': 'dee0c07372b29b91e9f43b579f8187aedcf27fb6',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1872,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 53,\n", " 'negativeIncrease': 409,\n", " 'positiveIncrease': 71,\n", " 'totalTestResultsIncrease': 480},\n", " {'date': 20200324,\n", " 'state': 'MT',\n", " 'positive': 46,\n", " 'negative': 1643,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1689,\n", " 'hash': 'e295119d7616f1ecdf82dd40be3561e6b5e86de5',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1689,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 497,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 509},\n", " {'date': 20200324,\n", " 'state': 'NC',\n", " 'positive': 398,\n", " 'negative': 8141,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 8539,\n", " 'hash': 'cfd7e243bf823a5e1168cbb8cbc0b9d1316c5439',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 8539,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 101,\n", " 'totalTestResultsIncrease': 101},\n", " {'date': 20200324,\n", " 'state': 'ND',\n", " 'positive': 34,\n", " 'negative': 1454,\n", " 'pending': None,\n", " 'hospitalized': 5,\n", " 'death': 0,\n", " 'total': 1488,\n", " 'hash': '97882ef82c36f02998d3058a2a8a7c149bf98060',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1488,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 101,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 105},\n", " {'date': 20200324,\n", " 'state': 'NE',\n", " 'positive': 52,\n", " 'negative': 975,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1027,\n", " 'hash': '8b5f8ad4d246e97014a453664dc4864a717d69a5',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1027,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 619,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 621},\n", " {'date': 20200324,\n", " 'state': 'NH',\n", " 'positive': 101,\n", " 'negative': 1447,\n", " 'pending': 869,\n", " 'hospitalized': 11,\n", " 'death': 1,\n", " 'total': 2417,\n", " 'hash': '025a3d28d876037355c3cff4760497af61a95c90',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1548,\n", " 'fips': '33',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 11,\n", " 'negativeIncrease': 73,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 96},\n", " {'date': 20200324,\n", " 'state': 'NJ',\n", " 'positive': 3675,\n", " 'negative': 8325,\n", " 'pending': 45,\n", " 'hospitalized': None,\n", " 'death': 44,\n", " 'total': 12045,\n", " 'hash': 'c6c52e836d2fee611e885afb7e2a185ba929022a',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 12000,\n", " 'fips': '34',\n", " 'deathIncrease': 17,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7966,\n", " 'positiveIncrease': 831,\n", " 'totalTestResultsIncrease': 8797},\n", " {'date': 20200324,\n", " 'state': 'NM',\n", " 'positive': 83,\n", " 'negative': 5890,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 5973,\n", " 'hash': '3737b1f32d0293799f727e17aaaf1ff13008b154',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 5973,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 569,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 587},\n", " {'date': 20200324,\n", " 'state': 'NV',\n", " 'positive': 278,\n", " 'negative': 3954,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 4232,\n", " 'hash': '4126493167bfb004719a88407216d817e111aab6',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 4232,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 464,\n", " 'positiveIncrease': 33,\n", " 'totalTestResultsIncrease': 497},\n", " {'date': 20200324,\n", " 'state': 'NY',\n", " 'positive': 25665,\n", " 'negative': 65605,\n", " 'pending': None,\n", " 'hospitalized': 3234,\n", " 'death': 210,\n", " 'total': 91270,\n", " 'hash': 'de78deaaa130f496c090f80e6ce48ae3a80aca2e',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 91270,\n", " 'fips': '36',\n", " 'deathIncrease': 96,\n", " 'hospitalizedIncrease': 599,\n", " 'negativeIncrease': 8191,\n", " 'positiveIncrease': 4790,\n", " 'totalTestResultsIncrease': 12981},\n", " {'date': 20200324,\n", " 'state': 'OH',\n", " 'positive': 564,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': 145,\n", " 'death': 8,\n", " 'total': 704,\n", " 'hash': '7fcf5064bbfc9e11e944d89ac84eaee6b09832e5',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 704,\n", " 'fips': '39',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 41,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 122,\n", " 'totalTestResultsIncrease': 122},\n", " {'date': 20200324,\n", " 'state': 'OK',\n", " 'positive': 106,\n", " 'negative': 735,\n", " 'pending': None,\n", " 'hospitalized': 25,\n", " 'death': 3,\n", " 'total': 841,\n", " 'hash': '139cda9c789d33fb1ee26f3c98d0765256690b8b',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 841,\n", " 'fips': '40',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 10,\n", " 'negativeIncrease': 41,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 66},\n", " {'date': 20200324,\n", " 'state': 'OR',\n", " 'positive': 209,\n", " 'negative': 4350,\n", " 'pending': None,\n", " 'hospitalized': 61,\n", " 'death': 8,\n", " 'total': 4559,\n", " 'hash': '2050b71c9fd03edf470f93ef7a1f642bfe287652',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 4559,\n", " 'fips': '41',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 5,\n", " 'negativeIncrease': 701,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 719},\n", " {'date': 20200324,\n", " 'state': 'PA',\n", " 'positive': 851,\n", " 'negative': 8643,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 7,\n", " 'total': 9494,\n", " 'hash': '0b3ed955712ad52c59f466db7aa9b33a320eeaa6',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 9494,\n", " 'fips': '42',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2048,\n", " 'positiveIncrease': 207,\n", " 'totalTestResultsIncrease': 2255},\n", " {'date': 20200324,\n", " 'state': 'PR',\n", " 'positive': 39,\n", " 'negative': 268,\n", " 'pending': 42,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 349,\n", " 'hash': '7ec0b9751abcbad31f7802be5339fc27118e5144',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 307,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 79,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 87},\n", " {'date': 20200324,\n", " 'state': 'RI',\n", " 'positive': 106,\n", " 'negative': 1120,\n", " 'pending': 77,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1303,\n", " 'hash': '674fee2478af78129d5aac2cf2e4a336977d6410',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1226,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 188,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 188},\n", " {'date': 20200324,\n", " 'state': 'SC',\n", " 'positive': 298,\n", " 'negative': 2012,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 2310,\n", " 'hash': '52c4c589331e0faf2478823c9635932c97f10cbe',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 2310,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 546,\n", " 'positiveIncrease': -1,\n", " 'totalTestResultsIncrease': 545},\n", " {'date': 20200324,\n", " 'state': 'SD',\n", " 'positive': 30,\n", " 'negative': 790,\n", " 'pending': 268,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1088,\n", " 'hash': 'bae71cfc9865fab80a6bacb91e33157ffe0049c9',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 820,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 28,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 30},\n", " {'date': 20200324,\n", " 'state': 'TN',\n", " 'positive': 667,\n", " 'negative': 10517,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 11184,\n", " 'hash': 'f02e78670d05ab7f7130ac0f7f3544c011db6ad0',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 11184,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7245,\n", " 'positiveIncrease': 52,\n", " 'totalTestResultsIncrease': 7297},\n", " {'date': 20200324,\n", " 'state': 'TX',\n", " 'positive': 410,\n", " 'negative': 10757,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 9,\n", " 'total': 11167,\n", " 'hash': '6e356268de7eaca86322ddd2bb190418d8e43cbf',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 11167,\n", " 'fips': '48',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1054,\n", " 'positiveIncrease': 58,\n", " 'totalTestResultsIncrease': 1112},\n", " {'date': 20200324,\n", " 'state': 'UT',\n", " 'positive': 299,\n", " 'negative': 5524,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 5823,\n", " 'hash': 'a65ed0e3be4ace0a5ed2a98a6c4a0431f5ab6272',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 5823,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 734,\n", " 'positiveIncrease': 42,\n", " 'totalTestResultsIncrease': 776},\n", " {'date': 20200324,\n", " 'state': 'VA',\n", " 'positive': 290,\n", " 'negative': 4180,\n", " 'pending': None,\n", " 'hospitalized': 45,\n", " 'death': 7,\n", " 'total': 4470,\n", " 'hash': 'fe485368827bf79c9c8242fdd74eaa3aee97ba87',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 4470,\n", " 'fips': '51',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 7,\n", " 'negativeIncrease': 737,\n", " 'positiveIncrease': 36,\n", " 'totalTestResultsIncrease': 773},\n", " {'date': 20200324,\n", " 'state': 'VI',\n", " 'positive': 17,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 17,\n", " 'hash': '738b0dacd60fdd603a485a7ae4a1442c605f9e6f',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 17,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200324,\n", " 'state': 'VT',\n", " 'positive': 95,\n", " 'negative': 1440,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 7,\n", " 'total': 1535,\n", " 'hash': 'fd66beb38cd2b1fba87acff21e2729a14420ece0',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 1535,\n", " 'fips': '50',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 334,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 354},\n", " {'date': 20200324,\n", " 'state': 'WA',\n", " 'positive': 2221,\n", " 'negative': 31712,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 110,\n", " 'total': 33933,\n", " 'hash': '4149dfb8fc06f5df0703897cddad70fb8b943543',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 33933,\n", " 'fips': '53',\n", " 'deathIncrease': 15,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2833,\n", " 'positiveIncrease': 225,\n", " 'totalTestResultsIncrease': 3058},\n", " {'date': 20200324,\n", " 'state': 'WI',\n", " 'positive': 457,\n", " 'negative': 8237,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 8694,\n", " 'hash': '16a3df0f466239e50af60c3af8edb3776ec2d288',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 8694,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1187,\n", " 'positiveIncrease': 41,\n", " 'totalTestResultsIncrease': 1228},\n", " {'date': 20200324,\n", " 'state': 'WV',\n", " 'positive': 20,\n", " 'negative': 610,\n", " 'pending': 0,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 630,\n", " 'hash': '0b5b2b45c9cfd691e16a0fcadd93f427f2ceb0b5',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 630,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 166,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 170},\n", " {'date': 20200324,\n", " 'state': 'WY',\n", " 'positive': 29,\n", " 'negative': 710,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 739,\n", " 'hash': '0564588fa0b4d3a59beddd906ed800f1ae4adefb',\n", " 'dateChecked': '2020-03-24T20:00:00Z',\n", " 'totalTestResults': 739,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 118,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 121},\n", " {'date': 20200323,\n", " 'state': 'AK',\n", " 'positive': 22,\n", " 'negative': 946,\n", " 'pending': None,\n", " 'hospitalized': 0,\n", " 'death': None,\n", " 'total': 968,\n", " 'hash': 'f4986bbc2de5864e6310b9727a480a52e04062e0',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 968,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200323,\n", " 'state': 'AL',\n", " 'positive': 167,\n", " 'negative': 1665,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1832,\n", " 'hash': '0dc2361b9f288babf3c389acf5dcc4aabaee69d0',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1832,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 201,\n", " 'positiveIncrease': 29,\n", " 'totalTestResultsIncrease': 230},\n", " {'date': 20200323,\n", " 'state': 'AR',\n", " 'positive': 174,\n", " 'negative': 906,\n", " 'pending': 0,\n", " 'hospitalized': 13,\n", " 'death': 0,\n", " 'total': 1080,\n", " 'hash': '98eaa96c9696c9a90dcdfb668b260b517785c49e',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1080,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 195,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 204},\n", " {'date': 20200323,\n", " 'state': 'AS',\n", " 'positive': None,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '971aba19b1d4a5f6a96ede88ac7f70866e871dcd',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200323,\n", " 'state': 'AZ',\n", " 'positive': 265,\n", " 'negative': 309,\n", " 'pending': 6,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 580,\n", " 'hash': '584c330743706300256413c0208800ac8caead1d',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 574,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 113,\n", " 'totalTestResultsIncrease': 140},\n", " {'date': 20200323,\n", " 'state': 'CA',\n", " 'positive': 1733,\n", " 'negative': 12567,\n", " 'pending': 12100,\n", " 'hospitalized': None,\n", " 'death': 27,\n", " 'total': 26400,\n", " 'hash': '3103c8f945d0935a956bf600fb6e0f7033f4970a',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 14300,\n", " 'fips': '06',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1263,\n", " 'positiveIncrease': 197,\n", " 'totalTestResultsIncrease': 1460},\n", " {'date': 20200323,\n", " 'state': 'CO',\n", " 'positive': 591,\n", " 'negative': 4845,\n", " 'pending': None,\n", " 'hospitalized': 58,\n", " 'death': 6,\n", " 'total': 5436,\n", " 'hash': '192fe591a96a0721748b1cdc8ebfff7a342283a6',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 5436,\n", " 'fips': '08',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 9,\n", " 'negativeIncrease': 770,\n", " 'positiveIncrease': 116,\n", " 'totalTestResultsIncrease': 886},\n", " {'date': 20200323,\n", " 'state': 'CT',\n", " 'positive': 415,\n", " 'negative': 4085,\n", " 'pending': None,\n", " 'hospitalized': 54,\n", " 'death': 10,\n", " 'total': 4500,\n", " 'hash': 'de97cab582b67461b397b788fc21267a387a8d61',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 4500,\n", " 'fips': '09',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 11,\n", " 'negativeIncrease': 1208,\n", " 'positiveIncrease': 192,\n", " 'totalTestResultsIncrease': 1400},\n", " {'date': 20200323,\n", " 'state': 'DC',\n", " 'positive': 116,\n", " 'negative': 1113,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 1229,\n", " 'hash': 'd2cdcef88187d9f7d648bfcaed1a32c60a3407c2',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1229,\n", " 'fips': '11',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 156,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 174},\n", " {'date': 20200323,\n", " 'state': 'DE',\n", " 'positive': 68,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': 0,\n", " 'death': 0,\n", " 'total': 104,\n", " 'hash': '8b9f4698da7316e49c8afcc44b0da4ba6f1d1ff5',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 104,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200323,\n", " 'state': 'FL',\n", " 'positive': 1171,\n", " 'negative': 11063,\n", " 'pending': 860,\n", " 'hospitalized': 217,\n", " 'death': 14,\n", " 'total': 13094,\n", " 'hash': 'e3f62c36b9af19248e600c4960d088bca000bc9b',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 12234,\n", " 'fips': '12',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 32,\n", " 'negativeIncrease': 3073,\n", " 'positiveIncrease': 341,\n", " 'totalTestResultsIncrease': 3414},\n", " {'date': 20200323,\n", " 'state': 'GA',\n", " 'positive': 772,\n", " 'negative': 4297,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 25,\n", " 'total': 5069,\n", " 'hash': 'baa88d8282bdb76c709b51e8eeae252c2dd1393a',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 5069,\n", " 'fips': '13',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 877,\n", " 'positiveIncrease': 172,\n", " 'totalTestResultsIncrease': 1049},\n", " {'date': 20200323,\n", " 'state': 'GU',\n", " 'positive': 29,\n", " 'negative': 161,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 190,\n", " 'hash': '139d7346f728fbd851ae9f37e950b58a11d84fe4',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 190,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 35,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 37},\n", " {'date': 20200323,\n", " 'state': 'HI',\n", " 'positive': 56,\n", " 'negative': 2955,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3011,\n", " 'hash': '5ab5127d7b40911eecb6852efd5eaaf8f0c40109',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 3011,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2692,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 2700},\n", " {'date': 20200323,\n", " 'state': 'IA',\n", " 'positive': 105,\n", " 'negative': 2043,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2148,\n", " 'hash': '1588635dd3fe2ff5228dafde1b74a830b8a2ca1c',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 2148,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 828,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 843},\n", " {'date': 20200323,\n", " 'state': 'ID',\n", " 'positive': 47,\n", " 'negative': 1309,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1356,\n", " 'hash': '157b218d077c9018e6e45d44cc6278f767312a20',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1356,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 134,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 139},\n", " {'date': 20200323,\n", " 'state': 'IL',\n", " 'positive': 1273,\n", " 'negative': 8583,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 12,\n", " 'total': 9856,\n", " 'hash': '98cb5041b36eb2507c497dfb76bc35c264c93b18',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 9856,\n", " 'fips': '17',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1312,\n", " 'positiveIncrease': 224,\n", " 'totalTestResultsIncrease': 1536},\n", " {'date': 20200323,\n", " 'state': 'IN',\n", " 'positive': 259,\n", " 'negative': 1701,\n", " 'pending': None,\n", " 'hospitalized': 1,\n", " 'death': 7,\n", " 'total': 1960,\n", " 'hash': '215df9ae86560f15786ddb5093f48c9537c97830',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1960,\n", " 'fips': '18',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 408,\n", " 'positiveIncrease': 58,\n", " 'totalTestResultsIncrease': 466},\n", " {'date': 20200323,\n", " 'state': 'KS',\n", " 'positive': 82,\n", " 'negative': 417,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 499,\n", " 'hash': 'd64b7b7ff4049ee1a0ed0602288d91f69effa142',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 499,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200323,\n", " 'state': 'KY',\n", " 'positive': 104,\n", " 'negative': 1762,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 1866,\n", " 'hash': '18efae14d6fc3b77f242c4587738dcd4c0813268',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1866,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 290,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 295},\n", " {'date': 20200323,\n", " 'state': 'LA',\n", " 'positive': 1172,\n", " 'negative': 4776,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 34,\n", " 'total': 5948,\n", " 'hash': '6dd691c2bb81ade0364c43f0600da26da5416715',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 5948,\n", " 'fips': '22',\n", " 'deathIncrease': 14,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2115,\n", " 'positiveIncrease': 335,\n", " 'totalTestResultsIncrease': 2450},\n", " {'date': 20200323,\n", " 'state': 'MA',\n", " 'positive': 777,\n", " 'negative': 8145,\n", " 'pending': None,\n", " 'hospitalized': 79,\n", " 'death': 9,\n", " 'total': 8922,\n", " 'hash': '49abcea3b10bc8ae6fe74ffaf53f30c6be9a1d28',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 8922,\n", " 'fips': '25',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 8,\n", " 'negativeIncrease': 2686,\n", " 'positiveIncrease': 131,\n", " 'totalTestResultsIncrease': 2817},\n", " {'date': 20200323,\n", " 'state': 'MD',\n", " 'positive': 288,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 382,\n", " 'hash': 'e40f9e5ead16234a595fb317a82beb9e839b26a8',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 382,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 44,\n", " 'totalTestResultsIncrease': 44},\n", " {'date': 20200323,\n", " 'state': 'ME',\n", " 'positive': 107,\n", " 'negative': 2791,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2898,\n", " 'hash': 'f1937da23acad84ab84266443525bf60e1a9fbb1',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 2898,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 527,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 545},\n", " {'date': 20200323,\n", " 'state': 'MI',\n", " 'positive': 1328,\n", " 'negative': 2069,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 15,\n", " 'total': 3397,\n", " 'hash': 'c4cb302c5067e8a8305d6e6bf57e2a814e6a7ac2',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 3397,\n", " 'fips': '26',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 293,\n", " 'totalTestResultsIncrease': 293},\n", " {'date': 20200323,\n", " 'state': 'MN',\n", " 'positive': 235,\n", " 'negative': 4511,\n", " 'pending': None,\n", " 'hospitalized': 17,\n", " 'death': 1,\n", " 'total': 4746,\n", " 'hash': '2b9bada5af068e33521d4524bedf68f31681143d',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 4746,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 5,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 66,\n", " 'totalTestResultsIncrease': 66},\n", " {'date': 20200323,\n", " 'state': 'MO',\n", " 'positive': 183,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 552,\n", " 'hash': 'ed0b78922fb0cfb71ace9941007bddb1fba0c186',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 552,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 93,\n", " 'totalTestResultsIncrease': 93},\n", " {'date': 20200323,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '4634966b8b5ef0326ec9fe40c99cb4128d1175fa',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200323,\n", " 'state': 'MS',\n", " 'positive': 249,\n", " 'negative': 1143,\n", " 'pending': None,\n", " 'hospitalized': 33,\n", " 'death': 1,\n", " 'total': 1392,\n", " 'hash': '2cb7fea7c4011d740adc0f3cbced17c0820f9c9e',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1392,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 29,\n", " 'positiveIncrease': 42,\n", " 'totalTestResultsIncrease': 71},\n", " {'date': 20200323,\n", " 'state': 'MT',\n", " 'positive': 34,\n", " 'negative': 1146,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1180,\n", " 'hash': '5a153f523288470e80708975e66e26c499662714',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1180,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200323,\n", " 'state': 'NC',\n", " 'positive': 297,\n", " 'negative': 8141,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 8438,\n", " 'hash': 'e54283c69843f6d7af255c4e6e0d7c86c04e53d0',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 8438,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1958,\n", " 'positiveIncrease': 42,\n", " 'totalTestResultsIncrease': 2000},\n", " {'date': 20200323,\n", " 'state': 'ND',\n", " 'positive': 30,\n", " 'negative': 1353,\n", " 'pending': None,\n", " 'hospitalized': 4,\n", " 'death': 0,\n", " 'total': 1383,\n", " 'hash': 'b7e35bca2f0c7ba8c3e9afb6ee3999a3741bda70',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1383,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 93,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 95},\n", " {'date': 20200323,\n", " 'state': 'NE',\n", " 'positive': 50,\n", " 'negative': 356,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 406,\n", " 'hash': '4de64ff7016fe6c741314795faae53ff2b8392e9',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 406,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200323,\n", " 'state': 'NH',\n", " 'positive': 78,\n", " 'negative': 1374,\n", " 'pending': 889,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2341,\n", " 'hash': 'e3919bd3834646db918531842db57aaa1f5485b3',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1452,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 186,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 199},\n", " {'date': 20200323,\n", " 'state': 'NJ',\n", " 'positive': 2844,\n", " 'negative': 359,\n", " 'pending': 94,\n", " 'hospitalized': None,\n", " 'death': 27,\n", " 'total': 3297,\n", " 'hash': 'a87ced5d4bde5f3a8703745bbc9f2c22af017cea',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 3203,\n", " 'fips': '34',\n", " 'deathIncrease': 7,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 32,\n", " 'positiveIncrease': 930,\n", " 'totalTestResultsIncrease': 962},\n", " {'date': 20200323,\n", " 'state': 'NM',\n", " 'positive': 65,\n", " 'negative': 5321,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 5386,\n", " 'hash': '7e0930ff6d99aa4801bc8d468b8575a56e143eec',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 5386,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 599,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 607},\n", " {'date': 20200323,\n", " 'state': 'NV',\n", " 'positive': 245,\n", " 'negative': 3490,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 3735,\n", " 'hash': 'fd3a7793044a7580d134bc009b1ed9918f73b63e',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 3735,\n", " 'fips': '32',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1042,\n", " 'positiveIncrease': 55,\n", " 'totalTestResultsIncrease': 1097},\n", " {'date': 20200323,\n", " 'state': 'NY',\n", " 'positive': 20875,\n", " 'negative': 57414,\n", " 'pending': None,\n", " 'hospitalized': 2635,\n", " 'death': 114,\n", " 'total': 78289,\n", " 'hash': 'ec5dfe2a9fb1a7534ddfa40da717fe1eb342ea58',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 78289,\n", " 'fips': '36',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 661,\n", " 'negativeIncrease': 11181,\n", " 'positiveIncrease': 5707,\n", " 'totalTestResultsIncrease': 16888},\n", " {'date': 20200323,\n", " 'state': 'OH',\n", " 'positive': 442,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': 104,\n", " 'death': 6,\n", " 'total': 582,\n", " 'hash': '10a11a15d3917ba712ce959448fa6ab0c9b50260',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 582,\n", " 'fips': '39',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 21,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 91,\n", " 'totalTestResultsIncrease': 91},\n", " {'date': 20200323,\n", " 'state': 'OK',\n", " 'positive': 81,\n", " 'negative': 694,\n", " 'pending': 102,\n", " 'hospitalized': 15,\n", " 'death': 2,\n", " 'total': 877,\n", " 'hash': 'd6652e6105cafd836093cd20cec8e9860999e071',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 775,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 4,\n", " 'negativeIncrease': 25,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 39},\n", " {'date': 20200323,\n", " 'state': 'OR',\n", " 'positive': 191,\n", " 'negative': 3649,\n", " 'pending': None,\n", " 'hospitalized': 56,\n", " 'death': 5,\n", " 'total': 3840,\n", " 'hash': '01c85118adc84df47a5b701e7eb645d4eaf67d3d',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 3840,\n", " 'fips': '41',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 13,\n", " 'negativeIncrease': 785,\n", " 'positiveIncrease': 30,\n", " 'totalTestResultsIncrease': 815},\n", " {'date': 20200323,\n", " 'state': 'PA',\n", " 'positive': 644,\n", " 'negative': 6595,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 6,\n", " 'total': 7239,\n", " 'hash': '0bd78ce48359ba1bbc430a4b9166b8a77cd9ad78',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 7239,\n", " 'fips': '42',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1631,\n", " 'positiveIncrease': 165,\n", " 'totalTestResultsIncrease': 1796},\n", " {'date': 20200323,\n", " 'state': 'PR',\n", " 'positive': 31,\n", " 'negative': 189,\n", " 'pending': 35,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 255,\n", " 'hash': 'e31ae7a041c6cdad866e1b31c5c6dd9a020a95d0',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 220,\n", " 'fips': '72',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 14},\n", " {'date': 20200323,\n", " 'state': 'RI',\n", " 'positive': 106,\n", " 'negative': 932,\n", " 'pending': 216,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1254,\n", " 'hash': '11d71973615e1d3a430db65b8d8842b4d9f5137f',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1038,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200323,\n", " 'state': 'SC',\n", " 'positive': 299,\n", " 'negative': 1466,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 1765,\n", " 'hash': 'ee3a78c30b411145d37540b25d8755ddb52fd05d',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1765,\n", " 'fips': '45',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 104,\n", " 'totalTestResultsIncrease': 104},\n", " {'date': 20200323,\n", " 'state': 'SD',\n", " 'positive': 28,\n", " 'negative': 762,\n", " 'pending': 265,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1055,\n", " 'hash': '1bfc04d249471a62a2515501a65868b89d4ffdda',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 790,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 22,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 29},\n", " {'date': 20200323,\n", " 'state': 'TN',\n", " 'positive': 615,\n", " 'negative': 3272,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 3887,\n", " 'hash': 'b643a42fb728dc60fa340a9bdf6c6081e69987f8',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 3887,\n", " 'fips': '47',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 110,\n", " 'totalTestResultsIncrease': 110},\n", " {'date': 20200323,\n", " 'state': 'TX',\n", " 'positive': 352,\n", " 'negative': 9703,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 10055,\n", " 'hash': 'f286c4043fcd216afa2058a7d12ba56e2778be2c',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 10055,\n", " 'fips': '48',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1281,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 1299},\n", " {'date': 20200323,\n", " 'state': 'UT',\n", " 'positive': 257,\n", " 'negative': 4790,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 5047,\n", " 'hash': 'f4072d431db556366bbf23f1619dedad537a27c0',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 5047,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1282,\n", " 'positiveIncrease': 76,\n", " 'totalTestResultsIncrease': 1358},\n", " {'date': 20200323,\n", " 'state': 'VA',\n", " 'positive': 254,\n", " 'negative': 3443,\n", " 'pending': None,\n", " 'hospitalized': 38,\n", " 'death': 6,\n", " 'total': 3697,\n", " 'hash': '1fd018b74b56f00584174f061ae0aa7cda9ed717',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 3697,\n", " 'fips': '51',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 6,\n", " 'negativeIncrease': 325,\n", " 'positiveIncrease': 35,\n", " 'totalTestResultsIncrease': 360},\n", " {'date': 20200323,\n", " 'state': 'VI',\n", " 'positive': 17,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 17,\n", " 'hash': '7f605970cf7e9a252a6696e3d395cced4dbe6e72',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 17,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200323,\n", " 'state': 'VT',\n", " 'positive': 75,\n", " 'negative': 1106,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 1181,\n", " 'hash': '78e5366386f02db7c7ce9b897ece45a61c0ba8af',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 1181,\n", " 'fips': '50',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200323,\n", " 'state': 'WA',\n", " 'positive': 1996,\n", " 'negative': 28879,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 95,\n", " 'total': 30875,\n", " 'hash': '372339fd4c554263f2a9dda388d63ad42f0f463a',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 30875,\n", " 'fips': '53',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 3551,\n", " 'positiveIncrease': 203,\n", " 'totalTestResultsIncrease': 3754},\n", " {'date': 20200323,\n", " 'state': 'WI',\n", " 'positive': 416,\n", " 'negative': 7050,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 7466,\n", " 'hash': 'ee7ec42217471f652df0f98722196a31e96b606a',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 7466,\n", " 'fips': '55',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 820,\n", " 'positiveIncrease': 31,\n", " 'totalTestResultsIncrease': 851},\n", " {'date': 20200323,\n", " 'state': 'WV',\n", " 'positive': 16,\n", " 'negative': 444,\n", " 'pending': 4,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 464,\n", " 'hash': 'fe2b1793b0750a67692fdd20532baa4c7240469e',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 460,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 59,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 63},\n", " {'date': 20200323,\n", " 'state': 'WY',\n", " 'positive': 26,\n", " 'negative': 592,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 618,\n", " 'hash': 'b9954417d31e7a4220bf5adffcea32a59030601d',\n", " 'dateChecked': '2020-03-23T20:00:00Z',\n", " 'totalTestResults': 618,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 154,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 156},\n", " {'date': 20200322,\n", " 'state': 'AK',\n", " 'positive': 22,\n", " 'negative': 946,\n", " 'pending': None,\n", " 'hospitalized': 0,\n", " 'death': None,\n", " 'total': 968,\n", " 'hash': '97bf723dd5a6cdcb944572afe5b788f6c7f5ce18',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 968,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 188,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 196},\n", " {'date': 20200322,\n", " 'state': 'AL',\n", " 'positive': 138,\n", " 'negative': 1464,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1602,\n", " 'hash': 'f2cb548c14fd4de5ce029a201d6068749afd68d4',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1602,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1436,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 1450},\n", " {'date': 20200322,\n", " 'state': 'AR',\n", " 'positive': 165,\n", " 'negative': 711,\n", " 'pending': 119,\n", " 'hospitalized': 13,\n", " 'death': 0,\n", " 'total': 995,\n", " 'hash': 'a20d59c35935fb3e46f728a7180a612a96bfb122',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 876,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 13,\n", " 'negativeIncrease': 144,\n", " 'positiveIncrease': 47,\n", " 'totalTestResultsIncrease': 191},\n", " {'date': 20200322,\n", " 'state': 'AS',\n", " 'positive': None,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '0fccd2a5d07fd9495d33568665cdbea990991d40',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200322,\n", " 'state': 'AZ',\n", " 'positive': 152,\n", " 'negative': 282,\n", " 'pending': 87,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 521,\n", " 'hash': 'a53e402edb37725273f2e0890e975e50eb034955',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 434,\n", " 'fips': '04',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 42,\n", " 'positiveIncrease': 48,\n", " 'totalTestResultsIncrease': 90},\n", " {'date': 20200322,\n", " 'state': 'CA',\n", " 'positive': 1536,\n", " 'negative': 11304,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 27,\n", " 'total': 12840,\n", " 'hash': '3fbf626ef6eea90fed186461796a95703b55293f',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 12840,\n", " 'fips': '06',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 55,\n", " 'positiveIncrease': 257,\n", " 'totalTestResultsIncrease': 312},\n", " {'date': 20200322,\n", " 'state': 'CO',\n", " 'positive': 475,\n", " 'negative': 4075,\n", " 'pending': None,\n", " 'hospitalized': 49,\n", " 'death': 5,\n", " 'total': 4550,\n", " 'hash': '9c3327aa37dd52305eb9cb24451e8bca30c87427',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 4550,\n", " 'fips': '08',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 5,\n", " 'negativeIncrease': 758,\n", " 'positiveIncrease': 112,\n", " 'totalTestResultsIncrease': 870},\n", " {'date': 20200322,\n", " 'state': 'CT',\n", " 'positive': 223,\n", " 'negative': 2877,\n", " 'pending': None,\n", " 'hospitalized': 43,\n", " 'death': 5,\n", " 'total': 3100,\n", " 'hash': 'a63a5e93bb324de39e498270f6eb88d09e81155f',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 3100,\n", " 'fips': '09',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 43,\n", " 'negativeIncrease': 771,\n", " 'positiveIncrease': 29,\n", " 'totalTestResultsIncrease': 800},\n", " {'date': 20200322,\n", " 'state': 'DC',\n", " 'positive': 98,\n", " 'negative': 957,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1055,\n", " 'hash': 'acb7a06c8fbeb95ea4f460e3eb8f354dcf8ba02f',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1055,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 451,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 472},\n", " {'date': 20200322,\n", " 'state': 'DE',\n", " 'positive': 56,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 92,\n", " 'hash': '6a605754f6abb577617b96a2043673f1bc515bb7',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 92,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200322,\n", " 'state': 'FL',\n", " 'positive': 830,\n", " 'negative': 7990,\n", " 'pending': 963,\n", " 'hospitalized': 185,\n", " 'death': 13,\n", " 'total': 9783,\n", " 'hash': '829f067832985e6c24ba608f324d9ee082f2b3a8',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 8820,\n", " 'fips': '12',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 27,\n", " 'negativeIncrease': 1411,\n", " 'positiveIncrease': 172,\n", " 'totalTestResultsIncrease': 1583},\n", " {'date': 20200322,\n", " 'state': 'GA',\n", " 'positive': 600,\n", " 'negative': 3420,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 23,\n", " 'total': 4020,\n", " 'hash': '8fb595f34e59203dbb6bc80d7016b4f5d6c331cb',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 4020,\n", " 'fips': '13',\n", " 'deathIncrease': 9,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 863,\n", " 'positiveIncrease': 93,\n", " 'totalTestResultsIncrease': 956},\n", " {'date': 20200322,\n", " 'state': 'GU',\n", " 'positive': 27,\n", " 'negative': 126,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 153,\n", " 'hash': 'a7e6b6ccbc3433241f8b15155e21181f2773e013',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 153,\n", " 'fips': '66',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 18,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 30},\n", " {'date': 20200322,\n", " 'state': 'HI',\n", " 'positive': 48,\n", " 'negative': 263,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 311,\n", " 'hash': '0ccdb9d9470e6e46263b09c58b23982b697a1a79',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 311,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 139,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 150},\n", " {'date': 20200322,\n", " 'state': 'IA',\n", " 'positive': 90,\n", " 'negative': 1215,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1305,\n", " 'hash': '7567130242b80146cef249935b3c97b51e4614d5',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1305,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 166,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 188},\n", " {'date': 20200322,\n", " 'state': 'ID',\n", " 'positive': 42,\n", " 'negative': 1175,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1217,\n", " 'hash': '620327fa7cd9a14a25198de973daad939bb75f39',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1217,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 295,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 306},\n", " {'date': 20200322,\n", " 'state': 'IL',\n", " 'positive': 1049,\n", " 'negative': 7271,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 9,\n", " 'total': 8320,\n", " 'hash': '13bbf71c86f2c7af77d9cd6a4bc692e918fff163',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 8320,\n", " 'fips': '17',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1783,\n", " 'positiveIncrease': 296,\n", " 'totalTestResultsIncrease': 2079},\n", " {'date': 20200322,\n", " 'state': 'IN',\n", " 'positive': 201,\n", " 'negative': 1293,\n", " 'pending': None,\n", " 'hospitalized': 1,\n", " 'death': 6,\n", " 'total': 1494,\n", " 'hash': '188df1ecd18de9aee4eb266b6ed136427bbfbdef',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1494,\n", " 'fips': '18',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 586,\n", " 'positiveIncrease': 75,\n", " 'totalTestResultsIncrease': 661},\n", " {'date': 20200322,\n", " 'state': 'KS',\n", " 'positive': 64,\n", " 'negative': 417,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 481,\n", " 'hash': '24208431ed495bf4e535fecd6a157d12d3c369c0',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 481,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200322,\n", " 'state': 'KY',\n", " 'positive': 99,\n", " 'negative': 1472,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 1571,\n", " 'hash': '288b1efb3d2bfe09a119d451c6651cd0d2f1ee7a',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1571,\n", " 'fips': '21',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 758,\n", " 'positiveIncrease': 45,\n", " 'totalTestResultsIncrease': 803},\n", " {'date': 20200322,\n", " 'state': 'LA',\n", " 'positive': 837,\n", " 'negative': 2661,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 20,\n", " 'total': 3498,\n", " 'hash': '6590165902b646109a8340e917b0bc2637244648',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 3498,\n", " 'fips': '22',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 481,\n", " 'positiveIncrease': 252,\n", " 'totalTestResultsIncrease': 733},\n", " {'date': 20200322,\n", " 'state': 'MA',\n", " 'positive': 646,\n", " 'negative': 5459,\n", " 'pending': None,\n", " 'hospitalized': 71,\n", " 'death': 5,\n", " 'total': 6105,\n", " 'hash': '4b0741772ade94f340d69662d58b9149492cb8c6',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 6105,\n", " 'fips': '25',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 10,\n", " 'negativeIncrease': 707,\n", " 'positiveIncrease': 121,\n", " 'totalTestResultsIncrease': 828},\n", " {'date': 20200322,\n", " 'state': 'MD',\n", " 'positive': 244,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 338,\n", " 'hash': '4a0cb2ee4c88b6b15aa55b4ce26f73e8e3e8d61d',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 338,\n", " 'fips': '24',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 54,\n", " 'totalTestResultsIncrease': 54},\n", " {'date': 20200322,\n", " 'state': 'ME',\n", " 'positive': 89,\n", " 'negative': 2264,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2353,\n", " 'hash': 'd6e7b9fb4c1dfd45990991f92a439cbb1bb75b07',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 2353,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200322,\n", " 'state': 'MI',\n", " 'positive': 1035,\n", " 'negative': 2069,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 3104,\n", " 'hash': 'e71f04e0fcbe47ae489f650a5c736401f210c768',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 3104,\n", " 'fips': '26',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 248,\n", " 'totalTestResultsIncrease': 248},\n", " {'date': 20200322,\n", " 'state': 'MN',\n", " 'positive': 169,\n", " 'negative': 4511,\n", " 'pending': None,\n", " 'hospitalized': 12,\n", " 'death': 1,\n", " 'total': 4680,\n", " 'hash': '87e384d3482618467000b08bb1d98aac0e352cad',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 4680,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 12,\n", " 'negativeIncrease': 559,\n", " 'positiveIncrease': 31,\n", " 'totalTestResultsIncrease': 590},\n", " {'date': 20200322,\n", " 'state': 'MO',\n", " 'positive': 90,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 459,\n", " 'hash': '336768f39879510777583842ea89676470f17aca',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 459,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 17},\n", " {'date': 20200322,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': 'bae7a74be3adb6c5c61e3e07114b28f09732bd15',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200322,\n", " 'state': 'MS',\n", " 'positive': 207,\n", " 'negative': 1114,\n", " 'pending': None,\n", " 'hospitalized': 33,\n", " 'death': 1,\n", " 'total': 1321,\n", " 'hash': 'f39d77510d4b8790e24e66d36a8cc6ff5b3614e0',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1321,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 33,\n", " 'negativeIncrease': 419,\n", " 'positiveIncrease': 67,\n", " 'totalTestResultsIncrease': 486},\n", " {'date': 20200322,\n", " 'state': 'MT',\n", " 'positive': 31,\n", " 'negative': 1146,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1177,\n", " 'hash': 'dc361d5928869b358201b2473e9eae88b78a2823',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1177,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200322,\n", " 'state': 'NC',\n", " 'positive': 255,\n", " 'negative': 6183,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 6438,\n", " 'hash': '5f4e1a7c599c9b745be9e8f626449fb9792c4dba',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 6438,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1091,\n", " 'positiveIncrease': 71,\n", " 'totalTestResultsIncrease': 1162},\n", " {'date': 20200322,\n", " 'state': 'ND',\n", " 'positive': 28,\n", " 'negative': 1260,\n", " 'pending': None,\n", " 'hospitalized': 3,\n", " 'death': 0,\n", " 'total': 1288,\n", " 'hash': 'ee85648c6e598dda5ff19db55a37e526544c4521',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1288,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 119,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 119},\n", " {'date': 20200322,\n", " 'state': 'NE',\n", " 'positive': 48,\n", " 'negative': 356,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 404,\n", " 'hash': '34e232c7526aeae401d033411f7d83deee03f844',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 404,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200322,\n", " 'state': 'NH',\n", " 'positive': 65,\n", " 'negative': 1188,\n", " 'pending': 959,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2212,\n", " 'hash': '3bd997b43e1a6e6d382dab3a9969974c98ea8091',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1253,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 215,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 225},\n", " {'date': 20200322,\n", " 'state': 'NJ',\n", " 'positive': 1914,\n", " 'negative': 327,\n", " 'pending': 49,\n", " 'hospitalized': None,\n", " 'death': 20,\n", " 'total': 2290,\n", " 'hash': '0a48105abe9f1a446436c35bebb0773310fcb30f',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 2241,\n", " 'fips': '34',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 33,\n", " 'positiveIncrease': 587,\n", " 'totalTestResultsIncrease': 620},\n", " {'date': 20200322,\n", " 'state': 'NM',\n", " 'positive': 57,\n", " 'negative': 4722,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 4779,\n", " 'hash': '3f3a2e20270b38ec4452f0709e80c63aaf320c04',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 4779,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 951,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 951},\n", " {'date': 20200322,\n", " 'state': 'NV',\n", " 'positive': 190,\n", " 'negative': 2448,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 2638,\n", " 'hash': '8dc39a8a73a26ab584b2f2252c1d8dbdf7c40074',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 2638,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 64,\n", " 'positiveIncrease': 66,\n", " 'totalTestResultsIncrease': 130},\n", " {'date': 20200322,\n", " 'state': 'NY',\n", " 'positive': 15168,\n", " 'negative': 46233,\n", " 'pending': None,\n", " 'hospitalized': 1974,\n", " 'death': 114,\n", " 'total': 61401,\n", " 'hash': '1db996f9ee77f1f948cd754356856f98cb734ba6',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 61401,\n", " 'fips': '36',\n", " 'deathIncrease': 70,\n", " 'hospitalizedIncrease': 371,\n", " 'negativeIncrease': 11152,\n", " 'positiveIncrease': 4812,\n", " 'totalTestResultsIncrease': 15964},\n", " {'date': 20200322,\n", " 'state': 'OH',\n", " 'positive': 351,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': 83,\n", " 'death': 3,\n", " 'total': 491,\n", " 'hash': '8fb588c5b4de1124ad5a85e53932243a520c071e',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 491,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 25,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 104,\n", " 'totalTestResultsIncrease': 104},\n", " {'date': 20200322,\n", " 'state': 'OK',\n", " 'positive': 67,\n", " 'negative': 669,\n", " 'pending': 102,\n", " 'hospitalized': 11,\n", " 'death': 2,\n", " 'total': 838,\n", " 'hash': '5a499c4e87edf7a6a68d54c0e775d9b45f11a838',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 736,\n", " 'fips': '40',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 109,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 123},\n", " {'date': 20200322,\n", " 'state': 'OR',\n", " 'positive': 161,\n", " 'negative': 2864,\n", " 'pending': None,\n", " 'hospitalized': 43,\n", " 'death': 4,\n", " 'total': 3025,\n", " 'hash': '9550f6f53ea10250a4546717487235c93cc97141',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 3025,\n", " 'fips': '41',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 43,\n", " 'negativeIncrease': 861,\n", " 'positiveIncrease': 47,\n", " 'totalTestResultsIncrease': 908},\n", " {'date': 20200322,\n", " 'state': 'PA',\n", " 'positive': 479,\n", " 'negative': 4964,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 5443,\n", " 'hash': '0d593fc4b9c2311e899d20c4216c81a7b2890742',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 5443,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1198,\n", " 'positiveIncrease': 108,\n", " 'totalTestResultsIncrease': 1306},\n", " {'date': 20200322,\n", " 'state': 'PR',\n", " 'positive': 23,\n", " 'negative': 183,\n", " 'pending': 69,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 275,\n", " 'hash': 'f52432ae457dd4a1d1710509d9c7e3faa4c090c4',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 206,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 40,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 42},\n", " {'date': 20200322,\n", " 'state': 'RI',\n", " 'positive': 83,\n", " 'negative': 932,\n", " 'pending': 216,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1231,\n", " 'hash': '74bf5fe31cfd28b32164bb56e3bab16b291b7f78',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1015,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 70,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 87},\n", " {'date': 20200322,\n", " 'state': 'SC',\n", " 'positive': 195,\n", " 'negative': 1466,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 1661,\n", " 'hash': '1992d58cd17977cdc1128fe4dd3e8f90d0552541',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1661,\n", " 'fips': '45',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 211,\n", " 'positiveIncrease': 43,\n", " 'totalTestResultsIncrease': 254},\n", " {'date': 20200322,\n", " 'state': 'SD',\n", " 'positive': 21,\n", " 'negative': 740,\n", " 'pending': 277,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1038,\n", " 'hash': 'bec0e2adbf4a89a19592d0200b04c437bb7ce8f3',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 761,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 49,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 56},\n", " {'date': 20200322,\n", " 'state': 'TN',\n", " 'positive': 505,\n", " 'negative': 3272,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3777,\n", " 'hash': '7f72b69dd9643c62fb1617e647c274acfa875fc9',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 3777,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 134,\n", " 'totalTestResultsIncrease': 134},\n", " {'date': 20200322,\n", " 'state': 'TX',\n", " 'positive': 334,\n", " 'negative': 8422,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 8756,\n", " 'hash': '9b73cbd246d5ad6a76df359348ebc41c989802f5',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 8756,\n", " 'fips': '48',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2204,\n", " 'positiveIncrease': 30,\n", " 'totalTestResultsIncrease': 2234},\n", " {'date': 20200322,\n", " 'state': 'UT',\n", " 'positive': 181,\n", " 'negative': 3508,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 3689,\n", " 'hash': '2f4b477ca331438cd389667a070e9b263e3995eb',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 3689,\n", " 'fips': '49',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1084,\n", " 'positiveIncrease': 45,\n", " 'totalTestResultsIncrease': 1129},\n", " {'date': 20200322,\n", " 'state': 'VA',\n", " 'positive': 219,\n", " 'negative': 3118,\n", " 'pending': None,\n", " 'hospitalized': 32,\n", " 'death': 3,\n", " 'total': 3337,\n", " 'hash': 'c3b83f22f695643a2545af0f6e3e1ce3e8aea45b',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 3337,\n", " 'fips': '51',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 7,\n", " 'negativeIncrease': 480,\n", " 'positiveIncrease': 67,\n", " 'totalTestResultsIncrease': 547},\n", " {'date': 20200322,\n", " 'state': 'VI',\n", " 'positive': 6,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 6,\n", " 'hash': '493fb9c250f5b6981f290a88240b623d1e0c64f9',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 6,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200322,\n", " 'state': 'VT',\n", " 'positive': 52,\n", " 'negative': 1106,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 1158,\n", " 'hash': '2e3ef59abbaba47ee8425fc6ac9e535df0a75b4a',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 1158,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 327,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 350},\n", " {'date': 20200322,\n", " 'state': 'WA',\n", " 'positive': 1793,\n", " 'negative': 25328,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 94,\n", " 'total': 27121,\n", " 'hash': 'f7ecd8ec4b84d7aef16bc23945a147ae441b8665',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 27121,\n", " 'fips': '53',\n", " 'deathIncrease': 11,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 3609,\n", " 'positiveIncrease': 269,\n", " 'totalTestResultsIncrease': 3878},\n", " {'date': 20200322,\n", " 'state': 'WI',\n", " 'positive': 385,\n", " 'negative': 6230,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 6615,\n", " 'hash': '924a1df060b245566513b24ae969f41ef7df3672',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 6615,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1602,\n", " 'positiveIncrease': 104,\n", " 'totalTestResultsIncrease': 1706},\n", " {'date': 20200322,\n", " 'state': 'WV',\n", " 'positive': 12,\n", " 'negative': 385,\n", " 'pending': 1,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 398,\n", " 'hash': 'b9d3c065a5990731c4a3b1febdeef843f21d4c69',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 397,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 55,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 56},\n", " {'date': 20200322,\n", " 'state': 'WY',\n", " 'positive': 24,\n", " 'negative': 438,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 462,\n", " 'hash': 'e562dcf998f9beef41bb16544f5dbbf8f5303f42',\n", " 'dateChecked': '2020-03-22T20:00:00Z',\n", " 'totalTestResults': 462,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200321,\n", " 'state': 'AK',\n", " 'positive': 14,\n", " 'negative': 758,\n", " 'pending': None,\n", " 'hospitalized': 0,\n", " 'death': None,\n", " 'total': 772,\n", " 'hash': '5aca796ce0f259a998d448767e681ff008c12f0f',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 772,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 72,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 74},\n", " {'date': 20200321,\n", " 'state': 'AL',\n", " 'positive': 124,\n", " 'negative': 28,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 152,\n", " 'hash': 'baa527f0f6a4ed06bc4b090951b550bf6fbfdde6',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 152,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 43,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200321,\n", " 'state': 'AR',\n", " 'positive': 118,\n", " 'negative': 567,\n", " 'pending': 154,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 839,\n", " 'hash': '47f0cd57d1400c8a7d4669f9ef365714c06850d2',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 685,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 216,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 238},\n", " {'date': 20200321,\n", " 'state': 'AS',\n", " 'positive': None,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '7c27798a0019e03914e2ed7fecf06f3350442435',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200321,\n", " 'state': 'AZ',\n", " 'positive': 104,\n", " 'negative': 240,\n", " 'pending': 122,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 466,\n", " 'hash': '1468235c0e6ce34ab9b8c7eaf638f73a5570f5b0',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 344,\n", " 'fips': '04',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 29,\n", " 'positiveIncrease': 39,\n", " 'totalTestResultsIncrease': 68},\n", " {'date': 20200321,\n", " 'state': 'CA',\n", " 'positive': 1279,\n", " 'negative': 11249,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 24,\n", " 'total': 12528,\n", " 'hash': '1d05eb32e039417e6338bdb60b75cb9d357d3fd2',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 12528,\n", " 'fips': '06',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 825,\n", " 'positiveIncrease': 216,\n", " 'totalTestResultsIncrease': 1041},\n", " {'date': 20200321,\n", " 'state': 'CO',\n", " 'positive': 363,\n", " 'negative': 3317,\n", " 'pending': None,\n", " 'hospitalized': 44,\n", " 'death': 4,\n", " 'total': 3680,\n", " 'hash': 'adf53a47d38990c9b401240d3e3e50e2c4524cf3',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 3680,\n", " 'fips': '08',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 44,\n", " 'negativeIncrease': 642,\n", " 'positiveIncrease': 86,\n", " 'totalTestResultsIncrease': 728},\n", " {'date': 20200321,\n", " 'state': 'CT',\n", " 'positive': 194,\n", " 'negative': 2106,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 2300,\n", " 'hash': '959ef064d40bc457202db19ac2297e8456a14bb2',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2300,\n", " 'fips': '09',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1502,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 1502},\n", " {'date': 20200321,\n", " 'state': 'DC',\n", " 'positive': 77,\n", " 'negative': 506,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 583,\n", " 'hash': 'bbc31750a4e2e305dca0b40892220a7b081f8e10',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 583,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 5,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200321,\n", " 'state': 'DE',\n", " 'positive': 45,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 81,\n", " 'hash': '0b7929a3ebfdd7fa4142bd1744661db27238e495',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 81,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 7},\n", " {'date': 20200321,\n", " 'state': 'FL',\n", " 'positive': 658,\n", " 'negative': 6579,\n", " 'pending': 1002,\n", " 'hospitalized': 158,\n", " 'death': 12,\n", " 'total': 8239,\n", " 'hash': 'cebe09730763d65ecbaed4f7ef9a508379e320ac',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 7237,\n", " 'fips': '12',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 158,\n", " 'negativeIncrease': 4709,\n", " 'positiveIncrease': 138,\n", " 'totalTestResultsIncrease': 4847},\n", " {'date': 20200321,\n", " 'state': 'GA',\n", " 'positive': 507,\n", " 'negative': 2557,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 14,\n", " 'total': 3064,\n", " 'hash': 'd7b10da52632a909c753f2209b4ccfcb174588ff',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 3064,\n", " 'fips': '13',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 591,\n", " 'positiveIncrease': 87,\n", " 'totalTestResultsIncrease': 678},\n", " {'date': 20200321,\n", " 'state': 'GU',\n", " 'positive': 15,\n", " 'negative': 108,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 123,\n", " 'hash': 'f6e70786f84dd071d8cdfff658d5a30d4beac424',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 123,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 22,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200321,\n", " 'state': 'HI',\n", " 'positive': 37,\n", " 'negative': 124,\n", " 'pending': 9,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 170,\n", " 'hash': '61f9110ffcc3bd8cc2a61fc152c369ae7273bb46',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 161,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200321,\n", " 'state': 'IA',\n", " 'positive': 68,\n", " 'negative': 1049,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1117,\n", " 'hash': '8c47bf5bc1967e12572ec3e6fcf50088c224ada4',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 1117,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 407,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 430},\n", " {'date': 20200321,\n", " 'state': 'ID',\n", " 'positive': 31,\n", " 'negative': 880,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 911,\n", " 'hash': '219b1e9c60fb5b3c89b748129213c33b4bd14d2f',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 911,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 290,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 298},\n", " {'date': 20200321,\n", " 'state': 'IL',\n", " 'positive': 753,\n", " 'negative': 5488,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 6,\n", " 'total': 6241,\n", " 'hash': '5362493d56be9570bb111b8c3fc8884c548f264e',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 6241,\n", " 'fips': '17',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1792,\n", " 'positiveIncrease': 168,\n", " 'totalTestResultsIncrease': 1960},\n", " {'date': 20200321,\n", " 'state': 'IN',\n", " 'positive': 126,\n", " 'negative': 707,\n", " 'pending': None,\n", " 'hospitalized': 1,\n", " 'death': 4,\n", " 'total': 833,\n", " 'hash': 'e8df73955fb7180e700f8fd13affb531736a94b2',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 833,\n", " 'fips': '18',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 232,\n", " 'positiveIncrease': 47,\n", " 'totalTestResultsIncrease': 279},\n", " {'date': 20200321,\n", " 'state': 'KS',\n", " 'positive': 55,\n", " 'negative': 417,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 472,\n", " 'hash': 'f3b8502524ff334b79c558935a923b8aaa64a40f',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 472,\n", " 'fips': '20',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200321,\n", " 'state': 'KY',\n", " 'positive': 54,\n", " 'negative': 714,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 768,\n", " 'hash': '9c5210b693c212f323357cd0e34e8a77f20e4c35',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 768,\n", " 'fips': '21',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 122,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 129},\n", " {'date': 20200321,\n", " 'state': 'LA',\n", " 'positive': 585,\n", " 'negative': 2180,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 16,\n", " 'total': 2765,\n", " 'hash': 'e364950c398123ef250c9ff205ff02a22065f811',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2765,\n", " 'fips': '22',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1612,\n", " 'positiveIncrease': 106,\n", " 'totalTestResultsIncrease': 1718},\n", " {'date': 20200321,\n", " 'state': 'MA',\n", " 'positive': 525,\n", " 'negative': 4752,\n", " 'pending': None,\n", " 'hospitalized': 61,\n", " 'death': 1,\n", " 'total': 5277,\n", " 'hash': 'e5ec8804c517c9aa8f4a643f0db5852228b938bd',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 5277,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 61,\n", " 'negativeIncrease': 1074,\n", " 'positiveIncrease': 112,\n", " 'totalTestResultsIncrease': 1186},\n", " {'date': 20200321,\n", " 'state': 'MD',\n", " 'positive': 190,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 284,\n", " 'hash': '251eedfbacf86266e2e7dada00eafece4a80258d',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 284,\n", " 'fips': '24',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 41,\n", " 'totalTestResultsIncrease': 41},\n", " {'date': 20200321,\n", " 'state': 'ME',\n", " 'positive': 73,\n", " 'negative': 2264,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2337,\n", " 'hash': 'cf07ad44b146cd15a7210390c0c082d842d2a75b',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2337,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200321,\n", " 'state': 'MI',\n", " 'positive': 787,\n", " 'negative': 2069,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 2856,\n", " 'hash': 'f6be3a242cca96da68b303a6798c053d79c4e9d7',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2856,\n", " 'fips': '26',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 238,\n", " 'totalTestResultsIncrease': 238},\n", " {'date': 20200321,\n", " 'state': 'MN',\n", " 'positive': 138,\n", " 'negative': 3952,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 4090,\n", " 'hash': 'f7ee5c41e663fcfabb1fc408d535dea3d43778f5',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 4090,\n", " 'fips': '27',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 211,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 234},\n", " {'date': 20200321,\n", " 'state': 'MO',\n", " 'positive': 73,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 442,\n", " 'hash': '275966125a705069f2dfab6fb0f2c5f5f9d28df4',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 442,\n", " 'fips': '29',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 26,\n", " 'totalTestResultsIncrease': 26},\n", " {'date': 20200321,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '7f882fa6fb709cfaec70963101c9c8627bbfc9bf',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200321,\n", " 'state': 'MS',\n", " 'positive': 140,\n", " 'negative': 695,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 835,\n", " 'hash': 'dbcd53a7705a60fbf2620c6c1b048cabbe1f7716',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 835,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 60,\n", " 'totalTestResultsIncrease': 60},\n", " {'date': 20200321,\n", " 'state': 'MT',\n", " 'positive': 20,\n", " 'negative': 1146,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1166,\n", " 'hash': '7a733bfc20fa5a3daa6b7c854e172fdad68e1baf',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 1166,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 215,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 219},\n", " {'date': 20200321,\n", " 'state': 'NC',\n", " 'positive': 184,\n", " 'negative': 5092,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 5276,\n", " 'hash': '7185e509e021edd62eecc941c404ce87e95455bc',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 5276,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1996,\n", " 'positiveIncrease': 47,\n", " 'totalTestResultsIncrease': 2043},\n", " {'date': 20200321,\n", " 'state': 'ND',\n", " 'positive': 28,\n", " 'negative': 1141,\n", " 'pending': None,\n", " 'hospitalized': 3,\n", " 'death': 0,\n", " 'total': 1169,\n", " 'hash': '0548c822b602211ca605b5b3df87c9dcbbd4889d',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 1169,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 3,\n", " 'negativeIncrease': 341,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 349},\n", " {'date': 20200321,\n", " 'state': 'NE',\n", " 'positive': 38,\n", " 'negative': 356,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 394,\n", " 'hash': '9846bd4f23bd04000d00feb81c68afb24137e0ff',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 394,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 116,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 122},\n", " {'date': 20200321,\n", " 'state': 'NH',\n", " 'positive': 55,\n", " 'negative': 973,\n", " 'pending': 942,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1970,\n", " 'hash': '3f30150adaec861c106be845b414b96046bd9b71',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 1028,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 228,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 239},\n", " {'date': 20200321,\n", " 'state': 'NJ',\n", " 'positive': 1327,\n", " 'negative': 294,\n", " 'pending': 40,\n", " 'hospitalized': None,\n", " 'death': 16,\n", " 'total': 1661,\n", " 'hash': 'a1e24bdfbb42987e818ae4a8ee876aaf0d545567',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 1621,\n", " 'fips': '34',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 30,\n", " 'positiveIncrease': 437,\n", " 'totalTestResultsIncrease': 467},\n", " {'date': 20200321,\n", " 'state': 'NM',\n", " 'positive': 57,\n", " 'negative': 3771,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3828,\n", " 'hash': 'f89d8776633c429887dd5ef5297c95fef4b4a0bb',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 3828,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 14},\n", " {'date': 20200321,\n", " 'state': 'NV',\n", " 'positive': 124,\n", " 'negative': 2384,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 2508,\n", " 'hash': 'a0012d3b921d4ffb7e01bfd8575ad4f34cd679f6',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2508,\n", " 'fips': '32',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 392,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 407},\n", " {'date': 20200321,\n", " 'state': 'NY',\n", " 'positive': 10356,\n", " 'negative': 35081,\n", " 'pending': None,\n", " 'hospitalized': 1603,\n", " 'death': 44,\n", " 'total': 45437,\n", " 'hash': 'df5b43eaa893dc0b1c6b8b722d998541daea78a8',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 45437,\n", " 'fips': '36',\n", " 'deathIncrease': 9,\n", " 'hospitalizedIncrease': 1603,\n", " 'negativeIncrease': 9756,\n", " 'positiveIncrease': 3254,\n", " 'totalTestResultsIncrease': 13010},\n", " {'date': 20200321,\n", " 'state': 'OH',\n", " 'positive': 247,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': 58,\n", " 'death': 3,\n", " 'total': 387,\n", " 'hash': '57598bb509a682fe485963cd7ee70db2a8ddf4a8',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 387,\n", " 'fips': '39',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 58,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 78,\n", " 'totalTestResultsIncrease': 78},\n", " {'date': 20200321,\n", " 'state': 'OK',\n", " 'positive': 53,\n", " 'negative': 560,\n", " 'pending': 144,\n", " 'hospitalized': 10,\n", " 'death': 1,\n", " 'total': 757,\n", " 'hash': 'f275369ddfe17ee2e13a96db31764112325c746c',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 613,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 10,\n", " 'negativeIncrease': 22,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 26},\n", " {'date': 20200321,\n", " 'state': 'OR',\n", " 'positive': 114,\n", " 'negative': 2003,\n", " 'pending': 433,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2550,\n", " 'hash': '0f1fe09f24f14296d822dbb129751f0cec3f3364',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2117,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200321,\n", " 'state': 'PA',\n", " 'positive': 371,\n", " 'negative': 3766,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 4137,\n", " 'hash': '2381b1a5086b949b22cdf9e9b6c8265c9b7fc9b1',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 4137,\n", " 'fips': '42',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1192,\n", " 'positiveIncrease': 103,\n", " 'totalTestResultsIncrease': 1295},\n", " {'date': 20200321,\n", " 'state': 'PR',\n", " 'positive': 21,\n", " 'negative': 143,\n", " 'pending': 71,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 235,\n", " 'hash': 'b21940b0e47955a74f49101ef80332f5cf43b56e',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 164,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 29,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200321,\n", " 'state': 'RI',\n", " 'positive': 66,\n", " 'negative': 862,\n", " 'pending': 290,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1218,\n", " 'hash': '5f1e37688c018089b9d1e32a7742e2eef1360221',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 928,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 208,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 220},\n", " {'date': 20200321,\n", " 'state': 'SC',\n", " 'positive': 152,\n", " 'negative': 1255,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1407,\n", " 'hash': '697fb3449f3632fe529599b074794fac0e3afda5',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 1407,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 422,\n", " 'positiveIncrease': 71,\n", " 'totalTestResultsIncrease': 493},\n", " {'date': 20200321,\n", " 'state': 'SD',\n", " 'positive': 14,\n", " 'negative': 691,\n", " 'pending': 268,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 973,\n", " 'hash': 'd2951d37526e7d2e6b09fdbe48554199cb5c6402',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 705,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 28,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 28},\n", " {'date': 20200321,\n", " 'state': 'TN',\n", " 'positive': 371,\n", " 'negative': 3272,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3643,\n", " 'hash': '2953bf7991c7bdc81597f40011a8b0bbae3b9f70',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 3643,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2709,\n", " 'positiveIncrease': 143,\n", " 'totalTestResultsIncrease': 2852},\n", " {'date': 20200321,\n", " 'state': 'TX',\n", " 'positive': 304,\n", " 'negative': 6218,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 6522,\n", " 'hash': '39b6f330e4846529eb4657860048b092018f4ce6',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 6522,\n", " 'fips': '48',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1135,\n", " 'positiveIncrease': 110,\n", " 'totalTestResultsIncrease': 1245},\n", " {'date': 20200321,\n", " 'state': 'UT',\n", " 'positive': 136,\n", " 'negative': 2424,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 2560,\n", " 'hash': 'd0b29699e5d5af4648de96eacd885829093baf1b',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2560,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 389,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 413},\n", " {'date': 20200321,\n", " 'state': 'VA',\n", " 'positive': 152,\n", " 'negative': 2638,\n", " 'pending': None,\n", " 'hospitalized': 25,\n", " 'death': 2,\n", " 'total': 2790,\n", " 'hash': 'c60363a9a9856e7d3434269e52c7ae876cda6d54',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 2790,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 25,\n", " 'negativeIncrease': 427,\n", " 'positiveIncrease': 38,\n", " 'totalTestResultsIncrease': 465},\n", " {'date': 20200321,\n", " 'state': 'VI',\n", " 'positive': 6,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 6,\n", " 'hash': '516ad2e59cfd6191b7ec08160c94ed9ac57e78a5',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 6,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200321,\n", " 'state': 'VT',\n", " 'positive': 29,\n", " 'negative': 779,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 808,\n", " 'hash': 'deb27b489a10149f0ffab0aa35b211bc52415c86',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 808,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200321,\n", " 'state': 'WA',\n", " 'positive': 1524,\n", " 'negative': 21719,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 83,\n", " 'total': 23243,\n", " 'hash': 'a1b6baad7302af083333e08572da51e2fe0a5380',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 23243,\n", " 'fips': '53',\n", " 'deathIncrease': 9,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2383,\n", " 'positiveIncrease': 148,\n", " 'totalTestResultsIncrease': 2531},\n", " {'date': 20200321,\n", " 'state': 'WI',\n", " 'positive': 281,\n", " 'negative': 4628,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 4909,\n", " 'hash': '1dba2989f5c0fbb567b0a025cc19f70fb4cc2d82',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 4909,\n", " 'fips': '55',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1173,\n", " 'positiveIncrease': 75,\n", " 'totalTestResultsIncrease': 1248},\n", " {'date': 20200321,\n", " 'state': 'WV',\n", " 'positive': 11,\n", " 'negative': 330,\n", " 'pending': 2,\n", " 'hospitalized': 1,\n", " 'death': 0,\n", " 'total': 343,\n", " 'hash': 'aedc6aeef721c1a711c10fcf5d0cf108edc2788f',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 341,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 1,\n", " 'negativeIncrease': 111,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 115},\n", " {'date': 20200321,\n", " 'state': 'WY',\n", " 'positive': 23,\n", " 'negative': 438,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 461,\n", " 'hash': 'e20bb349ec708b70d15eba2d95d06dff6a18267f',\n", " 'dateChecked': '2020-03-21T20:00:00Z',\n", " 'totalTestResults': 461,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 107,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 111},\n", " {'date': 20200320,\n", " 'state': 'AK',\n", " 'positive': 12,\n", " 'negative': 686,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 698,\n", " 'hash': 'f100e322bfac61c32ba1d59fc953ec344062181b',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 698,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 286,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 292},\n", " {'date': 20200320,\n", " 'state': 'AL',\n", " 'positive': 81,\n", " 'negative': 28,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 109,\n", " 'hash': '99ce90d040bfd5faf696c5d04996bc1f8d712d16',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 109,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 13},\n", " {'date': 20200320,\n", " 'state': 'AR',\n", " 'positive': 96,\n", " 'negative': 351,\n", " 'pending': 203,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 650,\n", " 'hash': '36329d17f4be3c2b4b26579ca2e15fd2088bdf9a',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 447,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 41,\n", " 'positiveIncrease': 50,\n", " 'totalTestResultsIncrease': 91},\n", " {'date': 20200320,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '032f92e5a91be5085d6b9ff4646a2523240d47c4',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200320,\n", " 'state': 'AZ',\n", " 'positive': 65,\n", " 'negative': 211,\n", " 'pending': 101,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 377,\n", " 'hash': 'e0cfe01ebed477484557071fe66f76fb97be386c',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 276,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 36,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 57},\n", " {'date': 20200320,\n", " 'state': 'CA',\n", " 'positive': 1063,\n", " 'negative': 10424,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 20,\n", " 'total': 11487,\n", " 'hash': 'bcf2d1d9c18f533552894d8a295ab3f2e23acc44',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 11487,\n", " 'fips': '06',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1637,\n", " 'positiveIncrease': 139,\n", " 'totalTestResultsIncrease': 1776},\n", " {'date': 20200320,\n", " 'state': 'CO',\n", " 'positive': 277,\n", " 'negative': 2675,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2952,\n", " 'hash': 'd7af3716fc293cf9c9f48c145d854821d95b0b91',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2952,\n", " 'fips': '08',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 563,\n", " 'positiveIncrease': 61,\n", " 'totalTestResultsIncrease': 624},\n", " {'date': 20200320,\n", " 'state': 'CT',\n", " 'positive': 194,\n", " 'negative': 604,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 798,\n", " 'hash': '1fad29d88c83384e0f8a8230dca8bd5c7fcb6692',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 798,\n", " 'fips': '09',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 98,\n", " 'totalTestResultsIncrease': 98},\n", " {'date': 20200320,\n", " 'state': 'DC',\n", " 'positive': 71,\n", " 'negative': 501,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 573,\n", " 'hash': '83c087d74a68674b2ae1c0d0ca9a908ee2fbe2ad',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 572,\n", " 'fips': '11',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 348,\n", " 'positiveIncrease': 32,\n", " 'totalTestResultsIncrease': 380},\n", " {'date': 20200320,\n", " 'state': 'DE',\n", " 'positive': 38,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 74,\n", " 'hash': '6cfbacb8356f052dbfb7e13ecfe3bb863ea0d8fe',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 74,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 8},\n", " {'date': 20200320,\n", " 'state': 'FL',\n", " 'positive': 520,\n", " 'negative': 1870,\n", " 'pending': 1026,\n", " 'hospitalized': None,\n", " 'death': 10,\n", " 'total': 3416,\n", " 'hash': '965b2a27e90de69c4a69f509954f76df8554dcbc',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2390,\n", " 'fips': '12',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 337,\n", " 'positiveIncrease': 130,\n", " 'totalTestResultsIncrease': 467},\n", " {'date': 20200320,\n", " 'state': 'GA',\n", " 'positive': 420,\n", " 'negative': 1966,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 13,\n", " 'total': 2386,\n", " 'hash': '8b7d91545beab5c329cacabf8b197ac731d79612',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2386,\n", " 'fips': '13',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 422,\n", " 'positiveIncrease': 133,\n", " 'totalTestResultsIncrease': 555},\n", " {'date': 20200320,\n", " 'state': 'GU',\n", " 'positive': 14,\n", " 'negative': 86,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 100,\n", " 'hash': 'c7fb5ebb2974f61043b41cd83c5eeb25dfcd7ee0',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 100,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 17,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 19},\n", " {'date': 20200320,\n", " 'state': 'HI',\n", " 'positive': 26,\n", " 'negative': 124,\n", " 'pending': 9,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 159,\n", " 'hash': '409e48d58e3c5d402847a3fbaee2dba629548be3',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 150,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 31,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 41},\n", " {'date': 20200320,\n", " 'state': 'IA',\n", " 'positive': 45,\n", " 'negative': 642,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 687,\n", " 'hash': 'fde385a2d305e52d8d1abb94c6917abc7f710e41',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 687,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 559,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 566},\n", " {'date': 20200320,\n", " 'state': 'ID',\n", " 'positive': 23,\n", " 'negative': 590,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 613,\n", " 'hash': '7a65d5e550bab590123f1998c168780405efc8e3',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 613,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 133,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 145},\n", " {'date': 20200320,\n", " 'state': 'IL',\n", " 'positive': 585,\n", " 'negative': 3696,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 4281,\n", " 'hash': '044153ef61ad9bf559fc54bab35a6fc58bb4fc90',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 4281,\n", " 'fips': '17',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 971,\n", " 'positiveIncrease': 163,\n", " 'totalTestResultsIncrease': 1134},\n", " {'date': 20200320,\n", " 'state': 'IN',\n", " 'positive': 79,\n", " 'negative': 475,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 554,\n", " 'hash': '241ff2ca6a6fa393feddaae58b830439f2ba637b',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 554,\n", " 'fips': '18',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 151,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 174},\n", " {'date': 20200320,\n", " 'state': 'KS',\n", " 'positive': 44,\n", " 'negative': 417,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 461,\n", " 'hash': '07621016b07a99e37fa1ffef390bd3f0462ababd',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 461,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200320,\n", " 'state': 'KY',\n", " 'positive': 47,\n", " 'negative': 592,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 639,\n", " 'hash': 'bd5050eb72956804b09323ad53da0fcd3e5f4f3c',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 639,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 138,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 150},\n", " {'date': 20200320,\n", " 'state': 'LA',\n", " 'positive': 479,\n", " 'negative': 568,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 12,\n", " 'total': 1047,\n", " 'hash': '40bd575d3e01208419e5bcee00aeeda03bc9d725',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 1047,\n", " 'fips': '22',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 110,\n", " 'positiveIncrease': 132,\n", " 'totalTestResultsIncrease': 242},\n", " {'date': 20200320,\n", " 'state': 'MA',\n", " 'positive': 413,\n", " 'negative': 3678,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 4091,\n", " 'hash': 'a2f24eb9b1d8e20dc7ee246f89066dc5c87bff1f',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 4091,\n", " 'fips': '25',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 874,\n", " 'positiveIncrease': 85,\n", " 'totalTestResultsIncrease': 959},\n", " {'date': 20200320,\n", " 'state': 'MD',\n", " 'positive': 149,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 243,\n", " 'hash': '1caeb3997ba0f2f7ac25b8316f2bac35907ce672',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 243,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 42,\n", " 'totalTestResultsIncrease': 42},\n", " {'date': 20200320,\n", " 'state': 'ME',\n", " 'positive': 57,\n", " 'negative': 2264,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2321,\n", " 'hash': '6c983c138d1ae9f9cd78c9eade12dcdc0c5eae3f',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2321,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 260,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 264},\n", " {'date': 20200320,\n", " 'state': 'MI',\n", " 'positive': 549,\n", " 'negative': 2069,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2618,\n", " 'hash': '50caea99108851c0513bbc17c54e4f3a7129967a',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2618,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': -44,\n", " 'positiveIncrease': 213,\n", " 'totalTestResultsIncrease': 169},\n", " {'date': 20200320,\n", " 'state': 'MN',\n", " 'positive': 115,\n", " 'negative': 3741,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3856,\n", " 'hash': 'e094fffdc4437dc9977ead272e4a63ecd27df7f0',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 3856,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 792,\n", " 'positiveIncrease': 26,\n", " 'totalTestResultsIncrease': 818},\n", " {'date': 20200320,\n", " 'state': 'MO',\n", " 'positive': 47,\n", " 'negative': 369,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 416,\n", " 'hash': '7bc6dc4231ac9a2dab72f47017567150e88b98b0',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 416,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 61,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 84},\n", " {'date': 20200320,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '2148ab1a0c6501d89c26e8b941737b40c0e03325',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200320,\n", " 'state': 'MS',\n", " 'positive': 80,\n", " 'negative': 695,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 775,\n", " 'hash': '77499482f1d32395628eb671effc039f22b61b52',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 775,\n", " 'fips': '28',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 143,\n", " 'positiveIncrease': 30,\n", " 'totalTestResultsIncrease': 173},\n", " {'date': 20200320,\n", " 'state': 'MT',\n", " 'positive': 16,\n", " 'negative': 931,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 947,\n", " 'hash': 'db5529632d12d99302be7a1578156b20cbb7a309',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 947,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 170,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 174},\n", " {'date': 20200320,\n", " 'state': 'NC',\n", " 'positive': 137,\n", " 'negative': 3096,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 3233,\n", " 'hash': '3e5e81f83c4f952f273edba6f0b59f425f0fde8b',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 3233,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 688,\n", " 'positiveIncrease': 40,\n", " 'totalTestResultsIncrease': 728},\n", " {'date': 20200320,\n", " 'state': 'ND',\n", " 'positive': 20,\n", " 'negative': 800,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 820,\n", " 'hash': '04dc46c17fd7b5e024218e9b542b15d80ec183d1',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 820,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 307,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 312},\n", " {'date': 20200320,\n", " 'state': 'NE',\n", " 'positive': 32,\n", " 'negative': 240,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 272,\n", " 'hash': 'cfecdbbebd6a43a381e618282a278705b5113783',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 272,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200320,\n", " 'state': 'NH',\n", " 'positive': 44,\n", " 'negative': 745,\n", " 'pending': 631,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1420,\n", " 'hash': '6225333a512c71e7008908be18f640c448c3f84c',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 789,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 124,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 129},\n", " {'date': 20200320,\n", " 'state': 'NJ',\n", " 'positive': 890,\n", " 'negative': 264,\n", " 'pending': 86,\n", " 'hospitalized': None,\n", " 'death': 11,\n", " 'total': 1240,\n", " 'hash': '9eaacfa20d2b718bcfd23ad14ec25598cc75dfb7',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 1154,\n", " 'fips': '34',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 54,\n", " 'positiveIncrease': 148,\n", " 'totalTestResultsIncrease': 202},\n", " {'date': 20200320,\n", " 'state': 'NM',\n", " 'positive': 43,\n", " 'negative': 3771,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3814,\n", " 'hash': 'bedb95f5f0b651d1e823d543f13b1a795174b594',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 3814,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1009,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 1017},\n", " {'date': 20200320,\n", " 'state': 'NV',\n", " 'positive': 109,\n", " 'negative': 1992,\n", " 'pending': -3,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 2098,\n", " 'hash': '2de849b91b6d604cd54f144e903a5a3435475243',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2101,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 366,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 380},\n", " {'date': 20200320,\n", " 'state': 'NY',\n", " 'positive': 7102,\n", " 'negative': 25325,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 35,\n", " 'total': 32427,\n", " 'hash': '768a49689cc7b8a1c94c6d80fb31db0a34b7d072',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 32427,\n", " 'fips': '36',\n", " 'deathIncrease': 23,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7193,\n", " 'positiveIncrease': 2950,\n", " 'totalTestResultsIncrease': 10143},\n", " {'date': 20200320,\n", " 'state': 'OH',\n", " 'positive': 169,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 309,\n", " 'hash': '5cd26d851890feb62197f1140df440d05e9e5871',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 309,\n", " 'fips': '39',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 50,\n", " 'totalTestResultsIncrease': 50},\n", " {'date': 20200320,\n", " 'state': 'OK',\n", " 'positive': 49,\n", " 'negative': 538,\n", " 'pending': 374,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 961,\n", " 'hash': '5aa19156888967e56ded2c8880809f17f3dbebc5',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 587,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 72,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 77},\n", " {'date': 20200320,\n", " 'state': 'OR',\n", " 'positive': 114,\n", " 'negative': 2003,\n", " 'pending': 433,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2550,\n", " 'hash': '4b8450f9c2b67c962f85a83415184cc3ae925417',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2117,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 674,\n", " 'positiveIncrease': 26,\n", " 'totalTestResultsIncrease': 700},\n", " {'date': 20200320,\n", " 'state': 'PA',\n", " 'positive': 268,\n", " 'negative': 2574,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 2842,\n", " 'hash': '906e51fb2aabc7ef920a53064db22aabecdc89e7',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2842,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 966,\n", " 'positiveIncrease': 83,\n", " 'totalTestResultsIncrease': 1049},\n", " {'date': 20200320,\n", " 'state': 'PR',\n", " 'positive': 14,\n", " 'negative': 114,\n", " 'pending': 52,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 180,\n", " 'hash': '4c1414c6742042fac77c5af8a449532fd609aeaa',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 128,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 58,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 67},\n", " {'date': 20200320,\n", " 'state': 'RI',\n", " 'positive': 54,\n", " 'negative': 654,\n", " 'pending': 140,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 848,\n", " 'hash': 'c66dd20892b5761782d6099da3c4ce97eec1f2d1',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 708,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 114,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 135},\n", " {'date': 20200320,\n", " 'state': 'SC',\n", " 'positive': 81,\n", " 'negative': 833,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 914,\n", " 'hash': 'b7c6ccb2b454fcfcf6eb441f0f11d6edc2237ce4',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 914,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 250,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 271},\n", " {'date': 20200320,\n", " 'state': 'SD',\n", " 'positive': 14,\n", " 'negative': 663,\n", " 'pending': 270,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 947,\n", " 'hash': '2cf24eb0b68196f3bb2366a5eafeac4e56c0e305',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 677,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 112,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 115},\n", " {'date': 20200320,\n", " 'state': 'TN',\n", " 'positive': 228,\n", " 'negative': 563,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 791,\n", " 'hash': '3be5a03505d266ad15250eb2351435156d19ec7d',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 791,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 214,\n", " 'positiveIncrease': 74,\n", " 'totalTestResultsIncrease': 288},\n", " {'date': 20200320,\n", " 'state': 'TX',\n", " 'positive': 194,\n", " 'negative': 5083,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 5277,\n", " 'hash': '43427ad8e7200f1cc804d428204d60b60dbb00d3',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 5277,\n", " 'fips': '48',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2871,\n", " 'positiveIncrease': 51,\n", " 'totalTestResultsIncrease': 2922},\n", " {'date': 20200320,\n", " 'state': 'UT',\n", " 'positive': 112,\n", " 'negative': 2035,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 2147,\n", " 'hash': '5868733c835f428c4144967f9f28eb5eb4161cf2',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2147,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 587,\n", " 'positiveIncrease': 34,\n", " 'totalTestResultsIncrease': 621},\n", " {'date': 20200320,\n", " 'state': 'VA',\n", " 'positive': 114,\n", " 'negative': 2211,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 2325,\n", " 'hash': '1ca36cc781b857ee2d66bb6b9a98277e4c6becf8',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 2325,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 382,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 402},\n", " {'date': 20200320,\n", " 'state': 'VI',\n", " 'positive': 3,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 3,\n", " 'hash': '2f39854c833b20a5fd6a7a9abeb377af83c29b24',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 3,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200320,\n", " 'state': 'VT',\n", " 'positive': 29,\n", " 'negative': 779,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 808,\n", " 'hash': 'af10571f40869bcc8a615e47b412684b04d3e5c4',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 808,\n", " 'fips': '50',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 134,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 141},\n", " {'date': 20200320,\n", " 'state': 'WA',\n", " 'positive': 1376,\n", " 'negative': 19336,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 74,\n", " 'total': 20712,\n", " 'hash': 'c7aaa69c772d355e252c23e18fc3e692c7bb1edd',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 20712,\n", " 'fips': '53',\n", " 'deathIncrease': 8,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 3418,\n", " 'positiveIncrease': 189,\n", " 'totalTestResultsIncrease': 3607},\n", " {'date': 20200320,\n", " 'state': 'WI',\n", " 'positive': 206,\n", " 'negative': 3455,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 3661,\n", " 'hash': 'cf55a836599cd73137df67e9b7427a89ab1b6482',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 3661,\n", " 'fips': '55',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1263,\n", " 'positiveIncrease': 51,\n", " 'totalTestResultsIncrease': 1314},\n", " {'date': 20200320,\n", " 'state': 'WV',\n", " 'positive': 7,\n", " 'negative': 219,\n", " 'pending': 13,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 239,\n", " 'hash': '027c75ba65750b8d51e3e2f6e73a6998bb4b86b9',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 226,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 76,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 81},\n", " {'date': 20200320,\n", " 'state': 'WY',\n", " 'positive': 19,\n", " 'negative': 331,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 350,\n", " 'hash': '4cbce5c5ecba14903327af250544839ae4166114',\n", " 'dateChecked': '2020-03-20T20:00:00Z',\n", " 'totalTestResults': 350,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 60,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 61},\n", " {'date': 20200319,\n", " 'state': 'AK',\n", " 'positive': 6,\n", " 'negative': 400,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 406,\n", " 'hash': 'f51c54bdc830c9325325c24010675e68adfe280b',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 406,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': -6,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': -6},\n", " {'date': 20200319,\n", " 'state': 'AL',\n", " 'positive': 68,\n", " 'negative': 28,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 96,\n", " 'hash': '6d627de92a7a4846ebbb7410c145fc0135d99c80',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 96,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200319,\n", " 'state': 'AR',\n", " 'positive': 46,\n", " 'negative': 310,\n", " 'pending': 113,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 469,\n", " 'hash': 'c7f20251d2ea116a8b130c836457eccc6786561d',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 356,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 74,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 87},\n", " {'date': 20200319,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '0cdf591ed5d28bcf12d534d3898137dacd8d86c3',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200319,\n", " 'state': 'AZ',\n", " 'positive': 44,\n", " 'negative': 175,\n", " 'pending': 130,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 349,\n", " 'hash': 'f3bee07e932138a9095561f188ee8d4be6c7a646',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 219,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200319,\n", " 'state': 'CA',\n", " 'positive': 924,\n", " 'negative': 8787,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 18,\n", " 'total': 9711,\n", " 'hash': '76f07d40896aa447b8f02518cf9bd7448d881919',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 9711,\n", " 'fips': '06',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 806,\n", " 'positiveIncrease': 313,\n", " 'totalTestResultsIncrease': 1119},\n", " {'date': 20200319,\n", " 'state': 'CO',\n", " 'positive': 216,\n", " 'negative': 2112,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 2328,\n", " 'hash': '7a2d56b37151bf40f5df165a9964ea26dc187fd5',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 2328,\n", " 'fips': '08',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 495,\n", " 'positiveIncrease': 33,\n", " 'totalTestResultsIncrease': 528},\n", " {'date': 20200319,\n", " 'state': 'CT',\n", " 'positive': 96,\n", " 'negative': 604,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 700,\n", " 'hash': 'ef2a8c6a9896be1db5614341b351fcca6a6a43af',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 700,\n", " 'fips': '09',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 479,\n", " 'positiveIncrease': 28,\n", " 'totalTestResultsIncrease': 507},\n", " {'date': 20200319,\n", " 'state': 'DC',\n", " 'positive': 39,\n", " 'negative': 153,\n", " 'pending': 11,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 203,\n", " 'hash': '1f5115a6f52d7e63ae51e6541ea8d8c338d17642',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 192,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 15,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200319,\n", " 'state': 'DE',\n", " 'positive': 30,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 66,\n", " 'hash': 'dbce4af8909cb89f3883a2bb140d7d18d2ee04b0',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 66,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200319,\n", " 'state': 'FL',\n", " 'positive': 390,\n", " 'negative': 1533,\n", " 'pending': 1019,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 2942,\n", " 'hash': '3536079583920516ca69f1a4f9762a814e68d396',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 1923,\n", " 'fips': '12',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 308,\n", " 'positiveIncrease': 76,\n", " 'totalTestResultsIncrease': 384},\n", " {'date': 20200319,\n", " 'state': 'GA',\n", " 'positive': 287,\n", " 'negative': 1544,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 10,\n", " 'total': 1831,\n", " 'hash': 'c18faca669559e0f214de0e4e92c37e994e17d5b',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 1831,\n", " 'fips': '13',\n", " 'deathIncrease': 9,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 233,\n", " 'positiveIncrease': 90,\n", " 'totalTestResultsIncrease': 323},\n", " {'date': 20200319,\n", " 'state': 'GU',\n", " 'positive': 12,\n", " 'negative': 69,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 81,\n", " 'hash': '0cd912fd78c1a193bdad0105fa20574ead1401c9',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 81,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 12,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200319,\n", " 'state': 'HI',\n", " 'positive': 16,\n", " 'negative': 93,\n", " 'pending': 9,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 118,\n", " 'hash': '9d13f94f4f0b422f163849d904ed3b8d6699f3b7',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 109,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200319,\n", " 'state': 'IA',\n", " 'positive': 38,\n", " 'negative': 83,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 121,\n", " 'hash': '45610aa436e265cb2b15724a21d0bff50101b5c6',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 121,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200319,\n", " 'state': 'ID',\n", " 'positive': 11,\n", " 'negative': 457,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 468,\n", " 'hash': 'e442ab9ef5a9033d44f92d2b830e00e592b68881',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 468,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': -2,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200319,\n", " 'state': 'IL',\n", " 'positive': 422,\n", " 'negative': 2725,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 3147,\n", " 'hash': '9740bba351d27df0d6927c3b10d6527c518c4d40',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 3147,\n", " 'fips': '17',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 962,\n", " 'positiveIncrease': 134,\n", " 'totalTestResultsIncrease': 1096},\n", " {'date': 20200319,\n", " 'state': 'IN',\n", " 'positive': 56,\n", " 'negative': 324,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 380,\n", " 'hash': 'bd7df0bfa6f570e91a43f6e9ef9e4238662a72e8',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 380,\n", " 'fips': '18',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 170,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 187},\n", " {'date': 20200319,\n", " 'state': 'KS',\n", " 'positive': 34,\n", " 'negative': 417,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 451,\n", " 'hash': '0982aec6d161f3deee49ff8f6a0eaf51f9ae7235',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 451,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200319,\n", " 'state': 'KY',\n", " 'positive': 35,\n", " 'negative': 454,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 489,\n", " 'hash': '26e6adb25db52c0e9d88b51a71ce83345d3488e8',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 489,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 100,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 109},\n", " {'date': 20200319,\n", " 'state': 'LA',\n", " 'positive': 347,\n", " 'negative': 458,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 8,\n", " 'total': 805,\n", " 'hash': '69b1a58c3c50d8b25cc4420a6e5e683f8aee2211',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 805,\n", " 'fips': '22',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 123,\n", " 'positiveIncrease': 107,\n", " 'totalTestResultsIncrease': 230},\n", " {'date': 20200319,\n", " 'state': 'MA',\n", " 'positive': 328,\n", " 'negative': 2804,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3132,\n", " 'hash': '6dbf4008bb46d289c15299b3eed71620893f1c86',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 3132,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 789,\n", " 'positiveIncrease': 72,\n", " 'totalTestResultsIncrease': 861},\n", " {'date': 20200319,\n", " 'state': 'MD',\n", " 'positive': 107,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 201,\n", " 'hash': '3bcec8901e28d1272273ef032dc2b6446dcc373d',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 201,\n", " 'fips': '24',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200319,\n", " 'state': 'ME',\n", " 'positive': 53,\n", " 'negative': 2004,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2057,\n", " 'hash': '9c7b8464f1ca2bbdc376dfae87e480fb478fc522',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 2057,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 334,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 344},\n", " {'date': 20200319,\n", " 'state': 'MI',\n", " 'positive': 336,\n", " 'negative': 2113,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2449,\n", " 'hash': '974c0a489f6c4f3c988c5e4e9a2ac4942eb9c051',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 2449,\n", " 'fips': '26',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1841,\n", " 'positiveIncrease': 256,\n", " 'totalTestResultsIncrease': 2097},\n", " {'date': 20200319,\n", " 'state': 'MN',\n", " 'positive': 89,\n", " 'negative': 2949,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3038,\n", " 'hash': 'aac36645efd6aee0f83dad1fbd49e0ab963c0304',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 3038,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 264,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 276},\n", " {'date': 20200319,\n", " 'state': 'MO',\n", " 'positive': 24,\n", " 'negative': 308,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 332,\n", " 'hash': 'b6e8cc0e9a476424a697c2573dd1506a222a9034',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 332,\n", " 'fips': '29',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 55,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 66},\n", " {'date': 20200319,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': 'f031f18142d91ea3d3fd62575d3e911a97b9d9e4',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200319,\n", " 'state': 'MS',\n", " 'positive': 50,\n", " 'negative': 552,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 602,\n", " 'hash': 'c2b3d25fcead07c10fc6f4a86089840956df9128',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 602,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 73,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 89},\n", " {'date': 20200319,\n", " 'state': 'MT',\n", " 'positive': 12,\n", " 'negative': 761,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 773,\n", " 'hash': '67afc181f91504f382635a4313b938780c62cc33',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 773,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 262,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 264},\n", " {'date': 20200319,\n", " 'state': 'NC',\n", " 'positive': 97,\n", " 'negative': 2408,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 2505,\n", " 'hash': '32b595f8c266a0d76eba2252d5f763067453216c',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 2505,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 621,\n", " 'positiveIncrease': 34,\n", " 'totalTestResultsIncrease': 655},\n", " {'date': 20200319,\n", " 'state': 'ND',\n", " 'positive': 15,\n", " 'negative': 493,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 508,\n", " 'hash': '67bdb865eb7a868ffd5c68c613fec44714293b65',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 508,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 225,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 234},\n", " {'date': 20200319,\n", " 'state': 'NE',\n", " 'positive': 27,\n", " 'negative': 240,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 267,\n", " 'hash': '82f1d5a505d90b40c1569ec4837727a6fe7fae55',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 267,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 34,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 37},\n", " {'date': 20200319,\n", " 'state': 'NH',\n", " 'positive': 39,\n", " 'negative': 621,\n", " 'pending': 231,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 891,\n", " 'hash': 'e5fc727e8386cae06bfb992bf8156e2224d28b7f',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 660,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 108,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 121},\n", " {'date': 20200319,\n", " 'state': 'NJ',\n", " 'positive': 742,\n", " 'negative': 210,\n", " 'pending': 74,\n", " 'hospitalized': None,\n", " 'death': 9,\n", " 'total': 1026,\n", " 'hash': 'f38021db122e71d3d0859c6bcb3138dce12f7583',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 952,\n", " 'fips': '34',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 20,\n", " 'positiveIncrease': 315,\n", " 'totalTestResultsIncrease': 335},\n", " {'date': 20200319,\n", " 'state': 'NM',\n", " 'positive': 35,\n", " 'negative': 2762,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2797,\n", " 'hash': '3055f62249dd8bd5e13c6e5c9b9675aec948c971',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 2797,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 436,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 443},\n", " {'date': 20200319,\n", " 'state': 'NV',\n", " 'positive': 95,\n", " 'negative': 1626,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1721,\n", " 'hash': 'da6ac1f4d199460ae95beea250c2f3d70c668591',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 1721,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1458,\n", " 'positiveIncrease': 40,\n", " 'totalTestResultsIncrease': 1498},\n", " {'date': 20200319,\n", " 'state': 'NY',\n", " 'positive': 4152,\n", " 'negative': 18132,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 12,\n", " 'total': 22284,\n", " 'hash': '022e1e55f875ccf2a84cd794d4cbc08e7fccfd81',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 22284,\n", " 'fips': '36',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 5917,\n", " 'positiveIncrease': 1770,\n", " 'totalTestResultsIncrease': 7687},\n", " {'date': 20200319,\n", " 'state': 'OH',\n", " 'positive': 119,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 259,\n", " 'hash': 'e54d249c0e896290c9d8831c7061e82c9a1d3323',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 259,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 31,\n", " 'totalTestResultsIncrease': 31},\n", " {'date': 20200319,\n", " 'state': 'OK',\n", " 'positive': 44,\n", " 'negative': 466,\n", " 'pending': 250,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 760,\n", " 'hash': 'a87615828fd8eba6d8b4879024b1bcf040f4d3ab',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 510,\n", " 'fips': '40',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 88,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 103},\n", " {'date': 20200319,\n", " 'state': 'OR',\n", " 'positive': 88,\n", " 'negative': 1329,\n", " 'pending': 437,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 1854,\n", " 'hash': '1ed79d12b0f370759c1b7f919686615fffbd8256',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 1417,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 211,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 224},\n", " {'date': 20200319,\n", " 'state': 'PA',\n", " 'positive': 185,\n", " 'negative': 1608,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1793,\n", " 'hash': '252d00fc52d2811b4e5c73e034b3fa7929070469',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 1793,\n", " 'fips': '42',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 421,\n", " 'positiveIncrease': 52,\n", " 'totalTestResultsIncrease': 473},\n", " {'date': 20200319,\n", " 'state': 'PR',\n", " 'positive': 5,\n", " 'negative': 56,\n", " 'pending': 29,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 90,\n", " 'hash': '40f66e770905ac16e68798a1608deab6cd2c25ef',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 61,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 25,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 25},\n", " {'date': 20200319,\n", " 'state': 'RI',\n", " 'positive': 33,\n", " 'negative': 540,\n", " 'pending': 334,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 907,\n", " 'hash': 'f172e7d4d93dbfa628f5cf961e3e91d483cc9afc',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 573,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200319,\n", " 'state': 'SC',\n", " 'positive': 60,\n", " 'negative': 583,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 643,\n", " 'hash': '2d22cfe418014ffd2f016c1cacc7810a21b1bc4a',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 643,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200319,\n", " 'state': 'SD',\n", " 'positive': 11,\n", " 'negative': 551,\n", " 'pending': 385,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 947,\n", " 'hash': 'd436b987901d2d0152ab9ef53bd5e3e81718930b',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 562,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200319,\n", " 'state': 'TN',\n", " 'positive': 154,\n", " 'negative': 349,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 503,\n", " 'hash': 'e0fcb775be5a2187306dcd394ea15b97e40e467c',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 503,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 56,\n", " 'totalTestResultsIncrease': 56},\n", " {'date': 20200319,\n", " 'state': 'TX',\n", " 'positive': 143,\n", " 'negative': 2212,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 2355,\n", " 'hash': 'd2c552b1918e900d13a6af9f0463880e7a18194a',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 2355,\n", " 'fips': '48',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 388,\n", " 'positiveIncrease': 60,\n", " 'totalTestResultsIncrease': 448},\n", " {'date': 20200319,\n", " 'state': 'UT',\n", " 'positive': 78,\n", " 'negative': 1448,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1526,\n", " 'hash': 'bf5cda0a93ec05c50704230b475f526bb9631eee',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 1526,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1317,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 1332},\n", " {'date': 20200319,\n", " 'state': 'VA',\n", " 'positive': 94,\n", " 'negative': 1829,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 1923,\n", " 'hash': 'f288cdce3d37ab91633bbc3a8dfea37665c525ec',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 1923,\n", " 'fips': '51',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 628,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 645},\n", " {'date': 20200319,\n", " 'state': 'VI',\n", " 'positive': 3,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 3,\n", " 'hash': 'd520752bd28c318e64c5fdcb36647f0de27bed53',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 3,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200319,\n", " 'state': 'VT',\n", " 'positive': 22,\n", " 'negative': 645,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 667,\n", " 'hash': '50a3f08b58ff7f7a9606825d32cd3b0d9bebf43d',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 667,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 53,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 56},\n", " {'date': 20200319,\n", " 'state': 'WA',\n", " 'positive': 1187,\n", " 'negative': 15918,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 66,\n", " 'total': 17105,\n", " 'hash': 'cb1a44f4ac2604ec8589d9ec52ce726555f559a6',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 17105,\n", " 'fips': '53',\n", " 'deathIncrease': 14,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2801,\n", " 'positiveIncrease': 175,\n", " 'totalTestResultsIncrease': 2976},\n", " {'date': 20200319,\n", " 'state': 'WI',\n", " 'positive': 155,\n", " 'negative': 2192,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2347,\n", " 'hash': '2f7b134133880d30d41131a2fe36db2f435b1dec',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 2347,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 615,\n", " 'positiveIncrease': 49,\n", " 'totalTestResultsIncrease': 664},\n", " {'date': 20200319,\n", " 'state': 'WV',\n", " 'positive': 2,\n", " 'negative': 143,\n", " 'pending': 3,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 148,\n", " 'hash': 'c44ad824dab2b7fbe0ec04fefb3aedf3b30a15b2',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 145,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 21,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200319,\n", " 'state': 'WY',\n", " 'positive': 18,\n", " 'negative': 271,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 289,\n", " 'hash': '2d69a2846bd863df20b3b6198927368fa5906da7',\n", " 'dateChecked': '2020-03-19T20:00:00Z',\n", " 'totalTestResults': 289,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 93,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 96},\n", " {'date': 20200318,\n", " 'state': 'AK',\n", " 'positive': 6,\n", " 'negative': 406,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 412,\n", " 'hash': 'c8f3790629b8d3e886340b45d29ebb14df801867',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 412,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 72,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 75},\n", " {'date': 20200318,\n", " 'state': 'AL',\n", " 'positive': 46,\n", " 'negative': 28,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 74,\n", " 'hash': 'd469dc675d7d81209c1e3609ad840b27d6b8d6bb',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 74,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200318,\n", " 'state': 'AR',\n", " 'positive': 33,\n", " 'negative': 236,\n", " 'pending': 50,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 319,\n", " 'hash': '8064d40b14ba6de4d23f0a9916c8614329126789',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 269,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 39,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 50},\n", " {'date': 20200318,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '3cd9f2574ceb32c8069aed809ba08d80861cb8fb',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200318,\n", " 'state': 'AZ',\n", " 'positive': 28,\n", " 'negative': 148,\n", " 'pending': 102,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 278,\n", " 'hash': 'f982a79c9c85c35184cb9749cb44575e301b9774',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 176,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 14},\n", " {'date': 20200318,\n", " 'state': 'CA',\n", " 'positive': 611,\n", " 'negative': 7981,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 13,\n", " 'total': 8592,\n", " 'hash': 'e52e0d9c87a05669e5c155221ccbe5f5467b97f7',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 8592,\n", " 'fips': '06',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 128,\n", " 'totalTestResultsIncrease': 128},\n", " {'date': 20200318,\n", " 'state': 'CO',\n", " 'positive': 183,\n", " 'negative': 1617,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 1800,\n", " 'hash': 'c5b59204549fb6c0f20f59c3da11826b58837b5c',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1800,\n", " 'fips': '08',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 561,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 584},\n", " {'date': 20200318,\n", " 'state': 'CT',\n", " 'positive': 68,\n", " 'negative': 125,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 193,\n", " 'hash': 'e3f10a2adb5276a4b79a89acbc27088f24514702',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 193,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 27},\n", " {'date': 20200318,\n", " 'state': 'DC',\n", " 'positive': 31,\n", " 'negative': 138,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 170,\n", " 'hash': '8712a7f1e3e5112782d853636382e12f7f3832b4',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 169,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 34,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200318,\n", " 'state': 'DE',\n", " 'positive': 25,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 61,\n", " 'hash': '83a1c52d390f93bca188366464afa074700a0d1b',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 61,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200318,\n", " 'state': 'FL',\n", " 'positive': 314,\n", " 'negative': 1225,\n", " 'pending': 954,\n", " 'hospitalized': None,\n", " 'death': 7,\n", " 'total': 2493,\n", " 'hash': '8beb352e3670d0fc411fa81f0bacf9ea0fe3e965',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1539,\n", " 'fips': '12',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 285,\n", " 'positiveIncrease': 128,\n", " 'totalTestResultsIncrease': 413},\n", " {'date': 20200318,\n", " 'state': 'GA',\n", " 'positive': 197,\n", " 'negative': 1311,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1508,\n", " 'hash': '940427deefae77f83774ff8c2597b8b85b92552f',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1508,\n", " 'fips': '13',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1311,\n", " 'positiveIncrease': 51,\n", " 'totalTestResultsIncrease': 1362},\n", " {'date': 20200318,\n", " 'state': 'GU',\n", " 'positive': 8,\n", " 'negative': 57,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 65,\n", " 'hash': '3f2a1d7a6fe5f07d53c0070660fad175a3410165',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 65,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 16,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 19},\n", " {'date': 20200318,\n", " 'state': 'HI',\n", " 'positive': 14,\n", " 'negative': 93,\n", " 'pending': 12,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 119,\n", " 'hash': '0e7aa1cd1b352cc87c280e97302ae17acd9aa2d9',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 107,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 93,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 97},\n", " {'date': 20200318,\n", " 'state': 'IA',\n", " 'positive': 29,\n", " 'negative': 83,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 112,\n", " 'hash': '298b90dfe61bef518e04ff43659330452b4d8b53',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 112,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 6},\n", " {'date': 20200318,\n", " 'state': 'ID',\n", " 'positive': 9,\n", " 'negative': 459,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 468,\n", " 'hash': '4be77dc33087fed4b23425bb49ff054f1a78dc1a',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 468,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 113,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 115},\n", " {'date': 20200318,\n", " 'state': 'IL',\n", " 'positive': 288,\n", " 'negative': 1763,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 2051,\n", " 'hash': 'd7984b078a99962c9ddad6833dc829e5d721c996',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 2051,\n", " 'fips': '17',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 423,\n", " 'positiveIncrease': 128,\n", " 'totalTestResultsIncrease': 551},\n", " {'date': 20200318,\n", " 'state': 'IN',\n", " 'positive': 39,\n", " 'negative': 154,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 193,\n", " 'hash': 'eb9a2cc5eb64820b731a1bd1733c964d1fd5592c',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 193,\n", " 'fips': '18',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 25,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 34},\n", " {'date': 20200318,\n", " 'state': 'KS',\n", " 'positive': 16,\n", " 'negative': 417,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 433,\n", " 'hash': 'fdddba1240202e276efbbd65199f953aa7f67c36',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 433,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 35,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200318,\n", " 'state': 'KY',\n", " 'positive': 26,\n", " 'negative': 354,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 380,\n", " 'hash': 'd917009b6f6ce782fee889e9fbd416bcddfed388',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 380,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 59,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 63},\n", " {'date': 20200318,\n", " 'state': 'LA',\n", " 'positive': 240,\n", " 'negative': 335,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 6,\n", " 'total': 575,\n", " 'hash': 'c13f2240d04ce131fec16eb6c8eb4c9957d8afc4',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 575,\n", " 'fips': '22',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 49,\n", " 'positiveIncrease': 69,\n", " 'totalTestResultsIncrease': 118},\n", " {'date': 20200318,\n", " 'state': 'MA',\n", " 'positive': 256,\n", " 'negative': 2015,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2271,\n", " 'hash': '4ccadeb25504fc499760a9f57799b70d9064f54e',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 2271,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 474,\n", " 'positiveIncrease': 38,\n", " 'totalTestResultsIncrease': 512},\n", " {'date': 20200318,\n", " 'state': 'MD',\n", " 'positive': 85,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 179,\n", " 'hash': 'ed126e60a2fdd2d50c4aee72c43746ec4d32f50a',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 179,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 28,\n", " 'totalTestResultsIncrease': 28},\n", " {'date': 20200318,\n", " 'state': 'ME',\n", " 'positive': 43,\n", " 'negative': 1670,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1713,\n", " 'hash': '520b7d952c74ce41b62e137a795f1c5fd7b6ea51',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1713,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 367,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 378},\n", " {'date': 20200318,\n", " 'state': 'MI',\n", " 'positive': 80,\n", " 'negative': 272,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 352,\n", " 'hash': 'de2dac9e4a00f5ba68b89b0d9b5755866002d677',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 352,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 15},\n", " {'date': 20200318,\n", " 'state': 'MN',\n", " 'positive': 77,\n", " 'negative': 2685,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2762,\n", " 'hash': '1793eee37dae19bcc74f11def5b1228e623a8cb4',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 2762,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 409,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 426},\n", " {'date': 20200318,\n", " 'state': 'MO',\n", " 'positive': 13,\n", " 'negative': 253,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 266,\n", " 'hash': '6867950241ecad89261827bd9740ee80518bcbbe',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 266,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 46,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 51},\n", " {'date': 20200318,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 0,\n", " 'hash': '3007ce14561c6c7c3ec61c77a1c5e35b19e28caa',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200318,\n", " 'state': 'MS',\n", " 'positive': 34,\n", " 'negative': 479,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 513,\n", " 'hash': '63a2cc9d316d493d8d24091e14526c6bb794f05d',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 513,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 111,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 124},\n", " {'date': 20200318,\n", " 'state': 'MT',\n", " 'positive': 10,\n", " 'negative': 499,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 509,\n", " 'hash': '51f18584af6fd804fe3f002529a3c5240ca383c4',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 509,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 196,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 198},\n", " {'date': 20200318,\n", " 'state': 'NC',\n", " 'positive': 63,\n", " 'negative': 1787,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 1850,\n", " 'hash': '9a1b431ef96316bef7e6a88a63665d6609b49cba',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1850,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1313,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 1336},\n", " {'date': 20200318,\n", " 'state': 'ND',\n", " 'positive': 6,\n", " 'negative': 268,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 274,\n", " 'hash': '8f46cb61a733da517eb1ee979d4aaabc20e71e83',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 274,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 48,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 51},\n", " {'date': 20200318,\n", " 'state': 'NE',\n", " 'positive': 24,\n", " 'negative': 206,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 230,\n", " 'hash': '21fffb70a9d5ac968342ca0d5f7c652bdf242c42',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 230,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200318,\n", " 'state': 'NH',\n", " 'positive': 26,\n", " 'negative': 513,\n", " 'pending': 208,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 747,\n", " 'hash': 'f377c542fe166d619d7d3c1617d366b910865c91',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 539,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 158,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 167},\n", " {'date': 20200318,\n", " 'state': 'NJ',\n", " 'positive': 427,\n", " 'negative': 190,\n", " 'pending': 21,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 638,\n", " 'hash': '1d6570fedcdce4e3a896dea3ffe6bb960a697892',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 617,\n", " 'fips': '34',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 160,\n", " 'totalTestResultsIncrease': 187},\n", " {'date': 20200318,\n", " 'state': 'NM',\n", " 'positive': 28,\n", " 'negative': 2326,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2354,\n", " 'hash': 'e725fc421287afb1dab41078592eb821aacc56fb',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 2354,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1077,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 1082},\n", " {'date': 20200318,\n", " 'state': 'NV',\n", " 'positive': 55,\n", " 'negative': 168,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 223,\n", " 'hash': '770835361291a61a845dda67e7b6a71cc6307ab8',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 223,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200318,\n", " 'state': 'NY',\n", " 'positive': 2382,\n", " 'negative': 12215,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 12,\n", " 'total': 14597,\n", " 'hash': '275e6aa59b673852e1a412be69bad97766cf4192',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 14597,\n", " 'fips': '36',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6709,\n", " 'positiveIncrease': 682,\n", " 'totalTestResultsIncrease': 7391},\n", " {'date': 20200318,\n", " 'state': 'OH',\n", " 'positive': 88,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 228,\n", " 'hash': 'a37daf8d4acc2f45a8fe475d18a605fa0f7bd3db',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 228,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 21},\n", " {'date': 20200318,\n", " 'state': 'OK',\n", " 'positive': 29,\n", " 'negative': 378,\n", " 'pending': 110,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 517,\n", " 'hash': '7ba74ce56f2c51f241677bb79b943b186341424b',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 407,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 131,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 143},\n", " {'date': 20200318,\n", " 'state': 'OR',\n", " 'positive': 75,\n", " 'negative': 1118,\n", " 'pending': 361,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 1554,\n", " 'hash': '1472c525ed927c48f4c4e80a5f0e852637a4c176',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1193,\n", " 'fips': '41',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 429,\n", " 'positiveIncrease': 28,\n", " 'totalTestResultsIncrease': 457},\n", " {'date': 20200318,\n", " 'state': 'PA',\n", " 'positive': 133,\n", " 'negative': 1187,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1320,\n", " 'hash': '0ccc5702f7d295b4fb8d2480a4c68ccc0b83b70b',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1320,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 308,\n", " 'positiveIncrease': 37,\n", " 'totalTestResultsIncrease': 345},\n", " {'date': 20200318,\n", " 'state': 'PR',\n", " 'positive': 5,\n", " 'negative': 31,\n", " 'pending': 21,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 57,\n", " 'hash': '3ad1eedcae7421afceecea4acedb4afdec4d83ed',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 36,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 18,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200318,\n", " 'state': 'RI',\n", " 'positive': 33,\n", " 'negative': 540,\n", " 'pending': 334,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 907,\n", " 'hash': 'b77ce7080e76679c9474a1fddbfb35c06dd181ec',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 573,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 232,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 244},\n", " {'date': 20200318,\n", " 'state': 'SC',\n", " 'positive': 60,\n", " 'negative': 583,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 643,\n", " 'hash': 'd4d75e5d0c6c436edfe45e2051b3d61379e1e609',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 643,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 272,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 299},\n", " {'date': 20200318,\n", " 'state': 'SD',\n", " 'positive': 11,\n", " 'negative': 551,\n", " 'pending': 350,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 912,\n", " 'hash': '9f055d1ffffaa46fe815cf00c2212ee394e19128',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 562,\n", " 'fips': '46',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200318,\n", " 'state': 'TN',\n", " 'positive': 98,\n", " 'negative': 349,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 447,\n", " 'hash': 'e9de93dfeb7615468c45fd35ad529a657f5af253',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 447,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 19,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 44},\n", " {'date': 20200318,\n", " 'state': 'TX',\n", " 'positive': 83,\n", " 'negative': 1824,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 1907,\n", " 'hash': '9d0ecdc7fb194232889793bea4d5913f17ee3e22',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1907,\n", " 'fips': '48',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 620,\n", " 'positiveIncrease': 19,\n", " 'totalTestResultsIncrease': 639},\n", " {'date': 20200318,\n", " 'state': 'UT',\n", " 'positive': 63,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 194,\n", " 'hash': 'd61bd36e13be7170cf52a4e29bf5f33b7782a3d9',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 194,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200318,\n", " 'state': 'VA',\n", " 'positive': 77,\n", " 'negative': 1201,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1278,\n", " 'hash': 'f7f549224e7a7f22ac864e645a46b0be65b566a2',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1278,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 240,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 250},\n", " {'date': 20200318,\n", " 'state': 'VI',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 2,\n", " 'hash': 'b318c7daed9e9b6919d9a1a76f6d6ecd02ccc14d',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200318,\n", " 'state': 'VT',\n", " 'positive': 19,\n", " 'negative': 592,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 611,\n", " 'hash': '45f19aabb19eb1d27ef65e0f5217604441a6f271',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 611,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 97,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 106},\n", " {'date': 20200318,\n", " 'state': 'WA',\n", " 'positive': 1012,\n", " 'negative': 13117,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 52,\n", " 'total': 14129,\n", " 'hash': 'cace6bfb846ddab079320ad781f2d56b1fb80b30',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 14129,\n", " 'fips': '53',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1535,\n", " 'positiveIncrease': 108,\n", " 'totalTestResultsIncrease': 1643},\n", " {'date': 20200318,\n", " 'state': 'WI',\n", " 'positive': 106,\n", " 'negative': 1577,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1683,\n", " 'hash': 'fb5c4e2361caf6fd0ec4f2db9a05f04dadfca1b2',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 1683,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 539,\n", " 'positiveIncrease': 34,\n", " 'totalTestResultsIncrease': 573},\n", " {'date': 20200318,\n", " 'state': 'WV',\n", " 'positive': 1,\n", " 'negative': 122,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 137,\n", " 'hash': 'd412b08830ad835ef55dd720438cc87261a7712a',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 123,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 42,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200318,\n", " 'state': 'WY',\n", " 'positive': 15,\n", " 'negative': 178,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 193,\n", " 'hash': 'bf5aa4a3cbd5688b6dcee12d1e335541c10433ea',\n", " 'dateChecked': '2020-03-18T20:00:00Z',\n", " 'totalTestResults': 193,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 83,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 88},\n", " {'date': 20200317,\n", " 'state': 'AK',\n", " 'positive': 3,\n", " 'negative': 334,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 337,\n", " 'hash': '23882017a968e8d08f795cd3a0d1e959cfbf695a',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 337,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 191,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 193},\n", " {'date': 20200317,\n", " 'state': 'AL',\n", " 'positive': 36,\n", " 'negative': 28,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 64,\n", " 'hash': '812c28536069d40d80d19f007b3689bdc9bac21a',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 64,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 8},\n", " {'date': 20200317,\n", " 'state': 'AR',\n", " 'positive': 22,\n", " 'negative': 197,\n", " 'pending': 41,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 260,\n", " 'hash': '3264ae21db9366d4300fd95c93a16a9968aac62a',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 219,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 65,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 65},\n", " {'date': 20200317,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 0,\n", " 'hash': '2a0dfbde09639fcc74695264bdca6eb2339ec7e3',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200317,\n", " 'state': 'AZ',\n", " 'positive': 20,\n", " 'negative': 142,\n", " 'pending': 66,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 228,\n", " 'hash': '27b4cfc2626ed0988538b8c766ff876ebc231d35',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 162,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 17,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 19},\n", " {'date': 20200317,\n", " 'state': 'CA',\n", " 'positive': 483,\n", " 'negative': 7981,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 11,\n", " 'total': 8464,\n", " 'hash': '7b9ce4294bc0463aced97179aae384fa423815bf',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 8464,\n", " 'fips': '06',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 148,\n", " 'totalTestResultsIncrease': 148},\n", " {'date': 20200317,\n", " 'state': 'CO',\n", " 'positive': 160,\n", " 'negative': 1056,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1216,\n", " 'hash': '186ec3bd0efc883220f6af25ac0dc51e4e0896c1',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1216,\n", " 'fips': '08',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 429,\n", " 'positiveIncrease': 29,\n", " 'totalTestResultsIncrease': 458},\n", " {'date': 20200317,\n", " 'state': 'CT',\n", " 'positive': 41,\n", " 'negative': 125,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 166,\n", " 'hash': '92d3801c1c66c7124b655fe343669c4792e6a224',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 166,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 15},\n", " {'date': 20200317,\n", " 'state': 'DC',\n", " 'positive': 22,\n", " 'negative': 104,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 126,\n", " 'hash': '91ba8d3951759f2fa680e1de03aa7ad5ecc67246',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 126,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 8,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 13},\n", " {'date': 20200317,\n", " 'state': 'DE',\n", " 'positive': 16,\n", " 'negative': 36,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 52,\n", " 'hash': '99b8eee4265a14629cb60eff3070607cc6834ef1',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 52,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 8},\n", " {'date': 20200317,\n", " 'state': 'FL',\n", " 'positive': 186,\n", " 'negative': 940,\n", " 'pending': 872,\n", " 'hospitalized': None,\n", " 'death': 6,\n", " 'total': 1998,\n", " 'hash': '51507783fb4443596a37f6f271e3b65414bd13dc',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1126,\n", " 'fips': '12',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 256,\n", " 'positiveIncrease': 45,\n", " 'totalTestResultsIncrease': 301},\n", " {'date': 20200317,\n", " 'state': 'GA',\n", " 'positive': 146,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 146,\n", " 'hash': 'bba1bba505383e3ee201f8d32ee6288aee8bc227',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 146,\n", " 'fips': '13',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 25},\n", " {'date': 20200317,\n", " 'state': 'GU',\n", " 'positive': 5,\n", " 'negative': 41,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 46,\n", " 'hash': 'de7736e788c5913457e07ddcd32c3fbd5b71557a',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 46,\n", " 'fips': '66',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 18,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 20},\n", " {'date': 20200317,\n", " 'state': 'HI',\n", " 'positive': 10,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 10,\n", " 'hash': 'bfdeb84c29710b0dd47433bc8463d7b780676582',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 10,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200317,\n", " 'state': 'IA',\n", " 'positive': 23,\n", " 'negative': 83,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 106,\n", " 'hash': '39f5af2abdaa0c0627c5ba9690f4fed97a47d2c3',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 106,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200317,\n", " 'state': 'ID',\n", " 'positive': 7,\n", " 'negative': 346,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 353,\n", " 'hash': '971ddf42dd331cc0e834dc15e8f84492b5ea71ad',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 353,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 81,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 83},\n", " {'date': 20200317,\n", " 'state': 'IL',\n", " 'positive': 160,\n", " 'negative': 1340,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1500,\n", " 'hash': '0043fbb17c8cdc564610f24b79e623b514351e1a',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1500,\n", " 'fips': '17',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 408,\n", " 'positiveIncrease': 67,\n", " 'totalTestResultsIncrease': 475},\n", " {'date': 20200317,\n", " 'state': 'IN',\n", " 'positive': 30,\n", " 'negative': 129,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 159,\n", " 'hash': '6f432986a81250e06b291ba310a1588bcf779fe9',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 159,\n", " 'fips': '18',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 14,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 20},\n", " {'date': 20200317,\n", " 'state': 'KS',\n", " 'positive': 15,\n", " 'negative': 382,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 397,\n", " 'hash': '80441f95e6ee6ca22ac3fb7d5dbd551f457e6b6e',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 397,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 216,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 220},\n", " {'date': 20200317,\n", " 'state': 'KY',\n", " 'positive': 22,\n", " 'negative': 295,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 317,\n", " 'hash': '930dae48a8e509fb6aeb7784849fd54836045508',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 317,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 61,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 62},\n", " {'date': 20200317,\n", " 'state': 'LA',\n", " 'positive': 171,\n", " 'negative': 286,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 457,\n", " 'hash': '58b023fdef69078ad884437b1d1ed86846abbb32',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 457,\n", " 'fips': '22',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 98,\n", " 'positiveIncrease': 57,\n", " 'totalTestResultsIncrease': 155},\n", " {'date': 20200317,\n", " 'state': 'MA',\n", " 'positive': 218,\n", " 'negative': 1541,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1759,\n", " 'hash': '8aab5f8fbfb081a50f8d4929fa938f332d757be7',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1759,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1189,\n", " 'positiveIncrease': 54,\n", " 'totalTestResultsIncrease': 1243},\n", " {'date': 20200317,\n", " 'state': 'MD',\n", " 'positive': 57,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 151,\n", " 'hash': '73be426549114a94026258b906eb649cb0a4b156',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 151,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 20},\n", " {'date': 20200317,\n", " 'state': 'ME',\n", " 'positive': 32,\n", " 'negative': 1303,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1335,\n", " 'hash': '462beae61398a60f8622318ba53cd6d259cf6425',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1335,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 539,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 554},\n", " {'date': 20200317,\n", " 'state': 'MI',\n", " 'positive': 65,\n", " 'negative': 272,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 337,\n", " 'hash': '33cdfd233c501e4994157facc96268373a8146b7',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 337,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200317,\n", " 'state': 'MN',\n", " 'positive': 60,\n", " 'negative': 2276,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2336,\n", " 'hash': '8b9327f2911f90ed7e31fd730d4dd21a47365f67',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 2336,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 437,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 443},\n", " {'date': 20200317,\n", " 'state': 'MO',\n", " 'positive': 8,\n", " 'negative': 207,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 215,\n", " 'hash': 'd976ef7582acb31638cf4c7e832fea4a028f3528',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 215,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 43,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 45},\n", " {'date': 20200317,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 0,\n", " 'hash': '1ce5b3acc25b9f59f345f53cf9290a8453f745f1',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200317,\n", " 'state': 'MS',\n", " 'positive': 21,\n", " 'negative': 368,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 389,\n", " 'hash': 'c0c136bb0d2b886338bfe9fd2a5f9a8f6a87d31d',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 389,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 91,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 100},\n", " {'date': 20200317,\n", " 'state': 'MT',\n", " 'positive': 8,\n", " 'negative': 303,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 311,\n", " 'hash': '55a63d830ab9cbbb253c745fd66d0bf43cbf6e91',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 311,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 105,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 106},\n", " {'date': 20200317,\n", " 'state': 'NC',\n", " 'positive': 40,\n", " 'negative': 474,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 514,\n", " 'hash': '8806e83332bb7dc1c68613457de13e5e40e133c6',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 514,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 178,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 185},\n", " {'date': 20200317,\n", " 'state': 'ND',\n", " 'positive': 3,\n", " 'negative': 220,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 223,\n", " 'hash': '3d27622f0388a5ecabed2d9377f3931f546ebf60',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 223,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 97,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 99},\n", " {'date': 20200317,\n", " 'state': 'NE',\n", " 'positive': 21,\n", " 'negative': 206,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 227,\n", " 'hash': '3aa6e9d166fe970c359d519db34aee00b71a079c',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 227,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 36,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 39},\n", " {'date': 20200317,\n", " 'state': 'NH',\n", " 'positive': 17,\n", " 'negative': 355,\n", " 'pending': 195,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 567,\n", " 'hash': '2452d6d4d5ca7cf2148a76a955548d2b4a1135d0',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 372,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 84,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 88},\n", " {'date': 20200317,\n", " 'state': 'NJ',\n", " 'positive': 267,\n", " 'negative': 163,\n", " 'pending': 55,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 485,\n", " 'hash': 'cf3cd5b3b730589fbd3732d947843107ec844efe',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 430,\n", " 'fips': '34',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 43,\n", " 'positiveIncrease': 89,\n", " 'totalTestResultsIncrease': 132},\n", " {'date': 20200317,\n", " 'state': 'NM',\n", " 'positive': 23,\n", " 'negative': 1249,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1272,\n", " 'hash': '1734d4cf020c1bb66084d6c2dcbff28f3318dc41',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1272,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 683,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 689},\n", " {'date': 20200317,\n", " 'state': 'NV',\n", " 'positive': 55,\n", " 'negative': 168,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 223,\n", " 'hash': '3b3d8a21706e8550bb03333d575e4bc1fcc1d2c2',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 223,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 10,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200317,\n", " 'state': 'NY',\n", " 'positive': 1700,\n", " 'negative': 5506,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 7,\n", " 'total': 7206,\n", " 'hash': '4e9377ca9296d918cf5e2668264cc0db6bf1c3a8',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 7206,\n", " 'fips': '36',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 963,\n", " 'positiveIncrease': 750,\n", " 'totalTestResultsIncrease': 1713},\n", " {'date': 20200317,\n", " 'state': 'OH',\n", " 'positive': 67,\n", " 'negative': 140,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 207,\n", " 'hash': 'ecf13002684a253f76b8541150ce9f182954be8d',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 207,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 17},\n", " {'date': 20200317,\n", " 'state': 'OK',\n", " 'positive': 17,\n", " 'negative': 247,\n", " 'pending': 82,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 346,\n", " 'hash': '1a24d83d6c282ac820a03851d48a7cdb2b20906f',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 264,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 73,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 80},\n", " {'date': 20200317,\n", " 'state': 'OR',\n", " 'positive': 47,\n", " 'negative': 689,\n", " 'pending': 184,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 920,\n", " 'hash': '4111bb9583eb2bb17ce7dce5fb2f8bceadb842f7',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 736,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 110,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 118},\n", " {'date': 20200317,\n", " 'state': 'PA',\n", " 'positive': 96,\n", " 'negative': 879,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 975,\n", " 'hash': 'c0a4a49e06a61cdd9632934f85561a637c7f9e15',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 975,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 209,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 229},\n", " {'date': 20200317,\n", " 'state': 'PR',\n", " 'positive': 5,\n", " 'negative': 13,\n", " 'pending': 4,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 22,\n", " 'hash': 'b4f27eae19649ab4a01ad7fbfc6c824f113a39b3',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 18,\n", " 'fips': '72',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 4,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 4},\n", " {'date': 20200317,\n", " 'state': 'RI',\n", " 'positive': 21,\n", " 'negative': 308,\n", " 'pending': 149,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 478,\n", " 'hash': '86d94c4500ec929f91993005eca5fb6e1711806f',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 329,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200317,\n", " 'state': 'SC',\n", " 'positive': 33,\n", " 'negative': 311,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 344,\n", " 'hash': '753749e969fc4fb653b077ba7ab6ddad80bead57',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 344,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 76,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 81},\n", " {'date': 20200317,\n", " 'state': 'SD',\n", " 'positive': 11,\n", " 'negative': 551,\n", " 'pending': 35,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 597,\n", " 'hash': '13a574874018260185211f07b2b350f86c57d2fd',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 562,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 57,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 58},\n", " {'date': 20200317,\n", " 'state': 'TN',\n", " 'positive': 73,\n", " 'negative': 330,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 403,\n", " 'hash': 'bff9d83c4fa555735da997c05707ad9362808619',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 403,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 60,\n", " 'positiveIncrease': 21,\n", " 'totalTestResultsIncrease': 81},\n", " {'date': 20200317,\n", " 'state': 'TX',\n", " 'positive': 64,\n", " 'negative': 1204,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1268,\n", " 'hash': '63176dcead55cc3361e4649c40b82911ffebab8e',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1268,\n", " 'fips': '48',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1204,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 1211},\n", " {'date': 20200317,\n", " 'state': 'UT',\n", " 'positive': 51,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 182,\n", " 'hash': 'a9c8ba641b350a8ad24d0599ed245eab1ccf3d17',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 182,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200317,\n", " 'state': 'VA',\n", " 'positive': 67,\n", " 'negative': 961,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 1028,\n", " 'hash': '31e385f4d09ec5ebd40eee52aa598cf2ba817c2f',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1028,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 523,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 539},\n", " {'date': 20200317,\n", " 'state': 'VI',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': '66f4c083dcf84f549164c99ba8378d4ec082ed2b',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '78',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200317,\n", " 'state': 'VT',\n", " 'positive': 10,\n", " 'negative': 495,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 505,\n", " 'hash': '546ce9469dfc57bec7abfb0fd76c70839e9133f3',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 505,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 74,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 76},\n", " {'date': 20200317,\n", " 'state': 'WA',\n", " 'positive': 904,\n", " 'negative': 11582,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 48,\n", " 'total': 12486,\n", " 'hash': 'cad5ba5e6e2f9625e5b035a5c4db63deb9b9103b',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 12486,\n", " 'fips': '53',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2131,\n", " 'positiveIncrease': 135,\n", " 'totalTestResultsIncrease': 2266},\n", " {'date': 20200317,\n", " 'state': 'WI',\n", " 'positive': 72,\n", " 'negative': 1038,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1110,\n", " 'hash': '8c74c4ade8ee9442ae82fb53a97761fb8c2ea8a1',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 1110,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 534,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 559},\n", " {'date': 20200317,\n", " 'state': 'WV',\n", " 'positive': 0,\n", " 'negative': 80,\n", " 'pending': 4,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 84,\n", " 'hash': '811acf667df0a623b3cff7dc0008118371123414',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 80,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200317,\n", " 'state': 'WY',\n", " 'positive': 10,\n", " 'negative': 95,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 105,\n", " 'hash': 'ea1c73cd0605d034cb96ce6a32285c26ab747d8b',\n", " 'dateChecked': '2020-03-17T20:00:00Z',\n", " 'totalTestResults': 105,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 95,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 102},\n", " {'date': 20200316,\n", " 'state': 'AK',\n", " 'positive': 1,\n", " 'negative': 143,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 144,\n", " 'hash': 'd52973d451353d5362320aedde3529273a738a9d',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 144,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200316,\n", " 'state': 'AL',\n", " 'positive': 28,\n", " 'negative': 28,\n", " 'pending': 40,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 96,\n", " 'hash': '6b4c9a267c1d8ad0910f88c4808c0ae23eed708d',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 56,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200316,\n", " 'state': 'AR',\n", " 'positive': 22,\n", " 'negative': 132,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 168,\n", " 'hash': '5a498750dc6968b3ef783dd519923c0afefc993b',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 154,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 29,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 35},\n", " {'date': 20200316,\n", " 'state': 'AS',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 0,\n", " 'hash': '6541b37369a9ada202ee576167303b6d17b59485',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '60',\n", " 'deathIncrease': None,\n", " 'hospitalizedIncrease': None,\n", " 'negativeIncrease': None,\n", " 'positiveIncrease': None,\n", " 'totalTestResultsIncrease': None},\n", " {'date': 20200316,\n", " 'state': 'AZ',\n", " 'positive': 18,\n", " 'negative': 125,\n", " 'pending': 63,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 206,\n", " 'hash': '69c54c93ec41a61fbb1dc004fc90c7ed149712ab',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 143,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 4,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200316,\n", " 'state': 'CA',\n", " 'positive': 335,\n", " 'negative': 7981,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 6,\n", " 'total': 8316,\n", " 'hash': 'e609ded64973f3386686b69eefad34b3fa4c2f2d',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 8316,\n", " 'fips': '06',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7065,\n", " 'positiveIncrease': 42,\n", " 'totalTestResultsIncrease': 7107},\n", " {'date': 20200316,\n", " 'state': 'CO',\n", " 'positive': 131,\n", " 'negative': 627,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 758,\n", " 'hash': 'df0ad799f22084b90dafc9240759c4edc2a25a31',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 758,\n", " 'fips': '08',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200316,\n", " 'state': 'CT',\n", " 'positive': 26,\n", " 'negative': 125,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 151,\n", " 'hash': '19fbdc9d6bdda65d947521b52ad346fbb3ed1054',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 151,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 6},\n", " {'date': 20200316,\n", " 'state': 'DC',\n", " 'positive': 17,\n", " 'negative': 96,\n", " 'pending': 7,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 120,\n", " 'hash': '7304fddd4bb0a52bb24c8fb2fc53a7e4c7856739',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 113,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 17,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200316,\n", " 'state': 'DE',\n", " 'positive': 8,\n", " 'negative': 36,\n", " 'pending': 32,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 76,\n", " 'hash': '582d340a06ebc92bd78ddcf331aa864a3cc70d82',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 44,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200316,\n", " 'state': 'FL',\n", " 'positive': 141,\n", " 'negative': 684,\n", " 'pending': 514,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 1339,\n", " 'hash': 'a1a3f10169b5e70187979f5e145feb8117bcbfb5',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 825,\n", " 'fips': '12',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6,\n", " 'positiveIncrease': 25,\n", " 'totalTestResultsIncrease': 31},\n", " {'date': 20200316,\n", " 'state': 'GA',\n", " 'positive': 121,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 121,\n", " 'hash': 'e50fd4e70612b0b8653e0d55dc1e77921c7042c6',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 121,\n", " 'fips': '13',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200316,\n", " 'state': 'GU',\n", " 'positive': 3,\n", " 'negative': 23,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 26,\n", " 'hash': 'c8db9c3d15f04b79fc6a5bd8b132b0e678335926',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 26,\n", " 'fips': '66',\n", " 'deathIncrease': None,\n", " 'hospitalizedIncrease': None,\n", " 'negativeIncrease': None,\n", " 'positiveIncrease': None,\n", " 'totalTestResultsIncrease': None},\n", " {'date': 20200316,\n", " 'state': 'HI',\n", " 'positive': 7,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 7,\n", " 'hash': '370bddbfc3ad04ce31f2d2f5ae09802708d0b3c7',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 7,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200316,\n", " 'state': 'IA',\n", " 'positive': 22,\n", " 'negative': 83,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 105,\n", " 'hash': '2034420a3a6ade9c2331a954c8d82de3ffcab7f2',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 105,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 4},\n", " {'date': 20200316,\n", " 'state': 'ID',\n", " 'positive': 5,\n", " 'negative': 265,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 270,\n", " 'hash': '867239c73f7477ce1d99beac560c240f68d46b99',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 270,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 91,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 91},\n", " {'date': 20200316,\n", " 'state': 'IL',\n", " 'positive': 93,\n", " 'negative': 932,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1025,\n", " 'hash': 'f720ab72afa2f154c8208924223d29c54d91fcbc',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 1025,\n", " 'fips': '17',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 483,\n", " 'positiveIncrease': 29,\n", " 'totalTestResultsIncrease': 512},\n", " {'date': 20200316,\n", " 'state': 'IN',\n", " 'positive': 24,\n", " 'negative': 115,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 139,\n", " 'hash': '14cdb9f52795b9dd46526d13c5068b1df437a573',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 139,\n", " 'fips': '18',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 13,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200316,\n", " 'state': 'KS',\n", " 'positive': 11,\n", " 'negative': 166,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 177,\n", " 'hash': '2a37de8229906650004605d6eb96ee6a319e4b6a',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 177,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 31,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 34},\n", " {'date': 20200316,\n", " 'state': 'KY',\n", " 'positive': 21,\n", " 'negative': 234,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 255,\n", " 'hash': 'b7c6e3a8232290a18cb17fa6d3137687415eced5',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 255,\n", " 'fips': '21',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 95,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 100},\n", " {'date': 20200316,\n", " 'state': 'LA',\n", " 'positive': 114,\n", " 'negative': 188,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 302,\n", " 'hash': 'db54f1e48ff57b15a662e7fa0530c9aaa62df089',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 302,\n", " 'fips': '22',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 32,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 55},\n", " {'date': 20200316,\n", " 'state': 'MA',\n", " 'positive': 164,\n", " 'negative': 352,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 516,\n", " 'hash': '9ee162156f3108020c00af92b68c9df379704cb5',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 516,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 26,\n", " 'totalTestResultsIncrease': 26},\n", " {'date': 20200316,\n", " 'state': 'MD',\n", " 'positive': 37,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 131,\n", " 'hash': 'a14a3645e8ed9120951f88d39b4573620579cd04',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 131,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 6},\n", " {'date': 20200316,\n", " 'state': 'ME',\n", " 'positive': 17,\n", " 'negative': 764,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 781,\n", " 'hash': '972a9ce307d416b2cb10c2813205872f1bdd0deb',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 781,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 673,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 687},\n", " {'date': 20200316,\n", " 'state': 'MI',\n", " 'positive': 53,\n", " 'negative': 272,\n", " 'pending': 30,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 355,\n", " 'hash': '37a145683be1fcffaabed8d25f80fef94615f866',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 325,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 67,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 87},\n", " {'date': 20200316,\n", " 'state': 'MN',\n", " 'positive': 54,\n", " 'negative': 1839,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1893,\n", " 'hash': 'bda0085e291b5f1f472428dbb92dddc82637be02',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 1893,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 452,\n", " 'positiveIncrease': 19,\n", " 'totalTestResultsIncrease': 471},\n", " {'date': 20200316,\n", " 'state': 'MO',\n", " 'positive': 6,\n", " 'negative': 164,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 170,\n", " 'hash': '9ef80985ef15b150832e287f29c460490e8636ba',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 170,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 42,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200316,\n", " 'state': 'MP',\n", " 'positive': 0,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 0,\n", " 'hash': 'c18776aef4b2b38a53ac4a35d62a527bca6ee038',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 0,\n", " 'fips': '69',\n", " 'deathIncrease': None,\n", " 'hospitalizedIncrease': None,\n", " 'negativeIncrease': None,\n", " 'positiveIncrease': None,\n", " 'totalTestResultsIncrease': None},\n", " {'date': 20200316,\n", " 'state': 'MS',\n", " 'positive': 12,\n", " 'negative': 277,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 289,\n", " 'hash': 'de0d18d6d00a3e7bda7a81ea3307bbde4424a792',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 289,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 193,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 195},\n", " {'date': 20200316,\n", " 'state': 'MT',\n", " 'positive': 7,\n", " 'negative': 198,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 205,\n", " 'hash': 'cfc9e03cbd31fe3c15ceccd86ac3873cbbcfc098',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 205,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 95,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 95},\n", " {'date': 20200316,\n", " 'state': 'NC',\n", " 'positive': 33,\n", " 'negative': 296,\n", " 'pending': 151,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 480,\n", " 'hash': '6403abc99107bbb745947970f52d9a3addfb9827',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 329,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 69,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 70},\n", " {'date': 20200316,\n", " 'state': 'ND',\n", " 'positive': 1,\n", " 'negative': 123,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 124,\n", " 'hash': '5c5f30d943aa69973a941e3b9e5b236387f7131c',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 124,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 28,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 28},\n", " {'date': 20200316,\n", " 'state': 'NE',\n", " 'positive': 18,\n", " 'negative': 170,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 188,\n", " 'hash': '75148315ad74b137311744dc4ec9164e2767f1d2',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 188,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 90,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 91},\n", " {'date': 20200316,\n", " 'state': 'NH',\n", " 'positive': 13,\n", " 'negative': 271,\n", " 'pending': 95,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 379,\n", " 'hash': 'f4e109d61f42254721dbd86b4d5095331c35f60e',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 284,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200316,\n", " 'state': 'NJ',\n", " 'positive': 178,\n", " 'negative': 120,\n", " 'pending': 20,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 318,\n", " 'hash': '547266d7f32a4fef36e70f0940bf564ca16005a0',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 298,\n", " 'fips': '34',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 80,\n", " 'totalTestResultsIncrease': 80},\n", " {'date': 20200316,\n", " 'state': 'NM',\n", " 'positive': 17,\n", " 'negative': 566,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 583,\n", " 'hash': '7d3f15a21efee8ea2c09445b46baaa3b9f95baf3',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 583,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 84,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 88},\n", " {'date': 20200316,\n", " 'state': 'NV',\n", " 'positive': 45,\n", " 'negative': 168,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 213,\n", " 'hash': '73041d5d1e80a43d9d390aac609d139cc7283994',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 213,\n", " 'fips': '32',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 24},\n", " {'date': 20200316,\n", " 'state': 'NY',\n", " 'positive': 950,\n", " 'negative': 4543,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 7,\n", " 'total': 5493,\n", " 'hash': 'cf4882131fb8c7b0169064e5cf608ac3244386f3',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 5493,\n", " 'fips': '36',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 221,\n", " 'totalTestResultsIncrease': 221},\n", " {'date': 20200316,\n", " 'state': 'OH',\n", " 'positive': 50,\n", " 'negative': 140,\n", " 'pending': 361,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 551,\n", " 'hash': 'd52d938efd1fde61a7bb8133c3ddcb6b02525851',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 190,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 15},\n", " {'date': 20200316,\n", " 'state': 'OK',\n", " 'positive': 10,\n", " 'negative': 174,\n", " 'pending': 29,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 213,\n", " 'hash': '4048a32d51a55fd66388b5e2e915108f3676202b',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 184,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 56,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 57},\n", " {'date': 20200316,\n", " 'state': 'OR',\n", " 'positive': 39,\n", " 'negative': 579,\n", " 'pending': 182,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 800,\n", " 'hash': '7101bd73014de75d4e9fd64f3541ad927cb87710',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 618,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 159,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 162},\n", " {'date': 20200316,\n", " 'state': 'PA',\n", " 'positive': 76,\n", " 'negative': 670,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 746,\n", " 'hash': 'b57341020f0566aa848aec581f2cb9e11ecf9a50',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 746,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 465,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 478},\n", " {'date': 20200316,\n", " 'state': 'PR',\n", " 'positive': 5,\n", " 'negative': 9,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 14,\n", " 'hash': 'fd7a4c0a3f14d9caae329621884e4f06acd4b994',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 14,\n", " 'fips': '72',\n", " 'deathIncrease': None,\n", " 'hospitalizedIncrease': None,\n", " 'negativeIncrease': None,\n", " 'positiveIncrease': None,\n", " 'totalTestResultsIncrease': None},\n", " {'date': 20200316,\n", " 'state': 'RI',\n", " 'positive': 21,\n", " 'negative': 308,\n", " 'pending': 149,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 478,\n", " 'hash': '761243e8815bb9f167e46ec5f18cd7aa602d0dd4',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 329,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 110,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 111},\n", " {'date': 20200316,\n", " 'state': 'SC',\n", " 'positive': 28,\n", " 'negative': 235,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 263,\n", " 'hash': '5b57a31014f5a8e9405fb28ef2b89fd49abdbd03',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 263,\n", " 'fips': '45',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 81,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 90},\n", " {'date': 20200316,\n", " 'state': 'SD',\n", " 'positive': 10,\n", " 'negative': 494,\n", " 'pending': 0,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 504,\n", " 'hash': '718880e447bbb2fead119771121829362ff66f8a',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 504,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 167,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 168},\n", " {'date': 20200316,\n", " 'state': 'TN',\n", " 'positive': 52,\n", " 'negative': 270,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 322,\n", " 'hash': '079a87d6186e2783922276a8bc99a506672bc207',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 322,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 113,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 126},\n", " {'date': 20200316,\n", " 'state': 'TX',\n", " 'positive': 57,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 57,\n", " 'hash': '370f4453cc69ea1a49916c294643814c50d8f63b',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 57,\n", " 'fips': '48',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200316,\n", " 'state': 'UT',\n", " 'positive': 39,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 170,\n", " 'hash': '81e7bc37d01ca459e64a78c2c03421ce99b8df3c',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 170,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200316,\n", " 'state': 'VA',\n", " 'positive': 51,\n", " 'negative': 438,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 489,\n", " 'hash': '4438fec9abc594046dd819b8b0be5f2010f1c69d',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 489,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 75,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 81},\n", " {'date': 20200316,\n", " 'state': 'VI',\n", " 'positive': 1,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1,\n", " 'hash': '033ae780601c730b868cc9a5edce693d881229f5',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 1,\n", " 'fips': '78',\n", " 'deathIncrease': None,\n", " 'hospitalizedIncrease': None,\n", " 'negativeIncrease': None,\n", " 'positiveIncrease': None,\n", " 'totalTestResultsIncrease': None},\n", " {'date': 20200316,\n", " 'state': 'VT',\n", " 'positive': 8,\n", " 'negative': 421,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 429,\n", " 'hash': '736dbb5dd420be5575d29067488df3a64c2a591b',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 429,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 73,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 77},\n", " {'date': 20200316,\n", " 'state': 'WA',\n", " 'positive': 769,\n", " 'negative': 9451,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 42,\n", " 'total': 10220,\n", " 'hash': 'e1e4768ebfd159387143a0a9bc9aa059ccd7afd2',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 10220,\n", " 'fips': '53',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2329,\n", " 'positiveIncrease': 127,\n", " 'totalTestResultsIncrease': 2456},\n", " {'date': 20200316,\n", " 'state': 'WI',\n", " 'positive': 47,\n", " 'negative': 504,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 551,\n", " 'hash': '74b6f486016b3e9e719baa5b0223a5edc6de21ef',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 551,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 191,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 205},\n", " {'date': 20200316,\n", " 'state': 'WV',\n", " 'positive': 0,\n", " 'negative': 80,\n", " 'pending': 4,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 84,\n", " 'hash': 'eb01bf806b6d9f19af7e7f0c7dc11e772f4f912b',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 80,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 42,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 42},\n", " {'date': 20200316,\n", " 'state': 'WY',\n", " 'positive': 3,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3,\n", " 'hash': 'bff912f92e0f1faa6d6de1eb25d23d835fb875c2',\n", " 'dateChecked': '2020-03-16T20:00:00Z',\n", " 'totalTestResults': 3,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'AK',\n", " 'positive': 1,\n", " 'negative': 143,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 144,\n", " 'hash': 'c5d0192bb9034f576ab24dc40d7d3f9fe7716203',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 144,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'AL',\n", " 'positive': 12,\n", " 'negative': 28,\n", " 'pending': 46,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 86,\n", " 'hash': 'e6d9cfce7f9aa3449f17046d8fce42e69afc1a3a',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 40,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200315,\n", " 'state': 'AR',\n", " 'positive': 16,\n", " 'negative': 103,\n", " 'pending': 30,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 149,\n", " 'hash': '10da9763412b6feb4ca3f04669004dd7d5cca3bc',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 119,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 38,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 42},\n", " {'date': 20200315,\n", " 'state': 'AZ',\n", " 'positive': 12,\n", " 'negative': 121,\n", " 'pending': 50,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 183,\n", " 'hash': 'd19c41e2e467481e6cc8a7369fd887b44d93a206',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 133,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'CA',\n", " 'positive': 293,\n", " 'negative': 916,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 1209,\n", " 'hash': '1080ff2becf0e2d8eeb5ff452dbc3fd4a9906091',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 1209,\n", " 'fips': '06',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 41,\n", " 'totalTestResultsIncrease': 41},\n", " {'date': 20200315,\n", " 'state': 'CO',\n", " 'positive': 131,\n", " 'negative': 627,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 758,\n", " 'hash': '107290015c87a121bdc8c24d03470d8979cedce6',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 758,\n", " 'fips': '08',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 17,\n", " 'positiveIncrease': 30,\n", " 'totalTestResultsIncrease': 47},\n", " {'date': 20200315,\n", " 'state': 'CT',\n", " 'positive': 20,\n", " 'negative': 125,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 145,\n", " 'hash': '8d40890f893056d08c9192e547a93207b20d5aac',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 145,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200315,\n", " 'state': 'DC',\n", " 'positive': 16,\n", " 'negative': 79,\n", " 'pending': 20,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 115,\n", " 'hash': 'dfff7295b3b3c2765c28a2b03cfe68bf2cfbd526',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 95,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 30,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200315,\n", " 'state': 'DE',\n", " 'positive': 6,\n", " 'negative': 36,\n", " 'pending': 32,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 74,\n", " 'hash': 'dfd81ce5e38c76eefd1de7f3a33c89184845ff5a',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 42,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'FL',\n", " 'positive': 116,\n", " 'negative': 678,\n", " 'pending': 454,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 1248,\n", " 'hash': 'ac1967ebfeee074c58cb063be0eda0944721d621',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 794,\n", " 'fips': '12',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 200,\n", " 'positiveIncrease': 39,\n", " 'totalTestResultsIncrease': 239},\n", " {'date': 20200315,\n", " 'state': 'GA',\n", " 'positive': 99,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 99,\n", " 'hash': 'c5d3e674e4eb5f4a2a340278a0cc5c8a06e3fea1',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 99,\n", " 'fips': '13',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 33,\n", " 'totalTestResultsIncrease': 33},\n", " {'date': 20200315,\n", " 'state': 'HI',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': '922ca5f03b25f69382c2d34be933c142678ce290',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'IA',\n", " 'positive': 18,\n", " 'negative': 83,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 101,\n", " 'hash': '273b8ee2a4be20011972bc0bbd725f528e7bf19b',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 101,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200315,\n", " 'state': 'ID',\n", " 'positive': 5,\n", " 'negative': 174,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 179,\n", " 'hash': '4a8e078eeec25970fcfed7d553defe828d2aea39',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 179,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200315,\n", " 'state': 'IL',\n", " 'positive': 64,\n", " 'negative': 449,\n", " 'pending': 195,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 708,\n", " 'hash': '39516b4db8aa967ac8dd6ebf53d30cad2c27700b',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 513,\n", " 'fips': '17',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 133,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 151},\n", " {'date': 20200315,\n", " 'state': 'IN',\n", " 'positive': 19,\n", " 'negative': 102,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 121,\n", " 'hash': 'd9ad03da1b1838ac8b24a0f7e0b73b2742cd5373',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 121,\n", " 'fips': '18',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 28,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 32},\n", " {'date': 20200315,\n", " 'state': 'KS',\n", " 'positive': 8,\n", " 'negative': 135,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 143,\n", " 'hash': '03b4c6d534e92dae724cca8cd9ee56ae65a0d1b3',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 143,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 42,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 44},\n", " {'date': 20200315,\n", " 'state': 'KY',\n", " 'positive': 16,\n", " 'negative': 139,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 155,\n", " 'hash': 'e9fda328f27e8a398b46793fff2c5e64dc59dc42',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 155,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200315,\n", " 'state': 'LA',\n", " 'positive': 91,\n", " 'negative': 156,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 247,\n", " 'hash': 'e88ec5c7f1fcd207109fdc24af61c38e65314952',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 247,\n", " 'fips': '22',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 47,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 69},\n", " {'date': 20200315,\n", " 'state': 'MA',\n", " 'positive': 138,\n", " 'negative': 352,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 490,\n", " 'hash': 'f7a53e1c491788854d0cdadb1e08e8739b6e6f09',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 490,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'MD',\n", " 'positive': 31,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 125,\n", " 'hash': '7466e3f152c1c849e4d90b9fd97fc189ccbae99e',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 125,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200315,\n", " 'state': 'ME',\n", " 'positive': 3,\n", " 'negative': 91,\n", " 'pending': 17,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 111,\n", " 'hash': '62174f1d1662f03b97806acd41ab3061bff68f52',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 94,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'MI',\n", " 'positive': 33,\n", " 'negative': 205,\n", " 'pending': 26,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 264,\n", " 'hash': '135de7f0e632238ef6ebfe37f9937b4da407e2a9',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 238,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 8},\n", " {'date': 20200315,\n", " 'state': 'MN',\n", " 'positive': 35,\n", " 'negative': 1387,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1422,\n", " 'hash': 'abbef677be7032b76d01ecb86b129d0692f2a083',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 1422,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 540,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 554},\n", " {'date': 20200315,\n", " 'state': 'MO',\n", " 'positive': 5,\n", " 'negative': 122,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 127,\n", " 'hash': '46a3bddc9feb61e7e9c0260f883febc741e96e76',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 127,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 32,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 33},\n", " {'date': 20200315,\n", " 'state': 'MS',\n", " 'positive': 10,\n", " 'negative': 84,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 94,\n", " 'hash': '0361033dd115a0ca5489351b9f8decfec877db9d',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 94,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 4},\n", " {'date': 20200315,\n", " 'state': 'MT',\n", " 'positive': 7,\n", " 'negative': 103,\n", " 'pending': 57,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 167,\n", " 'hash': 'f9495286767e05cbc338e195420a8a9bee7e442a',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 110,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200315,\n", " 'state': 'NC',\n", " 'positive': 32,\n", " 'negative': 227,\n", " 'pending': 151,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 410,\n", " 'hash': 'cd2df82ad3b94afa363f215d0ce33a3081dffe0b',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 259,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 90,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 99},\n", " {'date': 20200315,\n", " 'state': 'ND',\n", " 'positive': 1,\n", " 'negative': 95,\n", " 'pending': 4,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 100,\n", " 'hash': '646cbf2cd8ac8fa864167c978f384d36fafefef6',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 96,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 41,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 41},\n", " {'date': 20200315,\n", " 'state': 'NE',\n", " 'positive': 17,\n", " 'negative': 80,\n", " 'pending': 33,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 130,\n", " 'hash': '688fed13740cd8058d3d9967d54bbe8055c2ce14',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 97,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200315,\n", " 'state': 'NH',\n", " 'positive': 13,\n", " 'negative': 271,\n", " 'pending': 95,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 379,\n", " 'hash': '52ec0ed534fa2b7a2ed1bfc9fd76bf5e08aa2cad',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 284,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 59,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 65},\n", " {'date': 20200315,\n", " 'state': 'NJ',\n", " 'positive': 98,\n", " 'negative': 120,\n", " 'pending': 34,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 252,\n", " 'hash': '4fb7b0656e44dc37a7767730eabcce590399bc46',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 218,\n", " 'fips': '34',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 23,\n", " 'positiveIncrease': 48,\n", " 'totalTestResultsIncrease': 71},\n", " {'date': 20200315,\n", " 'state': 'NM',\n", " 'positive': 13,\n", " 'negative': 482,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 495,\n", " 'hash': '171d8a98c4351f4cc6122f7859369f17570a7bc4',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 495,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 245,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 248},\n", " {'date': 20200315,\n", " 'state': 'NV',\n", " 'positive': 21,\n", " 'negative': 168,\n", " 'pending': 164,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 353,\n", " 'hash': '60cfba2525776d601c28ff1259180d9afb757dff',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 189,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200315,\n", " 'state': 'NY',\n", " 'positive': 729,\n", " 'negative': 4543,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 5272,\n", " 'hash': 'c94bc9386b8b9332a65a68caea2b77d9226cd7f0',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 5272,\n", " 'fips': '36',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1764,\n", " 'positiveIncrease': 205,\n", " 'totalTestResultsIncrease': 1969},\n", " {'date': 20200315,\n", " 'state': 'OH',\n", " 'positive': 36,\n", " 'negative': 139,\n", " 'pending': 350,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 525,\n", " 'hash': 'b332daaaaec706572de9d29bfc67a7eca3ca030b',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 175,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 89,\n", " 'positiveIncrease': 23,\n", " 'totalTestResultsIncrease': 112},\n", " {'date': 20200315,\n", " 'state': 'OK',\n", " 'positive': 9,\n", " 'negative': 118,\n", " 'pending': 12,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 139,\n", " 'hash': 'e13bc2b8e36b945bc50026c63c64e84dd0330129',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 127,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 82,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 87},\n", " {'date': 20200315,\n", " 'state': 'OR',\n", " 'positive': 36,\n", " 'negative': 420,\n", " 'pending': 225,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 681,\n", " 'hash': '87b2dc1639a56b11910e81efea67ba58af1179dc',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 456,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 83,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 89},\n", " {'date': 20200315,\n", " 'state': 'PA',\n", " 'positive': 63,\n", " 'negative': 205,\n", " 'pending': 183,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 451,\n", " 'hash': '80a9e41a869708742b177a1f99a963c61dd6e1b6',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 268,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200315,\n", " 'state': 'RI',\n", " 'positive': 20,\n", " 'negative': 198,\n", " 'pending': 57,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 275,\n", " 'hash': '2cc1e90ba8cc0c5ecbf60b4b079224ff0dc6ae09',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 218,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200315,\n", " 'state': 'SC',\n", " 'positive': 19,\n", " 'negative': 154,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 173,\n", " 'hash': '700b253938c73cdd668f4c56f82babe25fb0bece',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 173,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 44,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 50},\n", " {'date': 20200315,\n", " 'state': 'SD',\n", " 'positive': 9,\n", " 'negative': 327,\n", " 'pending': 6,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 342,\n", " 'hash': '446ee8b81013e7ffb470a8cbace7694ac871056e',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 336,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 145,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 145},\n", " {'date': 20200315,\n", " 'state': 'TN',\n", " 'positive': 39,\n", " 'negative': 157,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 196,\n", " 'hash': 'f309f412ecee2d0dbdf3cc34f8af8b95f0704eac',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 196,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 34},\n", " {'date': 20200315,\n", " 'state': 'TX',\n", " 'positive': 56,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 56,\n", " 'hash': '06ddb465e087d768b9fd337f0589defcf3e3b114',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 56,\n", " 'fips': '48',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200315,\n", " 'state': 'UT',\n", " 'positive': 28,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 159,\n", " 'hash': '69b4c84a7427ceab36db25a14aca9549fc8c16d3',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 159,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200315,\n", " 'state': 'VA',\n", " 'positive': 45,\n", " 'negative': 363,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 408,\n", " 'hash': '06e9db5006558d6b94d3c3dc6c5790ad9fd6e501',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 408,\n", " 'fips': '51',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 246,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 261},\n", " {'date': 20200315,\n", " 'state': 'VT',\n", " 'positive': 4,\n", " 'negative': 348,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 352,\n", " 'hash': 'f4102c2a4a57abc4c07bd0660da41326854c9b73',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 352,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 121,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 121},\n", " {'date': 20200315,\n", " 'state': 'WA',\n", " 'positive': 642,\n", " 'negative': 7122,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 40,\n", " 'total': 7764,\n", " 'hash': 'd8f852a81c26bf69720711c99cf063aaa0ee810b',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 7764,\n", " 'fips': '53',\n", " 'deathIncrease': 3,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1121,\n", " 'positiveIncrease': 74,\n", " 'totalTestResultsIncrease': 1195},\n", " {'date': 20200315,\n", " 'state': 'WI',\n", " 'positive': 33,\n", " 'negative': 313,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 346,\n", " 'hash': '241301e6f8cc8d3ced3f92bbd29a0d0f1e9539d2',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 346,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 144,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 158},\n", " {'date': 20200315,\n", " 'state': 'WV',\n", " 'positive': 0,\n", " 'negative': 38,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 39,\n", " 'hash': 'e5a11f1dfc0994c70a3fb8a81d5e4b4ab0a323d2',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 38,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 12,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200315,\n", " 'state': 'WY',\n", " 'positive': 3,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3,\n", " 'hash': '265151474fc2be6ccb417aaa3b2a8ca847f4f1d2',\n", " 'dateChecked': '2020-03-15T20:00:00Z',\n", " 'totalTestResults': 3,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200314,\n", " 'state': 'AK',\n", " 'positive': 1,\n", " 'negative': 143,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 144,\n", " 'hash': '356a9d29ed1052bbde921776356dc10fdee08fca',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 144,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 84,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 84},\n", " {'date': 20200314,\n", " 'state': 'AL',\n", " 'positive': 6,\n", " 'negative': 22,\n", " 'pending': 46,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 74,\n", " 'hash': 'b758a75e5bf1102ca46fe4fd5bcf6e20584eb991',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 28,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 11,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200314,\n", " 'state': 'AR',\n", " 'positive': 12,\n", " 'negative': 65,\n", " 'pending': 26,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 103,\n", " 'hash': '6c689c343d101f608aa31c15ec0882d09f0d93d5',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 77,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 35,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 38},\n", " {'date': 20200314,\n", " 'state': 'AZ',\n", " 'positive': 12,\n", " 'negative': 121,\n", " 'pending': 50,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 183,\n", " 'hash': '75ad7c61e981211560cb575238e5fa731527087a',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 133,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 30},\n", " {'date': 20200314,\n", " 'state': 'CA',\n", " 'positive': 252,\n", " 'negative': 916,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 5,\n", " 'total': 1168,\n", " 'hash': 'ae827198d34cea0958851798004de4e089625dd7',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 1168,\n", " 'fips': '06',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 50,\n", " 'totalTestResultsIncrease': 50},\n", " {'date': 20200314,\n", " 'state': 'CO',\n", " 'positive': 101,\n", " 'negative': 610,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 711,\n", " 'hash': '827b507bbcc5755b113b77495c6d9308bb696806',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 711,\n", " 'fips': '08',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 86,\n", " 'positiveIncrease': 29,\n", " 'totalTestResultsIncrease': 115},\n", " {'date': 20200314,\n", " 'state': 'CT',\n", " 'positive': 11,\n", " 'negative': 125,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 136,\n", " 'hash': '7f31e91a95cc935f0e318f0b2146ac3aeb7a7994',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 136,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 26,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 31},\n", " {'date': 20200314,\n", " 'state': 'DC',\n", " 'positive': 10,\n", " 'negative': 49,\n", " 'pending': 10,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 69,\n", " 'hash': '18e2b3abbd6d9ea9dfa1f4b9324cc0468caabd37',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 59,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 29,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 29},\n", " {'date': 20200314,\n", " 'state': 'DE',\n", " 'positive': 6,\n", " 'negative': 36,\n", " 'pending': 32,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 74,\n", " 'hash': '866cfca5d89b2a6fb212f9e2b715317d1ddd7c4b',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 42,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 8},\n", " {'date': 20200314,\n", " 'state': 'FL',\n", " 'positive': 77,\n", " 'negative': 478,\n", " 'pending': 221,\n", " 'hospitalized': None,\n", " 'death': 3,\n", " 'total': 776,\n", " 'hash': 'ecedb91b59dc73d2c82e1c6d5560fc265ab44c12',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 555,\n", " 'fips': '12',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 27},\n", " {'date': 20200314,\n", " 'state': 'GA',\n", " 'positive': 66,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 66,\n", " 'hash': 'dfb1324b31ae277f6da866ad47bd010b26c28b43',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 66,\n", " 'fips': '13',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 24},\n", " {'date': 20200314,\n", " 'state': 'HI',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': '3b20447434ab41f7a5b30070b8772ec7c8a39efa',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'IA',\n", " 'positive': 17,\n", " 'negative': 83,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 100,\n", " 'hash': 'd873b22dcd683092faa6e901efea384b43934509',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 100,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200314,\n", " 'state': 'ID',\n", " 'positive': 2,\n", " 'negative': 174,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 176,\n", " 'hash': '4c07b4a10fd02ae7903a9fbaa8f5b961832ef42b',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 176,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 43,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 45},\n", " {'date': 20200314,\n", " 'state': 'IL',\n", " 'positive': 46,\n", " 'negative': 316,\n", " 'pending': 82,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 444,\n", " 'hash': '24b6b0643c7f979652c74171ac48222ed2e21ac3',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 362,\n", " 'fips': '17',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 22,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200314,\n", " 'state': 'IN',\n", " 'positive': 15,\n", " 'negative': 74,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 89,\n", " 'hash': 'ef22e4cbe06df300a55a129e40a356112e9dc899',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 89,\n", " 'fips': '18',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 13,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200314,\n", " 'state': 'KS',\n", " 'positive': 6,\n", " 'negative': 93,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 99,\n", " 'hash': 'a9ec41884c29362e0e355ea91537c8d563260fda',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 99,\n", " 'fips': '20',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'KY',\n", " 'positive': 14,\n", " 'negative': 139,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 153,\n", " 'hash': '8db5e9ff9365a8a9c30eda3e415ab638712c38b9',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 153,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 32,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 35},\n", " {'date': 20200314,\n", " 'state': 'LA',\n", " 'positive': 69,\n", " 'negative': 109,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 178,\n", " 'hash': '673e714970aa7eec233fd613e89dbb7d64615b1a',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 178,\n", " 'fips': '22',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 72,\n", " 'positiveIncrease': 33,\n", " 'totalTestResultsIncrease': 105},\n", " {'date': 20200314,\n", " 'state': 'MA',\n", " 'positive': 138,\n", " 'negative': 352,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 490,\n", " 'hash': 'a1cbd774232837552825f3e778568df45b40b426',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 490,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 260,\n", " 'positiveIncrease': 15,\n", " 'totalTestResultsIncrease': 275},\n", " {'date': 20200314,\n", " 'state': 'MD',\n", " 'positive': 26,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 120,\n", " 'hash': '7f710618be5e0fe6489cb48a8fb80edf5a6fae6b',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 120,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200314,\n", " 'state': 'ME',\n", " 'positive': 3,\n", " 'negative': 91,\n", " 'pending': 17,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 111,\n", " 'hash': '92c50523000e01ed0f664d194df9ae9e1b332d91',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 94,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'MI',\n", " 'positive': 25,\n", " 'negative': 205,\n", " 'pending': 26,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 256,\n", " 'hash': 'c9573a49442ffcf432bd8d37001d9399685fddca',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 230,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 72,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 81},\n", " {'date': 20200314,\n", " 'state': 'MN',\n", " 'positive': 21,\n", " 'negative': 847,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 868,\n", " 'hash': '3260db823489ddca938337f10ebb55c38ede60bb',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 868,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 306,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 313},\n", " {'date': 20200314,\n", " 'state': 'MO',\n", " 'positive': 4,\n", " 'negative': 90,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 94,\n", " 'hash': '67ce99c3f858fae201e196288a228a2e35c77856',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 94,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 19,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 21},\n", " {'date': 20200314,\n", " 'state': 'MS',\n", " 'positive': 6,\n", " 'negative': 84,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 90,\n", " 'hash': '66ffd8fc17e55453ae709b93fbf6ca704a5f1a66',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 90,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 43,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 45},\n", " {'date': 20200314,\n", " 'state': 'MT',\n", " 'positive': 5,\n", " 'negative': 103,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 108,\n", " 'hash': '80024bf41fdd500e2257a49d2e811cac074641e1',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 108,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 48,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 52},\n", " {'date': 20200314,\n", " 'state': 'NC',\n", " 'positive': 23,\n", " 'negative': 137,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 160,\n", " 'hash': '1b79e4ffbbb7f1672e3fe6196fd6caa501c8e600',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 160,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 51,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 59},\n", " {'date': 20200314,\n", " 'state': 'ND',\n", " 'positive': 1,\n", " 'negative': 54,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 69,\n", " 'hash': '5c99eaf6a5ca1e1e84bd82d8f504ef2e65e53178',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 55,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 15,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 15},\n", " {'date': 20200314,\n", " 'state': 'NE',\n", " 'positive': 14,\n", " 'negative': 80,\n", " 'pending': 33,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 127,\n", " 'hash': '34f6bebf4bf457d8c81beb972a7c6147ef050117',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 94,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200314,\n", " 'state': 'NH',\n", " 'positive': 7,\n", " 'negative': 212,\n", " 'pending': 31,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 250,\n", " 'hash': 'e0228a6cb6867a94d7eeaf222e3ab6372aa807bf',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 219,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 118,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 119},\n", " {'date': 20200314,\n", " 'state': 'NJ',\n", " 'positive': 50,\n", " 'negative': 97,\n", " 'pending': 80,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 227,\n", " 'hash': '77285acc62233f7638a439fd3259511e613b75a8',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 147,\n", " 'fips': '34',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'NM',\n", " 'positive': 10,\n", " 'negative': 237,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 247,\n", " 'hash': '99f4fa283d4178abc62e78e7a51e2b6a06eff35b',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 247,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 47,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 47},\n", " {'date': 20200314,\n", " 'state': 'NV',\n", " 'positive': 20,\n", " 'negative': 168,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 188,\n", " 'hash': '8bf72a5aad471d133e5ea4315fcacd5d71877d9f',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 188,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200314,\n", " 'state': 'NY',\n", " 'positive': 524,\n", " 'negative': 2779,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3303,\n", " 'hash': '54ea85dc79481d88377129a87b25542d82831106',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 3303,\n", " 'fips': '36',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 103,\n", " 'totalTestResultsIncrease': 103},\n", " {'date': 20200314,\n", " 'state': 'OH',\n", " 'positive': 13,\n", " 'negative': 50,\n", " 'pending': 159,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 222,\n", " 'hash': '5d28d76a0be9dd56118ea0bbff73d4016d0f89d2',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 63,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'OK',\n", " 'positive': 4,\n", " 'negative': 36,\n", " 'pending': 37,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 77,\n", " 'hash': '0f8033c2876310e2e4dbea0be9143157ce88119f',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 40,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200314,\n", " 'state': 'OR',\n", " 'positive': 30,\n", " 'negative': 337,\n", " 'pending': 157,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 524,\n", " 'hash': 'f834d3db0c37253b4a1e9aaf683579355887acb9',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 367,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'PA',\n", " 'positive': 47,\n", " 'negative': 205,\n", " 'pending': 150,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 402,\n", " 'hash': 'e59e5871a98c28bbbee480bf695f4fc33e12527a',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 252,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 65,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 79},\n", " {'date': 20200314,\n", " 'state': 'RI',\n", " 'positive': 20,\n", " 'negative': 198,\n", " 'pending': 57,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 275,\n", " 'hash': '9a3fe2366f8d0a48520a294a7f59b4f9c0cc2b21',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 218,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 56,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 62},\n", " {'date': 20200314,\n", " 'state': 'SC',\n", " 'positive': 13,\n", " 'negative': 110,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 123,\n", " 'hash': 'd7e4ca31fa40f0277e736f13770e91c030416148',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 123,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 35,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200314,\n", " 'state': 'SD',\n", " 'positive': 9,\n", " 'negative': 182,\n", " 'pending': 3,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 194,\n", " 'hash': 'bc62585a6b2b8630383216385a8c108f0116d23f',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 191,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 109,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 109},\n", " {'date': 20200314,\n", " 'state': 'TN',\n", " 'positive': 32,\n", " 'negative': 130,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 162,\n", " 'hash': 'c81ee891f5d46a95edb6ed88d46676fad6f74fbd',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 162,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 14,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 20},\n", " {'date': 20200314,\n", " 'state': 'TX',\n", " 'positive': 51,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 51,\n", " 'hash': '0bd85f9d5156ede28909b20fd36a480daf7f33b0',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 51,\n", " 'fips': '48',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 12,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200314,\n", " 'state': 'UT',\n", " 'positive': 6,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 137,\n", " 'hash': '24f345a93a6b3025e0984f1c98f67204e8b83331',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 137,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'VA',\n", " 'positive': 30,\n", " 'negative': 117,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 147,\n", " 'hash': '345c3deca232497cade56379d60eceba6985d26d',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 147,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'VT',\n", " 'positive': 4,\n", " 'negative': 227,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 231,\n", " 'hash': 'ac2678f859d1b30ad74d4d5b5691b41c8217c3bd',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 231,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 85,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 87},\n", " {'date': 20200314,\n", " 'state': 'WA',\n", " 'positive': 568,\n", " 'negative': 6001,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 37,\n", " 'total': 6569,\n", " 'hash': '829ecd109c0d69d8e4ce0ce5a7bbc96953b9b28a',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 6569,\n", " 'fips': '53',\n", " 'deathIncrease': 6,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1651,\n", " 'positiveIncrease': 111,\n", " 'totalTestResultsIncrease': 1762},\n", " {'date': 20200314,\n", " 'state': 'WI',\n", " 'positive': 19,\n", " 'negative': 169,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 188,\n", " 'hash': '483998b5b6c9e62862988561426606c31b8f4dea',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 188,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200314,\n", " 'state': 'WV',\n", " 'positive': 0,\n", " 'negative': 26,\n", " 'pending': 5,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 31,\n", " 'hash': '1ec4d6abbd61641fd59ee94aee4063cb7d2370e3',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 26,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 9,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200314,\n", " 'state': 'WY',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': '696c87f579b0d51a754be91db614d94d452d6e99',\n", " 'dateChecked': '2020-03-14T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200313,\n", " 'state': 'AK',\n", " 'positive': 1,\n", " 'negative': 59,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 60,\n", " 'hash': '53abad475c67cda55769fd5a09b1c16485fc3b19',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 60,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 13,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 14},\n", " {'date': 20200313,\n", " 'state': 'AL',\n", " 'positive': 1,\n", " 'negative': 11,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 12,\n", " 'hash': 'e1390d40b98a35b3c6c7f303e6cf5b49ead73b12',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 12,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200313,\n", " 'state': 'AR',\n", " 'positive': 9,\n", " 'negative': 30,\n", " 'pending': 22,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 61,\n", " 'hash': 'f5baa7aebd648979e7a38d587b963a041f1ec8a3',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 39,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200313,\n", " 'state': 'AZ',\n", " 'positive': 9,\n", " 'negative': 94,\n", " 'pending': 40,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 143,\n", " 'hash': '18b19b15c47b79309e6274a60cd623b9941364cf',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 103,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 12,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 12},\n", " {'date': 20200313,\n", " 'state': 'CA',\n", " 'positive': 202,\n", " 'negative': 916,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 1118,\n", " 'hash': 'e3e51a32b9a800c2d329d1fd994f635f80c0aa7b',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 1118,\n", " 'fips': '06',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200313,\n", " 'state': 'CO',\n", " 'positive': 72,\n", " 'negative': 524,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 596,\n", " 'hash': '91b5b44fe819f888e950460d64001072ea6380ad',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 596,\n", " 'fips': '08',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 226,\n", " 'positiveIncrease': 27,\n", " 'totalTestResultsIncrease': 253},\n", " {'date': 20200313,\n", " 'state': 'CT',\n", " 'positive': 6,\n", " 'negative': 99,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 105,\n", " 'hash': 'e9d4ae5c70327d3997b429a58671d2fa8e9d67d6',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 105,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 10,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200313,\n", " 'state': 'DC',\n", " 'positive': 10,\n", " 'negative': 20,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 30,\n", " 'hash': '8cf77e6f03951fa76b1ae48d7ce196faa54e7ea6',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 30,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200313,\n", " 'state': 'DE',\n", " 'positive': 4,\n", " 'negative': 30,\n", " 'pending': 10,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 44,\n", " 'hash': '92ca4e6640e0004efe4782f0dda28d8726b812cb',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 34,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 7},\n", " {'date': 20200313,\n", " 'state': 'FL',\n", " 'positive': 50,\n", " 'negative': 478,\n", " 'pending': 221,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 749,\n", " 'hash': '491a3367b3dfa199f0e26c9d44d5e9ae68271e8d',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 528,\n", " 'fips': '12',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 177,\n", " 'positiveIncrease': 18,\n", " 'totalTestResultsIncrease': 195},\n", " {'date': 20200313,\n", " 'state': 'GA',\n", " 'positive': 42,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 42,\n", " 'hash': '0c47b41c78a0d7e5638753d514fd48217d797ee7',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 42,\n", " 'fips': '13',\n", " 'deathIncrease': 1,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200313,\n", " 'state': 'HI',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': '1da5c12c623f783ed63f8e76a97e6ab365b3adbc',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200313,\n", " 'state': 'IA',\n", " 'positive': 16,\n", " 'negative': 83,\n", " 'pending': 29,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 128,\n", " 'hash': 'e621cb716dcde6564f3724824bcf8096eec5d9c1',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 99,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 16,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200313,\n", " 'state': 'ID',\n", " 'positive': 0,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 131,\n", " 'hash': '1d8684cd14d0313dbaa81660bec82292a1fce1d6',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 131,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 38,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 38},\n", " {'date': 20200313,\n", " 'state': 'IL',\n", " 'positive': 32,\n", " 'negative': 294,\n", " 'pending': 92,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 418,\n", " 'hash': '461883b8199eaf634662f601c05b41b3e18fe33a',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 326,\n", " 'fips': '17',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 28,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 35},\n", " {'date': 20200313,\n", " 'state': 'IN',\n", " 'positive': 12,\n", " 'negative': 61,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 73,\n", " 'hash': '3766d3444af404c523fe7edbcb9b5c2a519aec44',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 73,\n", " 'fips': '18',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 9,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200313,\n", " 'state': 'KS',\n", " 'positive': 6,\n", " 'negative': 93,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 99,\n", " 'hash': 'd0e909518146a45ff7512efa3271eaa4ecc11c6d',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 99,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 52,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 54},\n", " {'date': 20200313,\n", " 'state': 'KY',\n", " 'positive': 11,\n", " 'negative': 107,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 118,\n", " 'hash': '7cdd345aec45a908c338c5f4062255fc51f110d8',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 118,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 51,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 54},\n", " {'date': 20200313,\n", " 'state': 'LA',\n", " 'positive': 36,\n", " 'negative': 37,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 73,\n", " 'hash': '832588948acb3446737afba94c4edd73904428d7',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 73,\n", " 'fips': '22',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 22,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200313,\n", " 'state': 'MA',\n", " 'positive': 123,\n", " 'negative': 92,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 215,\n", " 'hash': '426b1970820631f04a7d65e0e18aaffc3a47090c',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 215,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 92,\n", " 'positiveIncrease': 28,\n", " 'totalTestResultsIncrease': 120},\n", " {'date': 20200313,\n", " 'state': 'MD',\n", " 'positive': 17,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 111,\n", " 'hash': 'b56aeac4e8f356dcac64a0d52843c814a251f05d',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 111,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200313,\n", " 'state': 'ME',\n", " 'positive': 3,\n", " 'negative': 91,\n", " 'pending': 17,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 111,\n", " 'hash': '7a51a8b17f40d517221ac607f7a56415f218f17c',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 94,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 26,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 28},\n", " {'date': 20200313,\n", " 'state': 'MI',\n", " 'positive': 16,\n", " 'negative': 133,\n", " 'pending': 26,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 175,\n", " 'hash': '6973b799db4e83e65507a46a42ea898d409f00c0',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 149,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 42,\n", " 'positiveIncrease': 14,\n", " 'totalTestResultsIncrease': 56},\n", " {'date': 20200313,\n", " 'state': 'MN',\n", " 'positive': 14,\n", " 'negative': 541,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 555,\n", " 'hash': '91e872ee443fd8ef735a33ae4994b150c136052a',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 555,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 234,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 239},\n", " {'date': 20200313,\n", " 'state': 'MO',\n", " 'positive': 2,\n", " 'negative': 71,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 73,\n", " 'hash': '633aaf6e3395a0d0b72bee073d14f1e4da18eca5',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 73,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 7,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 8},\n", " {'date': 20200313,\n", " 'state': 'MS',\n", " 'positive': 4,\n", " 'negative': 41,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 45,\n", " 'hash': 'ef242016ac83226fc4eb03bc6125342029dfc777',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 45,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200313,\n", " 'state': 'MT',\n", " 'positive': 1,\n", " 'negative': 55,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 56,\n", " 'hash': '2a69fe2f771b46e3ae8a653ce5755b88601bc263',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 56,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 21,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 21},\n", " {'date': 20200313,\n", " 'state': 'NC',\n", " 'positive': 15,\n", " 'negative': 86,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 101,\n", " 'hash': 'c700275ab15d48a60b537cb4fc2d7d8323de70af',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 101,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 26,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 29},\n", " {'date': 20200313,\n", " 'state': 'ND',\n", " 'positive': 1,\n", " 'negative': 39,\n", " 'pending': 12,\n", " 'hospitalized': None,\n", " 'death': 0,\n", " 'total': 52,\n", " 'hash': 'b20b1d83f9a3e786a607b37d1e0b4ef3a2047aa2',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 40,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 27},\n", " {'date': 20200313,\n", " 'state': 'NE',\n", " 'positive': 13,\n", " 'negative': 80,\n", " 'pending': 33,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 126,\n", " 'hash': 'a0d08dcbb1511578b618a33f25baec51a9bf3cbf',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 93,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200313,\n", " 'state': 'NH',\n", " 'positive': 6,\n", " 'negative': 94,\n", " 'pending': 21,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 121,\n", " 'hash': '117bbc4a52ef5545d06c52898fb136266d67f691',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 100,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200313,\n", " 'state': 'NJ',\n", " 'positive': 50,\n", " 'negative': 97,\n", " 'pending': 80,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 227,\n", " 'hash': 'b90d62b34393a027ee7f3ccd42227a0e77f0ab5c',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 147,\n", " 'fips': '34',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 23,\n", " 'positiveIncrease': 20,\n", " 'totalTestResultsIncrease': 43},\n", " {'date': 20200313,\n", " 'state': 'NM',\n", " 'positive': 10,\n", " 'negative': 190,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 200,\n", " 'hash': 'd9e474623956a3c6ed0224888ea2c6d47e9be670',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 200,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 35,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 40},\n", " {'date': 20200313,\n", " 'state': 'NV',\n", " 'positive': 11,\n", " 'negative': 168,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 179,\n", " 'hash': 'b299cfd2f427742fb174618244a60bd9c90fa3c3',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 179,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 4},\n", " {'date': 20200313,\n", " 'state': 'NY',\n", " 'positive': 421,\n", " 'negative': 2779,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 3200,\n", " 'hash': '6fda547acc42c002171b42fd6fa24d610c61477f',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 3200,\n", " 'fips': '36',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 2687,\n", " 'positiveIncrease': 205,\n", " 'totalTestResultsIncrease': 2892},\n", " {'date': 20200313,\n", " 'state': 'OH',\n", " 'positive': 13,\n", " 'negative': 50,\n", " 'pending': 159,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 222,\n", " 'hash': 'd5c1f6f2e4f60bd45393776bd0e71881d51933c5',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 63,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 20,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 28},\n", " {'date': 20200313,\n", " 'state': 'OK',\n", " 'positive': 3,\n", " 'negative': 36,\n", " 'pending': 37,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 76,\n", " 'hash': '96c98a2ff7bdeea524fca0c78f1355707de41ac9',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 39,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200313,\n", " 'state': 'OR',\n", " 'positive': 30,\n", " 'negative': 337,\n", " 'pending': 157,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 524,\n", " 'hash': '91187b9cabd3a4362d980d6683b1c0a7a4fb5b78',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 367,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 51,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 62},\n", " {'date': 20200313,\n", " 'state': 'PA',\n", " 'positive': 33,\n", " 'negative': 140,\n", " 'pending': 130,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 303,\n", " 'hash': '2f9345229ddc2b3812aa2760c51c07334c8dffc8',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 173,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 24,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 35},\n", " {'date': 20200313,\n", " 'state': 'RI',\n", " 'positive': 14,\n", " 'negative': 142,\n", " 'pending': 29,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 185,\n", " 'hash': 'b09496b06ec0cfd5d111c8c09c28d4bce64896b2',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 156,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 48,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 57},\n", " {'date': 20200313,\n", " 'state': 'SC',\n", " 'positive': 12,\n", " 'negative': 75,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 87,\n", " 'hash': 'a979c4e8dd2ea9c838357e1416c407e891565efa',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 87,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 27,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 29},\n", " {'date': 20200313,\n", " 'state': 'SD',\n", " 'positive': 9,\n", " 'negative': 73,\n", " 'pending': 11,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 93,\n", " 'hash': 'e105fb1f70a3b64dd65097b6dffd70f3439c9848',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 82,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 46,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 47},\n", " {'date': 20200313,\n", " 'state': 'TN',\n", " 'positive': 26,\n", " 'negative': 116,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 142,\n", " 'hash': '6a0574e9d2f0f863099b2fd26f02709cdc1fceb1',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 142,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 37,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 45},\n", " {'date': 20200313,\n", " 'state': 'TX',\n", " 'positive': 39,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 39,\n", " 'hash': '6ba646f648c240d15bcfd813a2d143b947fa011b',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 39,\n", " 'fips': '48',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 16},\n", " {'date': 20200313,\n", " 'state': 'UT',\n", " 'positive': 6,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 137,\n", " 'hash': 'a07f9cd34484d5b0cd789360097391ede0681dc7',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 137,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200313,\n", " 'state': 'VA',\n", " 'positive': 30,\n", " 'negative': 117,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 147,\n", " 'hash': '6eda3d24261b2819a7b03c55340db402f8db57ad',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 147,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 13,\n", " 'totalTestResultsIncrease': 13},\n", " {'date': 20200313,\n", " 'state': 'VT',\n", " 'positive': 2,\n", " 'negative': 142,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 144,\n", " 'hash': 'e1e2d2e78fdbf14064a2098929950b3ce6d258c2',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 144,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 45,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 45},\n", " {'date': 20200313,\n", " 'state': 'WA',\n", " 'positive': 457,\n", " 'negative': 4350,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 31,\n", " 'total': 4807,\n", " 'hash': 'ff80f9c959ff97e66687744e5a3a4925ab8cdc85',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 4807,\n", " 'fips': '53',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 1313,\n", " 'positiveIncrease': 120,\n", " 'totalTestResultsIncrease': 1433},\n", " {'date': 20200313,\n", " 'state': 'WI',\n", " 'positive': 19,\n", " 'negative': 169,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 188,\n", " 'hash': 'a26905f9f8ac6ded6cf3537f227f8960b4424126',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 188,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 85,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 96},\n", " {'date': 20200313,\n", " 'state': 'WV',\n", " 'positive': 0,\n", " 'negative': 17,\n", " 'pending': 4,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 21,\n", " 'hash': '8b7a8a174c5615541bb0847d4c13890a9eace11a',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 17,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 10,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200313,\n", " 'state': 'WY',\n", " 'positive': 1,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1,\n", " 'hash': '9ed041dd8934a5c7ef257fc92fcc2a7305cd5bfd',\n", " 'dateChecked': '2020-03-13T20:00:00Z',\n", " 'totalTestResults': 1,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200312,\n", " 'state': 'AK',\n", " 'positive': 0,\n", " 'negative': 46,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 60,\n", " 'hash': '8daf9421252871e6d75524e4b0b12b514939224a',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 46,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200312,\n", " 'state': 'AL',\n", " 'positive': 0,\n", " 'negative': 10,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 10,\n", " 'hash': '06a25c23b36556f359a44e909789f1a31ee8c0ff',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 10,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200312,\n", " 'state': 'AR',\n", " 'positive': 6,\n", " 'negative': 24,\n", " 'pending': 20,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 50,\n", " 'hash': 'af74aa1cb5b93cf708e4565ff4418fa57940eb52',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 30,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 12,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200312,\n", " 'state': 'AZ',\n", " 'positive': 9,\n", " 'negative': 82,\n", " 'pending': 24,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 115,\n", " 'hash': '77e54e131063ddef834402f52d2b39c747d160c6',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 91,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 23,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200312,\n", " 'state': 'CA',\n", " 'positive': 202,\n", " 'negative': 916,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 4,\n", " 'total': 1118,\n", " 'hash': '151ee4500067e79123f3ae7f51306b3af44c8cdd',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 1118,\n", " 'fips': '06',\n", " 'deathIncrease': 4,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 45,\n", " 'totalTestResultsIncrease': 45},\n", " {'date': 20200312,\n", " 'state': 'CO',\n", " 'positive': 45,\n", " 'negative': 298,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 343,\n", " 'hash': '1f7ae207bd7b370645fa42b188849b10dad247d7',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 343,\n", " 'fips': '08',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 47,\n", " 'positiveIncrease': 17,\n", " 'totalTestResultsIncrease': 64},\n", " {'date': 20200312,\n", " 'state': 'CT',\n", " 'positive': 6,\n", " 'negative': 89,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 95,\n", " 'hash': '68ed0dcd34dceb73cb21806f23bbbeb5e7620c67',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 95,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 18,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 21},\n", " {'date': 20200312,\n", " 'state': 'DC',\n", " 'positive': 10,\n", " 'negative': 20,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 30,\n", " 'hash': '9db3dec362806d3c56b1c27624b6fe270dc88ac7',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 30,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 6},\n", " {'date': 20200312,\n", " 'state': 'DE',\n", " 'positive': 4,\n", " 'negative': 23,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 41,\n", " 'hash': 'd28e95fbac614ab9f60940ada5950d2d8c7a055d',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 27,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 6,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200312,\n", " 'state': 'FL',\n", " 'positive': 32,\n", " 'negative': 301,\n", " 'pending': 147,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 480,\n", " 'hash': '2f420995cc0163b805055ad6edbfcf85535792e0',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 333,\n", " 'fips': '12',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 4},\n", " {'date': 20200312,\n", " 'state': 'GA',\n", " 'positive': 31,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 31,\n", " 'hash': '8d1e3067b7fa265683c865fe6d2c57b574bb64b8',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 31,\n", " 'fips': '13',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 9},\n", " {'date': 20200312,\n", " 'state': 'HI',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': 'cda91923e4175a664ff00e6caf86becfc9cad6b3',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200312,\n", " 'state': 'IA',\n", " 'positive': 14,\n", " 'negative': 67,\n", " 'pending': 24,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 105,\n", " 'hash': '1c2cb055cd0ead961274ef4b1ccf687e30577a06',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 81,\n", " 'fips': '19',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 21,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200312,\n", " 'state': 'ID',\n", " 'positive': 0,\n", " 'negative': 93,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 93,\n", " 'hash': '16083b9798337fa039009cf70607c8dbfcaad317',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 93,\n", " 'fips': '16',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 26,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 26},\n", " {'date': 20200312,\n", " 'state': 'IL',\n", " 'positive': 25,\n", " 'negative': 266,\n", " 'pending': 76,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 367,\n", " 'hash': '7a92d4d3ab7f815b5ed8a475565ee14558da8922',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 291,\n", " 'fips': '17',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 22,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 28},\n", " {'date': 20200312,\n", " 'state': 'IN',\n", " 'positive': 12,\n", " 'negative': 52,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 64,\n", " 'hash': '3552192ad9dfb8f9b376df92ffc41c0641f00c0e',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 64,\n", " 'fips': '18',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 19,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 21},\n", " {'date': 20200312,\n", " 'state': 'KS',\n", " 'positive': 4,\n", " 'negative': 41,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 45,\n", " 'hash': 'a9a47be5a1aff6d48273bf07ab824081759244c4',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 45,\n", " 'fips': '20',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200312,\n", " 'state': 'KY',\n", " 'positive': 8,\n", " 'negative': 56,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 64,\n", " 'hash': '605ee67047a9324194e4d7debb82ec49d51d21f2',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 64,\n", " 'fips': '21',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 10,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200312,\n", " 'state': 'LA',\n", " 'positive': 14,\n", " 'negative': 37,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 51,\n", " 'hash': 'efc2f3ebb3e769ac3426fac04aea34ead64faf44',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 51,\n", " 'fips': '22',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 8},\n", " {'date': 20200312,\n", " 'state': 'MA',\n", " 'positive': 95,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 95,\n", " 'hash': 'b532b476555282aedc45041a6c8b983037a328a7',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 95,\n", " 'fips': '25',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200312,\n", " 'state': 'MD',\n", " 'positive': 12,\n", " 'negative': 94,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 106,\n", " 'hash': '3a32b93cc94e23ec885abe681757b279e4d4306c',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 106,\n", " 'fips': '24',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 3},\n", " {'date': 20200312,\n", " 'state': 'ME',\n", " 'positive': 1,\n", " 'negative': 65,\n", " 'pending': 20,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 86,\n", " 'hash': '153713ce5e48b32323339f0de0a45ae72b38663c',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 66,\n", " 'fips': '23',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 23,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 24},\n", " {'date': 20200312,\n", " 'state': 'MI',\n", " 'positive': 2,\n", " 'negative': 91,\n", " 'pending': 27,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 120,\n", " 'hash': '31f38c0d8a1056b29627e89984178c36d1ddaae5',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 93,\n", " 'fips': '26',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 34,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 34},\n", " {'date': 20200312,\n", " 'state': 'MN',\n", " 'positive': 9,\n", " 'negative': 307,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 316,\n", " 'hash': '9e2d6cee1c0d69b11d24f6ca505688ed04b9ef1c',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 316,\n", " 'fips': '27',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 90,\n", " 'positiveIncrease': 4,\n", " 'totalTestResultsIncrease': 94},\n", " {'date': 20200312,\n", " 'state': 'MO',\n", " 'positive': 1,\n", " 'negative': 64,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 65,\n", " 'hash': 'cde5541553985608f06c6660eb28259f2e6c4d91',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 65,\n", " 'fips': '29',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 64,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 64},\n", " {'date': 20200312,\n", " 'state': 'MS',\n", " 'positive': 1,\n", " 'negative': 41,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 42,\n", " 'hash': 'e575a1bb1b0d52ee3a59304b933eb668d3afe643',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 42,\n", " 'fips': '28',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 21,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200312,\n", " 'state': 'MT',\n", " 'positive': 1,\n", " 'negative': 34,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 35,\n", " 'hash': '03da47023e1d08d27c8f59fc7da9734c6186dc2f',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 35,\n", " 'fips': '30',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 13,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 14},\n", " {'date': 20200312,\n", " 'state': 'NC',\n", " 'positive': 12,\n", " 'negative': 60,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 72,\n", " 'hash': 'c824f95b2eef54b26ccfefaa11dc25db18fc7938',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 72,\n", " 'fips': '37',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 60,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 65},\n", " {'date': 20200312,\n", " 'state': 'ND',\n", " 'positive': 1,\n", " 'negative': 12,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 27,\n", " 'hash': 'a63c2d0f02f35983895bd9455a1cb882d081f3d7',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 13,\n", " 'fips': '38',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 5,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 6},\n", " {'date': 20200312,\n", " 'state': 'NE',\n", " 'positive': 10,\n", " 'negative': 80,\n", " 'pending': 33,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 123,\n", " 'hash': 'f9a0866f1d7ad323244515d2c8dbb015a2813d05',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 90,\n", " 'fips': '31',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 33,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 38},\n", " {'date': 20200312,\n", " 'state': 'NH',\n", " 'positive': 6,\n", " 'negative': 94,\n", " 'pending': 21,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 121,\n", " 'hash': 'b07087d6be44c130f15c63c34d36b272cf036c86',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 100,\n", " 'fips': '33',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 56,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 58},\n", " {'date': 20200312,\n", " 'state': 'NJ',\n", " 'positive': 30,\n", " 'negative': 74,\n", " 'pending': 20,\n", " 'hospitalized': None,\n", " 'death': 1,\n", " 'total': 124,\n", " 'hash': 'fd237fbcfa02674c128d670b9aba484dd6d56e31',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 104,\n", " 'fips': '34',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 17,\n", " 'positiveIncrease': 6,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200312,\n", " 'state': 'NM',\n", " 'positive': 5,\n", " 'negative': 155,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 160,\n", " 'hash': 'a7b473ea9d36fd1fb525b33f1e88d0793d183ab7',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 160,\n", " 'fips': '35',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 68,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 70},\n", " {'date': 20200312,\n", " 'state': 'NV',\n", " 'positive': 7,\n", " 'negative': 168,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 175,\n", " 'hash': '85efab81af5bf73753d001b9ff624e9a1c45046b',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 175,\n", " 'fips': '32',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200312,\n", " 'state': 'NY',\n", " 'positive': 216,\n", " 'negative': 92,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 308,\n", " 'hash': 'd57b4b9097165e7d21987a2f82a772b1bdce4d81',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 308,\n", " 'fips': '36',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200312,\n", " 'state': 'OH',\n", " 'positive': 5,\n", " 'negative': 30,\n", " 'pending': 52,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 87,\n", " 'hash': '219cc355e8b672900adf64e0159d174e9d9d7d53',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 35,\n", " 'fips': '39',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 9,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200312,\n", " 'state': 'OK',\n", " 'positive': 3,\n", " 'negative': 36,\n", " 'pending': 4,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 43,\n", " 'hash': 'd1ee6ec78375450d6544e0ed1e5d07614c543500',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 39,\n", " 'fips': '40',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 21,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 22},\n", " {'date': 20200312,\n", " 'state': 'OR',\n", " 'positive': 19,\n", " 'negative': 286,\n", " 'pending': 62,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 367,\n", " 'hash': '8bbae6707b6b8ab6c68c8835332dbc43f5fc89d8',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 305,\n", " 'fips': '41',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200312,\n", " 'state': 'PA',\n", " 'positive': 22,\n", " 'negative': 116,\n", " 'pending': 81,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 219,\n", " 'hash': '3afe76bab9ff316875d8e3e7fb64f62c792f8950',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 138,\n", " 'fips': '42',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 28,\n", " 'positiveIncrease': 7,\n", " 'totalTestResultsIncrease': 35},\n", " {'date': 20200312,\n", " 'state': 'RI',\n", " 'positive': 5,\n", " 'negative': 94,\n", " 'pending': 8,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 107,\n", " 'hash': 'c90b1dc837a0a67aea6829eb3d3f07b1e0ac2a91',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 99,\n", " 'fips': '44',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 36,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200312,\n", " 'state': 'SC',\n", " 'positive': 10,\n", " 'negative': 48,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 58,\n", " 'hash': 'd59f943d0bb15aa3d04b28fb4d98daea75c33415',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 58,\n", " 'fips': '45',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 16,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 17},\n", " {'date': 20200312,\n", " 'state': 'SD',\n", " 'positive': 8,\n", " 'negative': 27,\n", " 'pending': 11,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 46,\n", " 'hash': '13c14d453ee457f366cc26a9338c4bb1004f0149',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 35,\n", " 'fips': '46',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 14,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 17},\n", " {'date': 20200312,\n", " 'state': 'TN',\n", " 'positive': 18,\n", " 'negative': 79,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 97,\n", " 'hash': 'd33fbda921ff21e6fb5f56e2b9e363e2431f37de',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 97,\n", " 'fips': '47',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 29,\n", " 'positiveIncrease': 11,\n", " 'totalTestResultsIncrease': 40},\n", " {'date': 20200312,\n", " 'state': 'TX',\n", " 'positive': 23,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 23,\n", " 'hash': 'f5e2b12cb9f6c066924cb91cdaea2548ad0ca88c',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 23,\n", " 'fips': '48',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200312,\n", " 'state': 'UT',\n", " 'positive': 4,\n", " 'negative': 131,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 135,\n", " 'hash': '23ae89df714945b60edc3d77bfe4031b4b222be1',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 135,\n", " 'fips': '49',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 131,\n", " 'positiveIncrease': 2,\n", " 'totalTestResultsIncrease': 133},\n", " {'date': 20200312,\n", " 'state': 'VA',\n", " 'positive': 17,\n", " 'negative': 117,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 134,\n", " 'hash': '53e6c919c1f6eb34804aade2b1e718b7d1a852b9',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 134,\n", " 'fips': '51',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 57,\n", " 'positiveIncrease': 8,\n", " 'totalTestResultsIncrease': 65},\n", " {'date': 20200312,\n", " 'state': 'VT',\n", " 'positive': 2,\n", " 'negative': 97,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 99,\n", " 'hash': 'b8af9ba2abd78b916c59d16d7904f6d4f16dba5d',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 99,\n", " 'fips': '50',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 35,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 36},\n", " {'date': 20200312,\n", " 'state': 'WA',\n", " 'positive': 337,\n", " 'negative': 3037,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': 29,\n", " 'total': 3374,\n", " 'hash': '7490a6005cf6f2c790ce82aad27cde59d9abc1af',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 3374,\n", " 'fips': '53',\n", " 'deathIncrease': 5,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 862,\n", " 'positiveIncrease': 70,\n", " 'totalTestResultsIncrease': 932},\n", " {'date': 20200312,\n", " 'state': 'WI',\n", " 'positive': 8,\n", " 'negative': 84,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 92,\n", " 'hash': '6deb63a238ba9bd5cd4a1206c84982d831a31933',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 92,\n", " 'fips': '55',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 41,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 46},\n", " {'date': 20200312,\n", " 'state': 'WV',\n", " 'positive': 0,\n", " 'negative': 7,\n", " 'pending': 1,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 8,\n", " 'hash': '803dd127234f8023c6d4b996f3df5ef1420cb38b',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 7,\n", " 'fips': '54',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 4,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 4},\n", " {'date': 20200312,\n", " 'state': 'WY',\n", " 'positive': 1,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1,\n", " 'hash': 'cbd715b6cd612e65820faf574259dac5926f6f87',\n", " 'dateChecked': '2020-03-12T20:00:00Z',\n", " 'totalTestResults': 1,\n", " 'fips': '56',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200311,\n", " 'state': 'AK',\n", " 'positive': 0,\n", " 'negative': 46,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 60,\n", " 'hash': 'de86778bd5dc4230b8859b659a11abe793590461',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 46,\n", " 'fips': '02',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 23,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 23},\n", " {'date': 20200311,\n", " 'state': 'AL',\n", " 'positive': 0,\n", " 'negative': 10,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 10,\n", " 'hash': '19465578826a31e9fd39c124bf882934566bda0d',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 10,\n", " 'fips': '01',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 10,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 10},\n", " {'date': 20200311,\n", " 'state': 'AR',\n", " 'positive': 0,\n", " 'negative': 12,\n", " 'pending': 14,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 26,\n", " 'hash': '1624d0ea46f32b3b22d45c39947f5a2d4cac2697',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 12,\n", " 'fips': '05',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " {'date': 20200311,\n", " 'state': 'AZ',\n", " 'positive': 9,\n", " 'negative': 59,\n", " 'pending': 32,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 100,\n", " 'hash': 'e36a81b5469b680ff54f9f2abfe0fc97f0597760',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 68,\n", " 'fips': '04',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 8,\n", " 'positiveIncrease': 3,\n", " 'totalTestResultsIncrease': 11},\n", " {'date': 20200311,\n", " 'state': 'CA',\n", " 'positive': 157,\n", " 'negative': 916,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 1073,\n", " 'hash': 'fe3ef695de003da99045661f649a0c17cd563577',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 1073,\n", " 'fips': '06',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 226,\n", " 'positiveIncrease': 24,\n", " 'totalTestResultsIncrease': 250},\n", " {'date': 20200311,\n", " 'state': 'CO',\n", " 'positive': 28,\n", " 'negative': 251,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 279,\n", " 'hash': 'e3ed906fefd1b5d0ffc40521a243df0940b4bd93',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 279,\n", " 'fips': '08',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 109,\n", " 'positiveIncrease': 16,\n", " 'totalTestResultsIncrease': 125},\n", " {'date': 20200311,\n", " 'state': 'CT',\n", " 'positive': 3,\n", " 'negative': 71,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 74,\n", " 'hash': 'af5022b77637cd3d37d0104509a15b8623a38809',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 74,\n", " 'fips': '09',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 17,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 18},\n", " {'date': 20200311,\n", " 'state': 'DC',\n", " 'positive': 4,\n", " 'negative': 20,\n", " 'pending': 15,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 39,\n", " 'hash': 'cb35fc66f2e69dc256a2b45b5e56d0c06218cdb4',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 24,\n", " 'fips': '11',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 3,\n", " 'positiveIncrease': -1,\n", " 'totalTestResultsIncrease': 2},\n", " {'date': 20200311,\n", " 'state': 'DE',\n", " 'positive': 1,\n", " 'negative': 17,\n", " 'pending': 2,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 20,\n", " 'hash': '3f52fcd64f5baf05f2b45dc50f9933b00d2a508c',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 18,\n", " 'fips': '10',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 1,\n", " 'totalTestResultsIncrease': 1},\n", " {'date': 20200311,\n", " 'state': 'FL',\n", " 'positive': 28,\n", " 'negative': 301,\n", " 'pending': 147,\n", " 'hospitalized': None,\n", " 'death': 2,\n", " 'total': 476,\n", " 'hash': 'bae462aa471a6aa17912ddd7886266d8d43fbd74',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 329,\n", " 'fips': '12',\n", " 'deathIncrease': 2,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 79,\n", " 'positiveIncrease': 9,\n", " 'totalTestResultsIncrease': 88},\n", " {'date': 20200311,\n", " 'state': 'GA',\n", " 'positive': 22,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 22,\n", " 'hash': '66dcb6cb17d0f6b87f51d9d17dc1b87a8090bfa9',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 22,\n", " 'fips': '13',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 5,\n", " 'totalTestResultsIncrease': 5},\n", " {'date': 20200311,\n", " 'state': 'HI',\n", " 'positive': 2,\n", " 'negative': None,\n", " 'pending': None,\n", " 'hospitalized': None,\n", " 'death': None,\n", " 'total': 2,\n", " 'hash': '2d1b51f7430eddabf27c1ef8adc576e701ca1efb',\n", " 'dateChecked': '2020-03-11T20:00:00Z',\n", " 'totalTestResults': 2,\n", " 'fips': '15',\n", " 'deathIncrease': 0,\n", " 'hospitalizedIncrease': 0,\n", " 'negativeIncrease': 0,\n", " 'positiveIncrease': 0,\n", " 'totalTestResultsIncrease': 0},\n", " ...]" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "testresponse.json()" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
datestatepositivenegativependinghospitalizeddeathtotalhashdateCheckedtotalTestResultsfipsdeathIncreasehospitalizedIncreasenegativeIncreasepositiveIncreasetotalTestResultsIncrease
020200329AK102.03232.0NaN6.02.03334d4c0789e67f59e98176a9ea96200ed348161c6d42020-03-29T20:00:00Z3334020.01.0396.017.0413.0
120200329AL806.04184.0NaNNaN4.049909dbf0b598d35897b1f6857899d0a834990f4ec512020-03-29T20:00:00Z4990011.00.00.0110.0110.0
220200329AR426.03027.0NaN48.06.034532c8ed5059d37cc0aa0d20f4f3066a64db930c6c52020-03-29T20:00:00Z3453051.00.089.022.0111.0
320200329ASNaNNaNNaNNaN0.00f2050b47409f64a09bb4e959284c05d25eca88322020-03-29T20:00:00Z0600.00.00.00.00.0
420200329AZ919.012953.0NaN78.017.01387214deca609d3762fb4b92807785e2b9c7015661e62020-03-29T20:00:00Z13872042.078.05498.046.05544.0
......................................................
131220200304OR3.029.018.0NaNNaN505b37d7f2e6aa9fb39e09270626674b16ce9b51822020-03-04T21:00:00Z3241NaNNaNNaNNaNNaN
131320200304SC0.05.00.0NaNNaN5992c7ca6f8259ac7a323c0b92c27123c671f37732020-03-04T21:00:00Z545NaNNaNNaNNaNNaN
131420200304TX1.0NaNNaNNaNNaN17be175c20e3c9485c14f9764bd90385842df19c32020-03-04T21:00:00Z148NaNNaNNaNNaNNaN
131520200304WA39.0NaNNaNNaNNaN3936ea36bcf282dcc480c83b6f2561810b009bc9512020-03-04T21:00:00Z3953NaNNaNNaNNaNNaN
131620200304WI1.019.06.0NaNNaN260f8cc0d051348c50905a5d5b43ba3c5e238975232020-03-04T21:00:00Z2055NaNNaNNaNNaNNaN
\n", "

1317 rows × 17 columns

\n", "
" ], "text/plain": [ " date state positive negative pending hospitalized death total \\\n", "0 20200329 AK 102.0 3232.0 NaN 6.0 2.0 3334 \n", "1 20200329 AL 806.0 4184.0 NaN NaN 4.0 4990 \n", "2 20200329 AR 426.0 3027.0 NaN 48.0 6.0 3453 \n", "3 20200329 AS NaN NaN NaN NaN 0.0 0 \n", "4 20200329 AZ 919.0 12953.0 NaN 78.0 17.0 13872 \n", "... ... ... ... ... ... ... ... ... \n", "1312 20200304 OR 3.0 29.0 18.0 NaN NaN 50 \n", "1313 20200304 SC 0.0 5.0 0.0 NaN NaN 5 \n", "1314 20200304 TX 1.0 NaN NaN NaN NaN 1 \n", "1315 20200304 WA 39.0 NaN NaN NaN NaN 39 \n", "1316 20200304 WI 1.0 19.0 6.0 NaN NaN 26 \n", "\n", " hash dateChecked \\\n", "0 d4c0789e67f59e98176a9ea96200ed348161c6d4 2020-03-29T20:00:00Z \n", "1 9dbf0b598d35897b1f6857899d0a834990f4ec51 2020-03-29T20:00:00Z \n", "2 2c8ed5059d37cc0aa0d20f4f3066a64db930c6c5 2020-03-29T20:00:00Z \n", "3 f2050b47409f64a09bb4e959284c05d25eca8832 2020-03-29T20:00:00Z \n", "4 14deca609d3762fb4b92807785e2b9c7015661e6 2020-03-29T20:00:00Z \n", "... ... ... \n", "1312 5b37d7f2e6aa9fb39e09270626674b16ce9b5182 2020-03-04T21:00:00Z \n", "1313 992c7ca6f8259ac7a323c0b92c27123c671f3773 2020-03-04T21:00:00Z \n", "1314 7be175c20e3c9485c14f9764bd90385842df19c3 2020-03-04T21:00:00Z \n", "1315 36ea36bcf282dcc480c83b6f2561810b009bc951 2020-03-04T21:00:00Z \n", "1316 0f8cc0d051348c50905a5d5b43ba3c5e23897523 2020-03-04T21:00:00Z \n", "\n", " totalTestResults fips deathIncrease hospitalizedIncrease \\\n", "0 3334 02 0.0 1.0 \n", "1 4990 01 1.0 0.0 \n", "2 3453 05 1.0 0.0 \n", "3 0 60 0.0 0.0 \n", "4 13872 04 2.0 78.0 \n", "... ... ... ... ... \n", "1312 32 41 NaN NaN \n", "1313 5 45 NaN NaN \n", "1314 1 48 NaN NaN \n", "1315 39 53 NaN NaN \n", "1316 20 55 NaN NaN \n", "\n", " negativeIncrease positiveIncrease totalTestResultsIncrease \n", "0 396.0 17.0 413.0 \n", "1 0.0 110.0 110.0 \n", "2 89.0 22.0 111.0 \n", "3 0.0 0.0 0.0 \n", "4 5498.0 46.0 5544.0 \n", "... ... ... ... \n", "1312 NaN NaN NaN \n", "1313 NaN NaN NaN \n", "1314 NaN NaN NaN \n", "1315 NaN NaN NaN \n", "1316 NaN NaN NaN \n", "\n", "[1317 rows x 17 columns]" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tests = pd.DataFrame(testresponse.json())\n", "tests" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
datestatepositivenegativependinghospitalizeddeathtotalhashdateCheckedtotalTestResultsfipsdeathIncreasehospitalizedIncreasenegativeIncreasepositiveIncreasetotalTestResultsIncrease
020200329AK102.03232.0NaN6.02.03334d4c0789e67f59e98176a9ea96200ed348161c6d42020-03-29 20:00:00+00:003334020.01.0396.017.0413.0
120200329AL806.04184.0NaNNaN4.049909dbf0b598d35897b1f6857899d0a834990f4ec512020-03-29 20:00:00+00:004990011.00.00.0110.0110.0
220200329AR426.03027.0NaN48.06.034532c8ed5059d37cc0aa0d20f4f3066a64db930c6c52020-03-29 20:00:00+00:003453051.00.089.022.0111.0
320200329ASNaNNaNNaNNaN0.00f2050b47409f64a09bb4e959284c05d25eca88322020-03-29 20:00:00+00:000600.00.00.00.00.0
420200329AZ919.012953.0NaN78.017.01387214deca609d3762fb4b92807785e2b9c7015661e62020-03-29 20:00:00+00:0013872042.078.05498.046.05544.0
......................................................
131220200304OR3.029.018.0NaNNaN505b37d7f2e6aa9fb39e09270626674b16ce9b51822020-03-04 21:00:00+00:003241NaNNaNNaNNaNNaN
131320200304SC0.05.00.0NaNNaN5992c7ca6f8259ac7a323c0b92c27123c671f37732020-03-04 21:00:00+00:00545NaNNaNNaNNaNNaN
131420200304TX1.0NaNNaNNaNNaN17be175c20e3c9485c14f9764bd90385842df19c32020-03-04 21:00:00+00:00148NaNNaNNaNNaNNaN
131520200304WA39.0NaNNaNNaNNaN3936ea36bcf282dcc480c83b6f2561810b009bc9512020-03-04 21:00:00+00:003953NaNNaNNaNNaNNaN
131620200304WI1.019.06.0NaNNaN260f8cc0d051348c50905a5d5b43ba3c5e238975232020-03-04 21:00:00+00:002055NaNNaNNaNNaNNaN
\n", "

1317 rows × 17 columns

\n", "
" ], "text/plain": [ " date state positive negative pending hospitalized death total \\\n", "0 20200329 AK 102.0 3232.0 NaN 6.0 2.0 3334 \n", "1 20200329 AL 806.0 4184.0 NaN NaN 4.0 4990 \n", "2 20200329 AR 426.0 3027.0 NaN 48.0 6.0 3453 \n", "3 20200329 AS NaN NaN NaN NaN 0.0 0 \n", "4 20200329 AZ 919.0 12953.0 NaN 78.0 17.0 13872 \n", "... ... ... ... ... ... ... ... ... \n", "1312 20200304 OR 3.0 29.0 18.0 NaN NaN 50 \n", "1313 20200304 SC 0.0 5.0 0.0 NaN NaN 5 \n", "1314 20200304 TX 1.0 NaN NaN NaN NaN 1 \n", "1315 20200304 WA 39.0 NaN NaN NaN NaN 39 \n", "1316 20200304 WI 1.0 19.0 6.0 NaN NaN 26 \n", "\n", " hash dateChecked \\\n", "0 d4c0789e67f59e98176a9ea96200ed348161c6d4 2020-03-29 20:00:00+00:00 \n", "1 9dbf0b598d35897b1f6857899d0a834990f4ec51 2020-03-29 20:00:00+00:00 \n", "2 2c8ed5059d37cc0aa0d20f4f3066a64db930c6c5 2020-03-29 20:00:00+00:00 \n", "3 f2050b47409f64a09bb4e959284c05d25eca8832 2020-03-29 20:00:00+00:00 \n", "4 14deca609d3762fb4b92807785e2b9c7015661e6 2020-03-29 20:00:00+00:00 \n", "... ... ... \n", "1312 5b37d7f2e6aa9fb39e09270626674b16ce9b5182 2020-03-04 21:00:00+00:00 \n", "1313 992c7ca6f8259ac7a323c0b92c27123c671f3773 2020-03-04 21:00:00+00:00 \n", "1314 7be175c20e3c9485c14f9764bd90385842df19c3 2020-03-04 21:00:00+00:00 \n", "1315 36ea36bcf282dcc480c83b6f2561810b009bc951 2020-03-04 21:00:00+00:00 \n", "1316 0f8cc0d051348c50905a5d5b43ba3c5e23897523 2020-03-04 21:00:00+00:00 \n", "\n", " totalTestResults fips deathIncrease hospitalizedIncrease \\\n", "0 3334 02 0.0 1.0 \n", "1 4990 01 1.0 0.0 \n", "2 3453 05 1.0 0.0 \n", "3 0 60 0.0 0.0 \n", "4 13872 04 2.0 78.0 \n", "... ... ... ... ... \n", "1312 32 41 NaN NaN \n", "1313 5 45 NaN NaN \n", "1314 1 48 NaN NaN \n", "1315 39 53 NaN NaN \n", "1316 20 55 NaN NaN \n", "\n", " negativeIncrease positiveIncrease totalTestResultsIncrease \n", "0 396.0 17.0 413.0 \n", "1 0.0 110.0 110.0 \n", "2 89.0 22.0 111.0 \n", "3 0.0 0.0 0.0 \n", "4 5498.0 46.0 5544.0 \n", "... ... ... ... \n", "1312 NaN NaN NaN \n", "1313 NaN NaN NaN \n", "1314 NaN NaN NaN \n", "1315 NaN NaN NaN \n", "1316 NaN NaN NaN \n", "\n", "[1317 rows x 17 columns]" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tests['dateChecked'] = pd.to_datetime(tests['dateChecked'])\n", "tests" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
datestatepositivenegativependinghospitalizeddeathtotalhashdateCheckedtotalTestResultsfipsdeathIncreasehospitalizedIncreasenegativeIncreasepositiveIncreasetotalTestResultsIncrease
020200329AK102.03232.0NaN6.02.03334d4c0789e67f59e98176a9ea96200ed348161c6d42020-03-29 20:00:00+00:003334020.01.0396.017.0413.0
120200329AL806.04184.0NaNNaN4.049909dbf0b598d35897b1f6857899d0a834990f4ec512020-03-29 20:00:00+00:004990011.00.00.0110.0110.0
220200329AR426.03027.0NaN48.06.034532c8ed5059d37cc0aa0d20f4f3066a64db930c6c52020-03-29 20:00:00+00:003453051.00.089.022.0111.0
320200329ASNaNNaNNaNNaN0.00f2050b47409f64a09bb4e959284c05d25eca88322020-03-29 20:00:00+00:000600.00.00.00.00.0
420200329AZ919.012953.0NaN78.017.01387214deca609d3762fb4b92807785e2b9c7015661e62020-03-29 20:00:00+00:0013872042.078.05498.046.05544.0
520200329CA5708.020549.064400.01034.0123.090657c364ec885909accfd4baf8e2d329903900870ba92020-03-29 20:00:00+00:00262570622.00.00.01065.01065.0
620200329CO2061.011215.0NaN274.044.01327610769183d6c8ae4f67d7694c1e90e053315457ad2020-03-29 20:00:00+00:00132760813.035.01273.0327.01600.0
720200329CT1993.09907.0NaN404.034.011900a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e2020-03-29 20:00:00+00:0011900097.0231.02798.0702.03500.0
820200329DC342.02469.01.0NaN5.02812951af61bdce7b51bbfb818f7d11e3865a59e31ae2020-03-29 20:00:00+00:002811111.00.0258.038.0296.0
920200329DE232.036.0NaN33.06.0268ba8edd92448c4db2b977c3e519df1d6421968cd12020-03-29 20:00:00+00:00268103.02.00.018.018.0
1020200329FL4246.039070.0NaN594.056.0433168ce3ce4c8ee42dd4925356994534079c50bc67ca2020-03-29 20:00:00+00:0043316122.068.03704.0483.04187.0
1120200329GA2651.09913.0NaN666.080.0125647d692c3fbf28e3dbfdd58fc99dace80c1a9958d22020-03-29 20:00:00+00:00125641311.049.01228.0285.01513.0
1220200329GU56.0334.0NaN15.01.0390c375c6bdc73751dd51ba6d5889c9e84d533035102020-03-29 20:00:00+00:00390660.00.035.01.036.0
1320200329HI151.06849.04.012.00.07004f9ea13c2d669a5af5e440577fd13339db609c58d2020-03-29 20:00:00+00:007000150.04.02492.031.02523.0
1420200329IA336.05013.0NaN68.04.053490e8a6c975f6cdda9eb1f68596e52293afbfba37e2020-03-29 20:00:00+00:005349191.07.0638.038.0676.0
1520200329ID261.04021.0NaN36.05.04282e58918bfa4321b0a6884b02c3ff7761ec4778e6b2020-03-29 20:00:00+00:004282161.011.0679.031.0710.0
1620200329IL4596.023166.0NaNNaN65.027762e6e6b00bdc70ca71fc14b3056568dfc40097d7502020-03-29 20:00:00+00:00277621718.00.01166.01105.02271.0
1720200329IN1514.08316.0NaNNaN32.09830659e4aad9785c14cf15e898f481aebda271e73e32020-03-29 20:00:00+00:009830181.00.01141.0282.01423.0
1820200329KS319.04194.0NaN55.06.04513be3c8cd4ff2e10e3092723512f8ea5a03ec9d4862020-03-29 20:00:00+00:004513201.028.0523.058.0581.0
1920200329KY394.05147.0NaNNaN9.05541563d46bc3630e17fd60499a2115df267a8645ae02020-03-29 20:00:00+00:005541211.00.0326.092.0418.0
2020200329LA3540.024331.0NaN1127.0151.02787138b4d0f6b224b46b63a1c01841b1d1385a2a37422020-03-29 20:00:00+00:00278712214.0200.02485.0225.02710.0
2120200329MA4955.034111.0NaN399.048.03906685320d5eb34b32da6ffe44dfb937835574a335a12020-03-29 20:00:00+00:0039066254.049.03319.0698.04017.0
2220200329MD1239.012354.0NaN277.010.013593b017ab05576951a20e7c57f1faf56b614bc443f12020-03-29 20:00:00+00:0013593245.051.0838.0247.01085.0
2320200329ME253.03394.0NaNNaN3.036472e6f8d654325315d3ff90837e0355efb83712cdb2020-03-29 20:00:00+00:003647232.00.00.042.042.0
2420200329MI5486.011893.0NaNNaN132.01737925fd0b3fada36382067e735f2ea785fcbb58376a2020-03-29 20:00:00+00:00173792640.00.02784.01829.04613.0
2520200329MN503.017154.0NaN75.09.017657a7684a9182a0b32142849036fecf82ec7701d8a32020-03-29 20:00:00+00:0017657274.018.01466.062.01528.0
2620200329MO838.011547.0NaNNaN10.012385228bc579fa237f56c7e55fd2dd8f9bfe9d410b202020-03-29 20:00:00+00:0012385290.00.01465.00.01465.0
2720200329MP2.0NaNNaNNaNNaN28499fa1ff060f43b78b442e20c46c954955343852020-03-29 20:00:00+00:002690.00.00.00.00.0
2820200329MS758.02560.0NaN235.014.03318daa6037b61ae96e6c2526a155139e7e732cd03682020-03-29 20:00:00+00:003318281.016.00.095.095.0
2920200329MT154.04143.0NaN8.01.04297d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee2020-03-29 20:00:00+00:004297300.01.0887.025.0912.0
3020200329NC1040.017905.0NaN91.04.01894594c103bb6dc3385d5a5f366a0913180f83223df82020-03-29 20:00:00+00:0018945370.04.01313.0105.01418.0
3120200329ND98.03355.0NaN17.01.034532c4c2aa7b34f5a07b885b9fe64752fa44d9decb52020-03-29 20:00:00+00:003453380.01.0546.015.0561.0
3220200329NE108.01968.04.0NaN2.0208044e85c9c9b448faa6a1b8a6af39c84820610bff02020-03-29 20:00:00+00:002076310.00.064.012.076.0
3320200329NH214.04524.0285.033.02.050235602e725da5424f5efebbaa8e3b8ac7c71a21d532020-03-29 20:00:00+00:004738330.03.0868.027.0895.0
3420200329NJ13386.022216.0NaNNaN161.0356025e0cce3ce15a05bc385736f7f690e041feb4f2d92020-03-29 20:00:00+00:00356023421.00.02830.02262.05092.0
3520200329NM237.010769.0NaN19.02.011006c76b9199e33fb36ea9e9509cce54c2ad94146dfd2020-03-29 20:00:00+00:0011006351.02.01573.046.01619.0
3620200329NV738.08412.0NaNNaN14.09150d0408e54d643518f6c0b61bd367061c20ea693272020-03-29 20:00:00+00:009150324.00.0511.0117.0628.0
3720200329NY59513.0112847.0NaN12075.0965.0172360ba807849425122f97cff754bfca452232a1e75ce2020-03-29 20:00:00+00:0017236036237.02021.09231.07195.016426.0
3820200329OH1653.019012.0NaN403.029.020665bf97498f0e2f4741137db5392baa1abf5648979f2020-03-29 20:00:00+00:0020665394.059.00.0247.0247.0
3920200329OK429.01205.0NaN140.016.0163443ef7985bd9555698d09d6a950875ade320286df2020-03-29 20:00:00+00:001634401.014.025.052.077.0
4020200329OR548.010878.0NaN129.013.011426ec860456b55d5a18391c8cbf2748ea02bf908fd22020-03-29 20:00:00+00:0011426410.012.01185.069.01254.0
4120200329PA3394.030061.0NaN682.038.033455ad1df7816ad6d19a996749d630bc38345291f26e2020-03-29 20:00:00+00:0033455424.00.04807.0643.05450.0
4220200329PR127.0841.0817.0NaN5.017855b8d867a604216d7e456141b6f80f93183e22f2c2020-03-29 20:00:00+00:00968722.00.0102.027.0129.0
4320200329RI294.02541.0NaN35.03.02835a4d42dba093e9b91662dc7547081bffbecd06bef2020-03-29 20:00:00+00:002835443.07.0235.091.0326.0
4420200329SC774.03015.0NaN129.016.03789b85a9aaa3da2d62f633714b4d08f409109f52bb42020-03-29 20:00:00+00:003789453.00.0607.0235.0842.0
4520200329SD90.03127.01.0NaN1.032182ecdd93c12093321637eb882b51f779ef2269d3a2020-03-29 20:00:00+00:003217460.00.0535.022.0557.0
4620200329TN1537.019037.0NaN133.07.020574c928e23a1549ab46b5a78ea8b86ea8fa727ca05f2020-03-29 20:00:00+00:0020574471.015.02072.0164.02236.0
4720200329TX2552.023208.0NaNNaN34.02576038db35dbc7abd19b31e25fa9eaa4165ad5eece4a2020-03-29 20:00:00+00:0025760487.00.00.0500.0500.0
4820200329UT719.013274.0NaNNaN2.0139937da47dee17adc7161be7aeefa3d507b3bc735edf2020-03-29 20:00:00+00:0013993490.00.02564.0117.02681.0
4920200329VA890.09719.0NaN112.022.01060966ebeae58d1a5e123904bd7f39d840dbe24449c22020-03-29 20:00:00+00:0010609515.013.01292.0151.01443.0
5020200329VI23.0123.037.0NaNNaN18315a59f27f2acd69bd9c1e95a02de01c044339d2f2020-03-29 20:00:00+00:00146780.00.017.01.018.0
5120200329VT235.03466.0NaN18.012.0370190a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e2020-03-29 20:00:00+00:003701500.00.01303.024.01327.0
5220200329WA4310.054896.0NaN254.0189.05920602bb082a97f1ddda79562a855dd090e632e2e5e92020-03-29 20:00:00+00:00592065314.00.05881.0587.06468.0
5320200329WI1112.016550.0NaNNaN13.0176622cd5d65e6cf10a667f00fe96ffd78eb8507131292020-03-29 20:00:00+00:0017662550.00.01318.0123.01441.0
5420200329WV113.02705.00.01.00.02818626ca2fdd89b005a3d3b606376e4ac5fd2a4772c2020-03-29 20:00:00+00:002818540.00.0374.017.0391.0
5520200329WY86.01554.0NaN15.00.01640e6365afc2c29afd4168c8d82cd573124272811402020-03-29 20:00:00+00:001640560.01.079.04.083.0
\n", "
" ], "text/plain": [ " date state positive negative pending hospitalized death total \\\n", "0 20200329 AK 102.0 3232.0 NaN 6.0 2.0 3334 \n", "1 20200329 AL 806.0 4184.0 NaN NaN 4.0 4990 \n", "2 20200329 AR 426.0 3027.0 NaN 48.0 6.0 3453 \n", "3 20200329 AS NaN NaN NaN NaN 0.0 0 \n", "4 20200329 AZ 919.0 12953.0 NaN 78.0 17.0 13872 \n", "5 20200329 CA 5708.0 20549.0 64400.0 1034.0 123.0 90657 \n", "6 20200329 CO 2061.0 11215.0 NaN 274.0 44.0 13276 \n", "7 20200329 CT 1993.0 9907.0 NaN 404.0 34.0 11900 \n", "8 20200329 DC 342.0 2469.0 1.0 NaN 5.0 2812 \n", "9 20200329 DE 232.0 36.0 NaN 33.0 6.0 268 \n", "10 20200329 FL 4246.0 39070.0 NaN 594.0 56.0 43316 \n", "11 20200329 GA 2651.0 9913.0 NaN 666.0 80.0 12564 \n", "12 20200329 GU 56.0 334.0 NaN 15.0 1.0 390 \n", "13 20200329 HI 151.0 6849.0 4.0 12.0 0.0 7004 \n", "14 20200329 IA 336.0 5013.0 NaN 68.0 4.0 5349 \n", "15 20200329 ID 261.0 4021.0 NaN 36.0 5.0 4282 \n", "16 20200329 IL 4596.0 23166.0 NaN NaN 65.0 27762 \n", "17 20200329 IN 1514.0 8316.0 NaN NaN 32.0 9830 \n", "18 20200329 KS 319.0 4194.0 NaN 55.0 6.0 4513 \n", "19 20200329 KY 394.0 5147.0 NaN NaN 9.0 5541 \n", "20 20200329 LA 3540.0 24331.0 NaN 1127.0 151.0 27871 \n", "21 20200329 MA 4955.0 34111.0 NaN 399.0 48.0 39066 \n", "22 20200329 MD 1239.0 12354.0 NaN 277.0 10.0 13593 \n", "23 20200329 ME 253.0 3394.0 NaN NaN 3.0 3647 \n", "24 20200329 MI 5486.0 11893.0 NaN NaN 132.0 17379 \n", "25 20200329 MN 503.0 17154.0 NaN 75.0 9.0 17657 \n", "26 20200329 MO 838.0 11547.0 NaN NaN 10.0 12385 \n", "27 20200329 MP 2.0 NaN NaN NaN NaN 2 \n", "28 20200329 MS 758.0 2560.0 NaN 235.0 14.0 3318 \n", "29 20200329 MT 154.0 4143.0 NaN 8.0 1.0 4297 \n", "30 20200329 NC 1040.0 17905.0 NaN 91.0 4.0 18945 \n", "31 20200329 ND 98.0 3355.0 NaN 17.0 1.0 3453 \n", "32 20200329 NE 108.0 1968.0 4.0 NaN 2.0 2080 \n", "33 20200329 NH 214.0 4524.0 285.0 33.0 2.0 5023 \n", "34 20200329 NJ 13386.0 22216.0 NaN NaN 161.0 35602 \n", "35 20200329 NM 237.0 10769.0 NaN 19.0 2.0 11006 \n", "36 20200329 NV 738.0 8412.0 NaN NaN 14.0 9150 \n", "37 20200329 NY 59513.0 112847.0 NaN 12075.0 965.0 172360 \n", "38 20200329 OH 1653.0 19012.0 NaN 403.0 29.0 20665 \n", "39 20200329 OK 429.0 1205.0 NaN 140.0 16.0 1634 \n", "40 20200329 OR 548.0 10878.0 NaN 129.0 13.0 11426 \n", "41 20200329 PA 3394.0 30061.0 NaN 682.0 38.0 33455 \n", "42 20200329 PR 127.0 841.0 817.0 NaN 5.0 1785 \n", "43 20200329 RI 294.0 2541.0 NaN 35.0 3.0 2835 \n", "44 20200329 SC 774.0 3015.0 NaN 129.0 16.0 3789 \n", "45 20200329 SD 90.0 3127.0 1.0 NaN 1.0 3218 \n", "46 20200329 TN 1537.0 19037.0 NaN 133.0 7.0 20574 \n", "47 20200329 TX 2552.0 23208.0 NaN NaN 34.0 25760 \n", "48 20200329 UT 719.0 13274.0 NaN NaN 2.0 13993 \n", "49 20200329 VA 890.0 9719.0 NaN 112.0 22.0 10609 \n", "50 20200329 VI 23.0 123.0 37.0 NaN NaN 183 \n", "51 20200329 VT 235.0 3466.0 NaN 18.0 12.0 3701 \n", "52 20200329 WA 4310.0 54896.0 NaN 254.0 189.0 59206 \n", "53 20200329 WI 1112.0 16550.0 NaN NaN 13.0 17662 \n", "54 20200329 WV 113.0 2705.0 0.0 1.0 0.0 2818 \n", "55 20200329 WY 86.0 1554.0 NaN 15.0 0.0 1640 \n", "\n", " hash dateChecked \\\n", "0 d4c0789e67f59e98176a9ea96200ed348161c6d4 2020-03-29 20:00:00+00:00 \n", "1 9dbf0b598d35897b1f6857899d0a834990f4ec51 2020-03-29 20:00:00+00:00 \n", "2 2c8ed5059d37cc0aa0d20f4f3066a64db930c6c5 2020-03-29 20:00:00+00:00 \n", "3 f2050b47409f64a09bb4e959284c05d25eca8832 2020-03-29 20:00:00+00:00 \n", "4 14deca609d3762fb4b92807785e2b9c7015661e6 2020-03-29 20:00:00+00:00 \n", "5 c364ec885909accfd4baf8e2d329903900870ba9 2020-03-29 20:00:00+00:00 \n", "6 10769183d6c8ae4f67d7694c1e90e053315457ad 2020-03-29 20:00:00+00:00 \n", "7 a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e 2020-03-29 20:00:00+00:00 \n", "8 951af61bdce7b51bbfb818f7d11e3865a59e31ae 2020-03-29 20:00:00+00:00 \n", "9 ba8edd92448c4db2b977c3e519df1d6421968cd1 2020-03-29 20:00:00+00:00 \n", "10 8ce3ce4c8ee42dd4925356994534079c50bc67ca 2020-03-29 20:00:00+00:00 \n", "11 7d692c3fbf28e3dbfdd58fc99dace80c1a9958d2 2020-03-29 20:00:00+00:00 \n", "12 c375c6bdc73751dd51ba6d5889c9e84d53303510 2020-03-29 20:00:00+00:00 \n", "13 f9ea13c2d669a5af5e440577fd13339db609c58d 2020-03-29 20:00:00+00:00 \n", "14 0e8a6c975f6cdda9eb1f68596e52293afbfba37e 2020-03-29 20:00:00+00:00 \n", "15 e58918bfa4321b0a6884b02c3ff7761ec4778e6b 2020-03-29 20:00:00+00:00 \n", "16 e6e6b00bdc70ca71fc14b3056568dfc40097d750 2020-03-29 20:00:00+00:00 \n", "17 659e4aad9785c14cf15e898f481aebda271e73e3 2020-03-29 20:00:00+00:00 \n", "18 be3c8cd4ff2e10e3092723512f8ea5a03ec9d486 2020-03-29 20:00:00+00:00 \n", "19 563d46bc3630e17fd60499a2115df267a8645ae0 2020-03-29 20:00:00+00:00 \n", "20 38b4d0f6b224b46b63a1c01841b1d1385a2a3742 2020-03-29 20:00:00+00:00 \n", "21 85320d5eb34b32da6ffe44dfb937835574a335a1 2020-03-29 20:00:00+00:00 \n", "22 b017ab05576951a20e7c57f1faf56b614bc443f1 2020-03-29 20:00:00+00:00 \n", "23 2e6f8d654325315d3ff90837e0355efb83712cdb 2020-03-29 20:00:00+00:00 \n", "24 25fd0b3fada36382067e735f2ea785fcbb58376a 2020-03-29 20:00:00+00:00 \n", "25 a7684a9182a0b32142849036fecf82ec7701d8a3 2020-03-29 20:00:00+00:00 \n", "26 228bc579fa237f56c7e55fd2dd8f9bfe9d410b20 2020-03-29 20:00:00+00:00 \n", "27 8499fa1ff060f43b78b442e20c46c95495534385 2020-03-29 20:00:00+00:00 \n", "28 daa6037b61ae96e6c2526a155139e7e732cd0368 2020-03-29 20:00:00+00:00 \n", "29 d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee 2020-03-29 20:00:00+00:00 \n", "30 94c103bb6dc3385d5a5f366a0913180f83223df8 2020-03-29 20:00:00+00:00 \n", "31 2c4c2aa7b34f5a07b885b9fe64752fa44d9decb5 2020-03-29 20:00:00+00:00 \n", "32 44e85c9c9b448faa6a1b8a6af39c84820610bff0 2020-03-29 20:00:00+00:00 \n", "33 5602e725da5424f5efebbaa8e3b8ac7c71a21d53 2020-03-29 20:00:00+00:00 \n", "34 5e0cce3ce15a05bc385736f7f690e041feb4f2d9 2020-03-29 20:00:00+00:00 \n", "35 c76b9199e33fb36ea9e9509cce54c2ad94146dfd 2020-03-29 20:00:00+00:00 \n", "36 d0408e54d643518f6c0b61bd367061c20ea69327 2020-03-29 20:00:00+00:00 \n", "37 ba807849425122f97cff754bfca452232a1e75ce 2020-03-29 20:00:00+00:00 \n", "38 bf97498f0e2f4741137db5392baa1abf5648979f 2020-03-29 20:00:00+00:00 \n", "39 43ef7985bd9555698d09d6a950875ade320286df 2020-03-29 20:00:00+00:00 \n", "40 ec860456b55d5a18391c8cbf2748ea02bf908fd2 2020-03-29 20:00:00+00:00 \n", "41 ad1df7816ad6d19a996749d630bc38345291f26e 2020-03-29 20:00:00+00:00 \n", "42 5b8d867a604216d7e456141b6f80f93183e22f2c 2020-03-29 20:00:00+00:00 \n", "43 a4d42dba093e9b91662dc7547081bffbecd06bef 2020-03-29 20:00:00+00:00 \n", "44 b85a9aaa3da2d62f633714b4d08f409109f52bb4 2020-03-29 20:00:00+00:00 \n", "45 2ecdd93c12093321637eb882b51f779ef2269d3a 2020-03-29 20:00:00+00:00 \n", "46 c928e23a1549ab46b5a78ea8b86ea8fa727ca05f 2020-03-29 20:00:00+00:00 \n", "47 38db35dbc7abd19b31e25fa9eaa4165ad5eece4a 2020-03-29 20:00:00+00:00 \n", "48 7da47dee17adc7161be7aeefa3d507b3bc735edf 2020-03-29 20:00:00+00:00 \n", "49 66ebeae58d1a5e123904bd7f39d840dbe24449c2 2020-03-29 20:00:00+00:00 \n", "50 15a59f27f2acd69bd9c1e95a02de01c044339d2f 2020-03-29 20:00:00+00:00 \n", "51 90a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e 2020-03-29 20:00:00+00:00 \n", "52 02bb082a97f1ddda79562a855dd090e632e2e5e9 2020-03-29 20:00:00+00:00 \n", "53 2cd5d65e6cf10a667f00fe96ffd78eb850713129 2020-03-29 20:00:00+00:00 \n", "54 626ca2fdd89b005a3d3b606376e4ac5fd2a4772c 2020-03-29 20:00:00+00:00 \n", "55 e6365afc2c29afd4168c8d82cd57312427281140 2020-03-29 20:00:00+00:00 \n", "\n", " totalTestResults fips deathIncrease hospitalizedIncrease \\\n", "0 3334 02 0.0 1.0 \n", "1 4990 01 1.0 0.0 \n", "2 3453 05 1.0 0.0 \n", "3 0 60 0.0 0.0 \n", "4 13872 04 2.0 78.0 \n", "5 26257 06 22.0 0.0 \n", "6 13276 08 13.0 35.0 \n", "7 11900 09 7.0 231.0 \n", "8 2811 11 1.0 0.0 \n", "9 268 10 3.0 2.0 \n", "10 43316 12 2.0 68.0 \n", "11 12564 13 11.0 49.0 \n", "12 390 66 0.0 0.0 \n", "13 7000 15 0.0 4.0 \n", "14 5349 19 1.0 7.0 \n", "15 4282 16 1.0 11.0 \n", "16 27762 17 18.0 0.0 \n", "17 9830 18 1.0 0.0 \n", "18 4513 20 1.0 28.0 \n", "19 5541 21 1.0 0.0 \n", "20 27871 22 14.0 200.0 \n", "21 39066 25 4.0 49.0 \n", "22 13593 24 5.0 51.0 \n", "23 3647 23 2.0 0.0 \n", "24 17379 26 40.0 0.0 \n", "25 17657 27 4.0 18.0 \n", "26 12385 29 0.0 0.0 \n", "27 2 69 0.0 0.0 \n", "28 3318 28 1.0 16.0 \n", "29 4297 30 0.0 1.0 \n", "30 18945 37 0.0 4.0 \n", "31 3453 38 0.0 1.0 \n", "32 2076 31 0.0 0.0 \n", "33 4738 33 0.0 3.0 \n", "34 35602 34 21.0 0.0 \n", "35 11006 35 1.0 2.0 \n", "36 9150 32 4.0 0.0 \n", "37 172360 36 237.0 2021.0 \n", "38 20665 39 4.0 59.0 \n", "39 1634 40 1.0 14.0 \n", "40 11426 41 0.0 12.0 \n", "41 33455 42 4.0 0.0 \n", "42 968 72 2.0 0.0 \n", "43 2835 44 3.0 7.0 \n", "44 3789 45 3.0 0.0 \n", "45 3217 46 0.0 0.0 \n", "46 20574 47 1.0 15.0 \n", "47 25760 48 7.0 0.0 \n", "48 13993 49 0.0 0.0 \n", "49 10609 51 5.0 13.0 \n", "50 146 78 0.0 0.0 \n", "51 3701 50 0.0 0.0 \n", "52 59206 53 14.0 0.0 \n", "53 17662 55 0.0 0.0 \n", "54 2818 54 0.0 0.0 \n", "55 1640 56 0.0 1.0 \n", "\n", " negativeIncrease positiveIncrease totalTestResultsIncrease \n", "0 396.0 17.0 413.0 \n", "1 0.0 110.0 110.0 \n", "2 89.0 22.0 111.0 \n", "3 0.0 0.0 0.0 \n", "4 5498.0 46.0 5544.0 \n", "5 0.0 1065.0 1065.0 \n", "6 1273.0 327.0 1600.0 \n", "7 2798.0 702.0 3500.0 \n", "8 258.0 38.0 296.0 \n", "9 0.0 18.0 18.0 \n", "10 3704.0 483.0 4187.0 \n", "11 1228.0 285.0 1513.0 \n", "12 35.0 1.0 36.0 \n", "13 2492.0 31.0 2523.0 \n", "14 638.0 38.0 676.0 \n", "15 679.0 31.0 710.0 \n", "16 1166.0 1105.0 2271.0 \n", "17 1141.0 282.0 1423.0 \n", "18 523.0 58.0 581.0 \n", "19 326.0 92.0 418.0 \n", "20 2485.0 225.0 2710.0 \n", "21 3319.0 698.0 4017.0 \n", "22 838.0 247.0 1085.0 \n", "23 0.0 42.0 42.0 \n", "24 2784.0 1829.0 4613.0 \n", "25 1466.0 62.0 1528.0 \n", "26 1465.0 0.0 1465.0 \n", "27 0.0 0.0 0.0 \n", "28 0.0 95.0 95.0 \n", "29 887.0 25.0 912.0 \n", "30 1313.0 105.0 1418.0 \n", "31 546.0 15.0 561.0 \n", "32 64.0 12.0 76.0 \n", "33 868.0 27.0 895.0 \n", "34 2830.0 2262.0 5092.0 \n", "35 1573.0 46.0 1619.0 \n", "36 511.0 117.0 628.0 \n", "37 9231.0 7195.0 16426.0 \n", "38 0.0 247.0 247.0 \n", "39 25.0 52.0 77.0 \n", "40 1185.0 69.0 1254.0 \n", "41 4807.0 643.0 5450.0 \n", "42 102.0 27.0 129.0 \n", "43 235.0 91.0 326.0 \n", "44 607.0 235.0 842.0 \n", "45 535.0 22.0 557.0 \n", "46 2072.0 164.0 2236.0 \n", "47 0.0 500.0 500.0 \n", "48 2564.0 117.0 2681.0 \n", "49 1292.0 151.0 1443.0 \n", "50 17.0 1.0 18.0 \n", "51 1303.0 24.0 1327.0 \n", "52 5881.0 587.0 6468.0 \n", "53 1318.0 123.0 1441.0 \n", "54 374.0 17.0 391.0 \n", "55 79.0 4.0 83.0 " ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "latest = tests.loc[tests.groupby('state').dateChecked.idxmax()]\n", "latest" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
datestatepositivenegativependinghospitalizeddeathtotalhashdateCheckedtotalTestResultsfipsdeathIncreasehospitalizedIncreasenegativeIncreasepositiveIncreasetotalTestResultsIncreaseposrate
020200329AK102.03232.0NaN6.02.03334d4c0789e67f59e98176a9ea96200ed348161c6d42020-03-29 20:00:00+00:003334020.01.0396.017.0413.00.030594
120200329AL806.04184.0NaNNaN4.049909dbf0b598d35897b1f6857899d0a834990f4ec512020-03-29 20:00:00+00:004990011.00.00.0110.0110.00.161523
220200329AR426.03027.0NaN48.06.034532c8ed5059d37cc0aa0d20f4f3066a64db930c6c52020-03-29 20:00:00+00:003453051.00.089.022.0111.00.123371
420200329AZ919.012953.0NaN78.017.01387214deca609d3762fb4b92807785e2b9c7015661e62020-03-29 20:00:00+00:0013872042.078.05498.046.05544.00.066249
520200329CA5708.020549.064400.01034.0123.090657c364ec885909accfd4baf8e2d329903900870ba92020-03-29 20:00:00+00:00262570622.00.00.01065.01065.00.062963
620200329CO2061.011215.0NaN274.044.01327610769183d6c8ae4f67d7694c1e90e053315457ad2020-03-29 20:00:00+00:00132760813.035.01273.0327.01600.00.155243
720200329CT1993.09907.0NaN404.034.011900a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e2020-03-29 20:00:00+00:0011900097.0231.02798.0702.03500.00.167479
820200329DC342.02469.01.0NaN5.02812951af61bdce7b51bbfb818f7d11e3865a59e31ae2020-03-29 20:00:00+00:002811111.00.0258.038.0296.00.121622
920200329DE232.036.0NaN33.06.0268ba8edd92448c4db2b977c3e519df1d6421968cd12020-03-29 20:00:00+00:00268103.02.00.018.018.00.865672
1020200329FL4246.039070.0NaN594.056.0433168ce3ce4c8ee42dd4925356994534079c50bc67ca2020-03-29 20:00:00+00:0043316122.068.03704.0483.04187.00.098024
1120200329GA2651.09913.0NaN666.080.0125647d692c3fbf28e3dbfdd58fc99dace80c1a9958d22020-03-29 20:00:00+00:00125641311.049.01228.0285.01513.00.211000
1220200329GU56.0334.0NaN15.01.0390c375c6bdc73751dd51ba6d5889c9e84d533035102020-03-29 20:00:00+00:00390660.00.035.01.036.00.143590
1320200329HI151.06849.04.012.00.07004f9ea13c2d669a5af5e440577fd13339db609c58d2020-03-29 20:00:00+00:007000150.04.02492.031.02523.00.021559
1420200329IA336.05013.0NaN68.04.053490e8a6c975f6cdda9eb1f68596e52293afbfba37e2020-03-29 20:00:00+00:005349191.07.0638.038.0676.00.062815
1520200329ID261.04021.0NaN36.05.04282e58918bfa4321b0a6884b02c3ff7761ec4778e6b2020-03-29 20:00:00+00:004282161.011.0679.031.0710.00.060953
1620200329IL4596.023166.0NaNNaN65.027762e6e6b00bdc70ca71fc14b3056568dfc40097d7502020-03-29 20:00:00+00:00277621718.00.01166.01105.02271.00.165550
1720200329IN1514.08316.0NaNNaN32.09830659e4aad9785c14cf15e898f481aebda271e73e32020-03-29 20:00:00+00:009830181.00.01141.0282.01423.00.154018
1820200329KS319.04194.0NaN55.06.04513be3c8cd4ff2e10e3092723512f8ea5a03ec9d4862020-03-29 20:00:00+00:004513201.028.0523.058.0581.00.070685
1920200329KY394.05147.0NaNNaN9.05541563d46bc3630e17fd60499a2115df267a8645ae02020-03-29 20:00:00+00:005541211.00.0326.092.0418.00.071106
2020200329LA3540.024331.0NaN1127.0151.02787138b4d0f6b224b46b63a1c01841b1d1385a2a37422020-03-29 20:00:00+00:00278712214.0200.02485.0225.02710.00.127014
2120200329MA4955.034111.0NaN399.048.03906685320d5eb34b32da6ffe44dfb937835574a335a12020-03-29 20:00:00+00:0039066254.049.03319.0698.04017.00.126837
2220200329MD1239.012354.0NaN277.010.013593b017ab05576951a20e7c57f1faf56b614bc443f12020-03-29 20:00:00+00:0013593245.051.0838.0247.01085.00.091150
2320200329ME253.03394.0NaNNaN3.036472e6f8d654325315d3ff90837e0355efb83712cdb2020-03-29 20:00:00+00:003647232.00.00.042.042.00.069372
2420200329MI5486.011893.0NaNNaN132.01737925fd0b3fada36382067e735f2ea785fcbb58376a2020-03-29 20:00:00+00:00173792640.00.02784.01829.04613.00.315668
2520200329MN503.017154.0NaN75.09.017657a7684a9182a0b32142849036fecf82ec7701d8a32020-03-29 20:00:00+00:0017657274.018.01466.062.01528.00.028487
2620200329MO838.011547.0NaNNaN10.012385228bc579fa237f56c7e55fd2dd8f9bfe9d410b202020-03-29 20:00:00+00:0012385290.00.01465.00.01465.00.067662
2720200329MP2.0NaNNaNNaNNaN28499fa1ff060f43b78b442e20c46c954955343852020-03-29 20:00:00+00:002690.00.00.00.00.01.000000
2820200329MS758.02560.0NaN235.014.03318daa6037b61ae96e6c2526a155139e7e732cd03682020-03-29 20:00:00+00:003318281.016.00.095.095.00.228451
2920200329MT154.04143.0NaN8.01.04297d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee2020-03-29 20:00:00+00:004297300.01.0887.025.0912.00.035839
3020200329NC1040.017905.0NaN91.04.01894594c103bb6dc3385d5a5f366a0913180f83223df82020-03-29 20:00:00+00:0018945370.04.01313.0105.01418.00.054896
3120200329ND98.03355.0NaN17.01.034532c4c2aa7b34f5a07b885b9fe64752fa44d9decb52020-03-29 20:00:00+00:003453380.01.0546.015.0561.00.028381
3220200329NE108.01968.04.0NaN2.0208044e85c9c9b448faa6a1b8a6af39c84820610bff02020-03-29 20:00:00+00:002076310.00.064.012.076.00.051923
3320200329NH214.04524.0285.033.02.050235602e725da5424f5efebbaa8e3b8ac7c71a21d532020-03-29 20:00:00+00:004738330.03.0868.027.0895.00.042604
3420200329NJ13386.022216.0NaNNaN161.0356025e0cce3ce15a05bc385736f7f690e041feb4f2d92020-03-29 20:00:00+00:00356023421.00.02830.02262.05092.00.375990
3520200329NM237.010769.0NaN19.02.011006c76b9199e33fb36ea9e9509cce54c2ad94146dfd2020-03-29 20:00:00+00:0011006351.02.01573.046.01619.00.021534
3620200329NV738.08412.0NaNNaN14.09150d0408e54d643518f6c0b61bd367061c20ea693272020-03-29 20:00:00+00:009150324.00.0511.0117.0628.00.080656
3720200329NY59513.0112847.0NaN12075.0965.0172360ba807849425122f97cff754bfca452232a1e75ce2020-03-29 20:00:00+00:0017236036237.02021.09231.07195.016426.00.345283
3820200329OH1653.019012.0NaN403.029.020665bf97498f0e2f4741137db5392baa1abf5648979f2020-03-29 20:00:00+00:0020665394.059.00.0247.0247.00.079990
3920200329OK429.01205.0NaN140.016.0163443ef7985bd9555698d09d6a950875ade320286df2020-03-29 20:00:00+00:001634401.014.025.052.077.00.262546
4020200329OR548.010878.0NaN129.013.011426ec860456b55d5a18391c8cbf2748ea02bf908fd22020-03-29 20:00:00+00:0011426410.012.01185.069.01254.00.047961
4120200329PA3394.030061.0NaN682.038.033455ad1df7816ad6d19a996749d630bc38345291f26e2020-03-29 20:00:00+00:0033455424.00.04807.0643.05450.00.101450
4220200329PR127.0841.0817.0NaN5.017855b8d867a604216d7e456141b6f80f93183e22f2c2020-03-29 20:00:00+00:00968722.00.0102.027.0129.00.071148
4320200329RI294.02541.0NaN35.03.02835a4d42dba093e9b91662dc7547081bffbecd06bef2020-03-29 20:00:00+00:002835443.07.0235.091.0326.00.103704
4420200329SC774.03015.0NaN129.016.03789b85a9aaa3da2d62f633714b4d08f409109f52bb42020-03-29 20:00:00+00:003789453.00.0607.0235.0842.00.204276
4520200329SD90.03127.01.0NaN1.032182ecdd93c12093321637eb882b51f779ef2269d3a2020-03-29 20:00:00+00:003217460.00.0535.022.0557.00.027968
4620200329TN1537.019037.0NaN133.07.020574c928e23a1549ab46b5a78ea8b86ea8fa727ca05f2020-03-29 20:00:00+00:0020574471.015.02072.0164.02236.00.074706
4720200329TX2552.023208.0NaNNaN34.02576038db35dbc7abd19b31e25fa9eaa4165ad5eece4a2020-03-29 20:00:00+00:0025760487.00.00.0500.0500.00.099068
4820200329UT719.013274.0NaNNaN2.0139937da47dee17adc7161be7aeefa3d507b3bc735edf2020-03-29 20:00:00+00:0013993490.00.02564.0117.02681.00.051383
4920200329VA890.09719.0NaN112.022.01060966ebeae58d1a5e123904bd7f39d840dbe24449c22020-03-29 20:00:00+00:0010609515.013.01292.0151.01443.00.083891
5020200329VI23.0123.037.0NaNNaN18315a59f27f2acd69bd9c1e95a02de01c044339d2f2020-03-29 20:00:00+00:00146780.00.017.01.018.00.125683
5120200329VT235.03466.0NaN18.012.0370190a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e2020-03-29 20:00:00+00:003701500.00.01303.024.01327.00.063496
5220200329WA4310.054896.0NaN254.0189.05920602bb082a97f1ddda79562a855dd090e632e2e5e92020-03-29 20:00:00+00:00592065314.00.05881.0587.06468.00.072797
5320200329WI1112.016550.0NaNNaN13.0176622cd5d65e6cf10a667f00fe96ffd78eb8507131292020-03-29 20:00:00+00:0017662550.00.01318.0123.01441.00.062960
5420200329WV113.02705.00.01.00.02818626ca2fdd89b005a3d3b606376e4ac5fd2a4772c2020-03-29 20:00:00+00:002818540.00.0374.017.0391.00.040099
5520200329WY86.01554.0NaN15.00.01640e6365afc2c29afd4168c8d82cd573124272811402020-03-29 20:00:00+00:001640560.01.079.04.083.00.052439
\n", "
" ], "text/plain": [ " date state positive negative pending hospitalized death total \\\n", "0 20200329 AK 102.0 3232.0 NaN 6.0 2.0 3334 \n", "1 20200329 AL 806.0 4184.0 NaN NaN 4.0 4990 \n", "2 20200329 AR 426.0 3027.0 NaN 48.0 6.0 3453 \n", "4 20200329 AZ 919.0 12953.0 NaN 78.0 17.0 13872 \n", "5 20200329 CA 5708.0 20549.0 64400.0 1034.0 123.0 90657 \n", "6 20200329 CO 2061.0 11215.0 NaN 274.0 44.0 13276 \n", "7 20200329 CT 1993.0 9907.0 NaN 404.0 34.0 11900 \n", "8 20200329 DC 342.0 2469.0 1.0 NaN 5.0 2812 \n", "9 20200329 DE 232.0 36.0 NaN 33.0 6.0 268 \n", "10 20200329 FL 4246.0 39070.0 NaN 594.0 56.0 43316 \n", "11 20200329 GA 2651.0 9913.0 NaN 666.0 80.0 12564 \n", "12 20200329 GU 56.0 334.0 NaN 15.0 1.0 390 \n", "13 20200329 HI 151.0 6849.0 4.0 12.0 0.0 7004 \n", "14 20200329 IA 336.0 5013.0 NaN 68.0 4.0 5349 \n", "15 20200329 ID 261.0 4021.0 NaN 36.0 5.0 4282 \n", "16 20200329 IL 4596.0 23166.0 NaN NaN 65.0 27762 \n", "17 20200329 IN 1514.0 8316.0 NaN NaN 32.0 9830 \n", "18 20200329 KS 319.0 4194.0 NaN 55.0 6.0 4513 \n", "19 20200329 KY 394.0 5147.0 NaN NaN 9.0 5541 \n", "20 20200329 LA 3540.0 24331.0 NaN 1127.0 151.0 27871 \n", "21 20200329 MA 4955.0 34111.0 NaN 399.0 48.0 39066 \n", "22 20200329 MD 1239.0 12354.0 NaN 277.0 10.0 13593 \n", "23 20200329 ME 253.0 3394.0 NaN NaN 3.0 3647 \n", "24 20200329 MI 5486.0 11893.0 NaN NaN 132.0 17379 \n", "25 20200329 MN 503.0 17154.0 NaN 75.0 9.0 17657 \n", "26 20200329 MO 838.0 11547.0 NaN NaN 10.0 12385 \n", "27 20200329 MP 2.0 NaN NaN NaN NaN 2 \n", "28 20200329 MS 758.0 2560.0 NaN 235.0 14.0 3318 \n", "29 20200329 MT 154.0 4143.0 NaN 8.0 1.0 4297 \n", "30 20200329 NC 1040.0 17905.0 NaN 91.0 4.0 18945 \n", "31 20200329 ND 98.0 3355.0 NaN 17.0 1.0 3453 \n", "32 20200329 NE 108.0 1968.0 4.0 NaN 2.0 2080 \n", "33 20200329 NH 214.0 4524.0 285.0 33.0 2.0 5023 \n", "34 20200329 NJ 13386.0 22216.0 NaN NaN 161.0 35602 \n", "35 20200329 NM 237.0 10769.0 NaN 19.0 2.0 11006 \n", "36 20200329 NV 738.0 8412.0 NaN NaN 14.0 9150 \n", "37 20200329 NY 59513.0 112847.0 NaN 12075.0 965.0 172360 \n", "38 20200329 OH 1653.0 19012.0 NaN 403.0 29.0 20665 \n", "39 20200329 OK 429.0 1205.0 NaN 140.0 16.0 1634 \n", "40 20200329 OR 548.0 10878.0 NaN 129.0 13.0 11426 \n", "41 20200329 PA 3394.0 30061.0 NaN 682.0 38.0 33455 \n", "42 20200329 PR 127.0 841.0 817.0 NaN 5.0 1785 \n", "43 20200329 RI 294.0 2541.0 NaN 35.0 3.0 2835 \n", "44 20200329 SC 774.0 3015.0 NaN 129.0 16.0 3789 \n", "45 20200329 SD 90.0 3127.0 1.0 NaN 1.0 3218 \n", "46 20200329 TN 1537.0 19037.0 NaN 133.0 7.0 20574 \n", "47 20200329 TX 2552.0 23208.0 NaN NaN 34.0 25760 \n", "48 20200329 UT 719.0 13274.0 NaN NaN 2.0 13993 \n", "49 20200329 VA 890.0 9719.0 NaN 112.0 22.0 10609 \n", "50 20200329 VI 23.0 123.0 37.0 NaN NaN 183 \n", "51 20200329 VT 235.0 3466.0 NaN 18.0 12.0 3701 \n", "52 20200329 WA 4310.0 54896.0 NaN 254.0 189.0 59206 \n", "53 20200329 WI 1112.0 16550.0 NaN NaN 13.0 17662 \n", "54 20200329 WV 113.0 2705.0 0.0 1.0 0.0 2818 \n", "55 20200329 WY 86.0 1554.0 NaN 15.0 0.0 1640 \n", "\n", " hash dateChecked \\\n", "0 d4c0789e67f59e98176a9ea96200ed348161c6d4 2020-03-29 20:00:00+00:00 \n", "1 9dbf0b598d35897b1f6857899d0a834990f4ec51 2020-03-29 20:00:00+00:00 \n", "2 2c8ed5059d37cc0aa0d20f4f3066a64db930c6c5 2020-03-29 20:00:00+00:00 \n", "4 14deca609d3762fb4b92807785e2b9c7015661e6 2020-03-29 20:00:00+00:00 \n", "5 c364ec885909accfd4baf8e2d329903900870ba9 2020-03-29 20:00:00+00:00 \n", "6 10769183d6c8ae4f67d7694c1e90e053315457ad 2020-03-29 20:00:00+00:00 \n", "7 a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e 2020-03-29 20:00:00+00:00 \n", "8 951af61bdce7b51bbfb818f7d11e3865a59e31ae 2020-03-29 20:00:00+00:00 \n", "9 ba8edd92448c4db2b977c3e519df1d6421968cd1 2020-03-29 20:00:00+00:00 \n", "10 8ce3ce4c8ee42dd4925356994534079c50bc67ca 2020-03-29 20:00:00+00:00 \n", "11 7d692c3fbf28e3dbfdd58fc99dace80c1a9958d2 2020-03-29 20:00:00+00:00 \n", "12 c375c6bdc73751dd51ba6d5889c9e84d53303510 2020-03-29 20:00:00+00:00 \n", "13 f9ea13c2d669a5af5e440577fd13339db609c58d 2020-03-29 20:00:00+00:00 \n", "14 0e8a6c975f6cdda9eb1f68596e52293afbfba37e 2020-03-29 20:00:00+00:00 \n", "15 e58918bfa4321b0a6884b02c3ff7761ec4778e6b 2020-03-29 20:00:00+00:00 \n", "16 e6e6b00bdc70ca71fc14b3056568dfc40097d750 2020-03-29 20:00:00+00:00 \n", "17 659e4aad9785c14cf15e898f481aebda271e73e3 2020-03-29 20:00:00+00:00 \n", "18 be3c8cd4ff2e10e3092723512f8ea5a03ec9d486 2020-03-29 20:00:00+00:00 \n", "19 563d46bc3630e17fd60499a2115df267a8645ae0 2020-03-29 20:00:00+00:00 \n", "20 38b4d0f6b224b46b63a1c01841b1d1385a2a3742 2020-03-29 20:00:00+00:00 \n", "21 85320d5eb34b32da6ffe44dfb937835574a335a1 2020-03-29 20:00:00+00:00 \n", "22 b017ab05576951a20e7c57f1faf56b614bc443f1 2020-03-29 20:00:00+00:00 \n", "23 2e6f8d654325315d3ff90837e0355efb83712cdb 2020-03-29 20:00:00+00:00 \n", "24 25fd0b3fada36382067e735f2ea785fcbb58376a 2020-03-29 20:00:00+00:00 \n", "25 a7684a9182a0b32142849036fecf82ec7701d8a3 2020-03-29 20:00:00+00:00 \n", "26 228bc579fa237f56c7e55fd2dd8f9bfe9d410b20 2020-03-29 20:00:00+00:00 \n", "27 8499fa1ff060f43b78b442e20c46c95495534385 2020-03-29 20:00:00+00:00 \n", "28 daa6037b61ae96e6c2526a155139e7e732cd0368 2020-03-29 20:00:00+00:00 \n", "29 d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee 2020-03-29 20:00:00+00:00 \n", "30 94c103bb6dc3385d5a5f366a0913180f83223df8 2020-03-29 20:00:00+00:00 \n", "31 2c4c2aa7b34f5a07b885b9fe64752fa44d9decb5 2020-03-29 20:00:00+00:00 \n", "32 44e85c9c9b448faa6a1b8a6af39c84820610bff0 2020-03-29 20:00:00+00:00 \n", "33 5602e725da5424f5efebbaa8e3b8ac7c71a21d53 2020-03-29 20:00:00+00:00 \n", "34 5e0cce3ce15a05bc385736f7f690e041feb4f2d9 2020-03-29 20:00:00+00:00 \n", "35 c76b9199e33fb36ea9e9509cce54c2ad94146dfd 2020-03-29 20:00:00+00:00 \n", "36 d0408e54d643518f6c0b61bd367061c20ea69327 2020-03-29 20:00:00+00:00 \n", "37 ba807849425122f97cff754bfca452232a1e75ce 2020-03-29 20:00:00+00:00 \n", "38 bf97498f0e2f4741137db5392baa1abf5648979f 2020-03-29 20:00:00+00:00 \n", "39 43ef7985bd9555698d09d6a950875ade320286df 2020-03-29 20:00:00+00:00 \n", "40 ec860456b55d5a18391c8cbf2748ea02bf908fd2 2020-03-29 20:00:00+00:00 \n", "41 ad1df7816ad6d19a996749d630bc38345291f26e 2020-03-29 20:00:00+00:00 \n", "42 5b8d867a604216d7e456141b6f80f93183e22f2c 2020-03-29 20:00:00+00:00 \n", "43 a4d42dba093e9b91662dc7547081bffbecd06bef 2020-03-29 20:00:00+00:00 \n", "44 b85a9aaa3da2d62f633714b4d08f409109f52bb4 2020-03-29 20:00:00+00:00 \n", "45 2ecdd93c12093321637eb882b51f779ef2269d3a 2020-03-29 20:00:00+00:00 \n", "46 c928e23a1549ab46b5a78ea8b86ea8fa727ca05f 2020-03-29 20:00:00+00:00 \n", "47 38db35dbc7abd19b31e25fa9eaa4165ad5eece4a 2020-03-29 20:00:00+00:00 \n", "48 7da47dee17adc7161be7aeefa3d507b3bc735edf 2020-03-29 20:00:00+00:00 \n", "49 66ebeae58d1a5e123904bd7f39d840dbe24449c2 2020-03-29 20:00:00+00:00 \n", "50 15a59f27f2acd69bd9c1e95a02de01c044339d2f 2020-03-29 20:00:00+00:00 \n", "51 90a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e 2020-03-29 20:00:00+00:00 \n", "52 02bb082a97f1ddda79562a855dd090e632e2e5e9 2020-03-29 20:00:00+00:00 \n", "53 2cd5d65e6cf10a667f00fe96ffd78eb850713129 2020-03-29 20:00:00+00:00 \n", "54 626ca2fdd89b005a3d3b606376e4ac5fd2a4772c 2020-03-29 20:00:00+00:00 \n", "55 e6365afc2c29afd4168c8d82cd57312427281140 2020-03-29 20:00:00+00:00 \n", "\n", " totalTestResults fips deathIncrease hospitalizedIncrease \\\n", "0 3334 02 0.0 1.0 \n", "1 4990 01 1.0 0.0 \n", "2 3453 05 1.0 0.0 \n", "4 13872 04 2.0 78.0 \n", "5 26257 06 22.0 0.0 \n", "6 13276 08 13.0 35.0 \n", "7 11900 09 7.0 231.0 \n", "8 2811 11 1.0 0.0 \n", "9 268 10 3.0 2.0 \n", "10 43316 12 2.0 68.0 \n", "11 12564 13 11.0 49.0 \n", "12 390 66 0.0 0.0 \n", "13 7000 15 0.0 4.0 \n", "14 5349 19 1.0 7.0 \n", "15 4282 16 1.0 11.0 \n", "16 27762 17 18.0 0.0 \n", "17 9830 18 1.0 0.0 \n", "18 4513 20 1.0 28.0 \n", "19 5541 21 1.0 0.0 \n", "20 27871 22 14.0 200.0 \n", "21 39066 25 4.0 49.0 \n", "22 13593 24 5.0 51.0 \n", "23 3647 23 2.0 0.0 \n", "24 17379 26 40.0 0.0 \n", "25 17657 27 4.0 18.0 \n", "26 12385 29 0.0 0.0 \n", "27 2 69 0.0 0.0 \n", "28 3318 28 1.0 16.0 \n", "29 4297 30 0.0 1.0 \n", "30 18945 37 0.0 4.0 \n", "31 3453 38 0.0 1.0 \n", "32 2076 31 0.0 0.0 \n", "33 4738 33 0.0 3.0 \n", "34 35602 34 21.0 0.0 \n", "35 11006 35 1.0 2.0 \n", "36 9150 32 4.0 0.0 \n", "37 172360 36 237.0 2021.0 \n", "38 20665 39 4.0 59.0 \n", "39 1634 40 1.0 14.0 \n", "40 11426 41 0.0 12.0 \n", "41 33455 42 4.0 0.0 \n", "42 968 72 2.0 0.0 \n", "43 2835 44 3.0 7.0 \n", "44 3789 45 3.0 0.0 \n", "45 3217 46 0.0 0.0 \n", "46 20574 47 1.0 15.0 \n", "47 25760 48 7.0 0.0 \n", "48 13993 49 0.0 0.0 \n", "49 10609 51 5.0 13.0 \n", "50 146 78 0.0 0.0 \n", "51 3701 50 0.0 0.0 \n", "52 59206 53 14.0 0.0 \n", "53 17662 55 0.0 0.0 \n", "54 2818 54 0.0 0.0 \n", "55 1640 56 0.0 1.0 \n", "\n", " negativeIncrease positiveIncrease totalTestResultsIncrease posrate \n", "0 396.0 17.0 413.0 0.030594 \n", "1 0.0 110.0 110.0 0.161523 \n", "2 89.0 22.0 111.0 0.123371 \n", "4 5498.0 46.0 5544.0 0.066249 \n", "5 0.0 1065.0 1065.0 0.062963 \n", "6 1273.0 327.0 1600.0 0.155243 \n", "7 2798.0 702.0 3500.0 0.167479 \n", "8 258.0 38.0 296.0 0.121622 \n", "9 0.0 18.0 18.0 0.865672 \n", "10 3704.0 483.0 4187.0 0.098024 \n", "11 1228.0 285.0 1513.0 0.211000 \n", "12 35.0 1.0 36.0 0.143590 \n", "13 2492.0 31.0 2523.0 0.021559 \n", "14 638.0 38.0 676.0 0.062815 \n", "15 679.0 31.0 710.0 0.060953 \n", "16 1166.0 1105.0 2271.0 0.165550 \n", "17 1141.0 282.0 1423.0 0.154018 \n", "18 523.0 58.0 581.0 0.070685 \n", "19 326.0 92.0 418.0 0.071106 \n", "20 2485.0 225.0 2710.0 0.127014 \n", "21 3319.0 698.0 4017.0 0.126837 \n", "22 838.0 247.0 1085.0 0.091150 \n", "23 0.0 42.0 42.0 0.069372 \n", "24 2784.0 1829.0 4613.0 0.315668 \n", "25 1466.0 62.0 1528.0 0.028487 \n", "26 1465.0 0.0 1465.0 0.067662 \n", "27 0.0 0.0 0.0 1.000000 \n", "28 0.0 95.0 95.0 0.228451 \n", "29 887.0 25.0 912.0 0.035839 \n", "30 1313.0 105.0 1418.0 0.054896 \n", "31 546.0 15.0 561.0 0.028381 \n", "32 64.0 12.0 76.0 0.051923 \n", "33 868.0 27.0 895.0 0.042604 \n", "34 2830.0 2262.0 5092.0 0.375990 \n", "35 1573.0 46.0 1619.0 0.021534 \n", "36 511.0 117.0 628.0 0.080656 \n", "37 9231.0 7195.0 16426.0 0.345283 \n", "38 0.0 247.0 247.0 0.079990 \n", "39 25.0 52.0 77.0 0.262546 \n", "40 1185.0 69.0 1254.0 0.047961 \n", "41 4807.0 643.0 5450.0 0.101450 \n", "42 102.0 27.0 129.0 0.071148 \n", "43 235.0 91.0 326.0 0.103704 \n", "44 607.0 235.0 842.0 0.204276 \n", "45 535.0 22.0 557.0 0.027968 \n", "46 2072.0 164.0 2236.0 0.074706 \n", "47 0.0 500.0 500.0 0.099068 \n", "48 2564.0 117.0 2681.0 0.051383 \n", "49 1292.0 151.0 1443.0 0.083891 \n", "50 17.0 1.0 18.0 0.125683 \n", "51 1303.0 24.0 1327.0 0.063496 \n", "52 5881.0 587.0 6468.0 0.072797 \n", "53 1318.0 123.0 1441.0 0.062960 \n", "54 374.0 17.0 391.0 0.040099 \n", "55 79.0 4.0 83.0 0.052439 " ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "posrate = latest['positive']/latest['total']\n", "latest['posrate'] = posrate\n", "latest = latest[latest['posrate'].notna()]\n", "latest" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "AK 3334 0.03059388122375525\n", "AL 4990 0.16152304609218437\n", "AR 3453 0.12337098175499565\n", "AZ 13872 0.06624855824682814\n", "CA 90657 0.0629625952767023\n", "CO 13276 0.15524254293461887\n", "CT 11900 0.16747899159663865\n", "DC 2812 0.12162162162162163\n", "DE 268 0.8656716417910447\n", "FL 43316 0.09802382491458121\n", "GA 12564 0.21099968163005411\n", "GU 390 0.14358974358974358\n", "HI 7004 0.021559109080525413\n", "IA 5349 0.0628154795288839\n", "ID 4282 0.0609528257823447\n", "IL 27762 0.16555003241841365\n", "IN 9830 0.1540183112919634\n", "KS 4513 0.07068468867715488\n", "KY 5541 0.07110629850207544\n", "LA 27871 0.12701374188224318\n", "MA 39066 0.1268366354374648\n", "MD 13593 0.09114985654380932\n", "ME 3647 0.06937208664655882\n", "MI 17379 0.3156683353472582\n", "MN 17657 0.028487285495837344\n", "MO 12385 0.06766249495357288\n", "MP 2 1.0\n", "MS 3318 0.22845087402049427\n", "MT 4297 0.03583895741214801\n", "NC 18945 0.05489575085774611\n", "ND 3453 0.028381117868520128\n", "NE 2080 0.051923076923076926\n", "NH 5023 0.04260402150109496\n", "NJ 35602 0.3759901129150048\n", "NM 11006 0.02153370888606215\n", "NV 9150 0.08065573770491803\n", "NY 172360 0.34528312833604086\n", "OH 20665 0.07999032180014518\n", "OK 1634 0.26254589963280295\n", "OR 11426 0.04796079117801506\n", "PA 33455 0.10144970856374234\n", "PR 1785 0.0711484593837535\n", "RI 2835 0.1037037037037037\n", "SC 3789 0.2042755344418052\n", "SD 3218 0.027967681789931635\n", "TN 20574 0.07470593953533586\n", "TX 25760 0.09906832298136646\n", "UT 13993 0.05138283427428\n", "VA 10609 0.08389103591290414\n", "VI 183 0.12568306010928962\n", "VT 3701 0.06349635233720616\n", "WA 59206 0.0727966760125663\n", "WI 17662 0.06296002717699015\n", "WV 2818 0.04009936124911285\n" ] }, { "data": { "image/png": "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DZ5//vmMv/DW2jX+c4gbqhj9pcHsUdCLXr16ccMNN1BQUNBgposvfelLvPzyy7z77rstXh/ULLWe2zWfSZMmNTi3tLSUd955hy9+8Yt1+/r160fnzp2ZN29e2muVJEk7xmnstqHxEtoA3QYdweI//ZT7/nRvg3Nnlizn0vsXUbWx5tz3X3qGjvseSecjz2DPF+/knHPOYc6cOXzlK1/htttuY968eQwbNoxf/OIXXHzxxRx00EF85jOfadHvt7No/OfQZ8ojdMpp22BZ8osvvrjBNW3atGmR8NxUfbVLrZetqqybQnD48OEMHz4cgOXLl292j4ULF7ZIrZIkaccYoLehqeWwcwcezIdr1tUFo759+/LM8ws49NpZdeE5bljHf578NWRlsfaVZzj6ggv5yU9+AsBpp51Gr169uOSSS3j//ffJyspi1apVvPTSSwboLWjty5K39vokSVLzsYVjG5JdDrt2BLJWyG5PnymP0Of7M8n73CF065hDVlYWZ511Fn369GHp0qX8/e9/57XXXuOVV16hvLycr371qy399XYa6V6WvHbe7v3224+TTz65wZzcDz74ICEEXn311YzVJ0mSWg9HoJMwckgBh+7dc6vLYTc1AgmQ0zZw6te/wqoP3mmJUj81ysvLOeqoo4CaFy7btGlDfn4+VR9/zJqNm3hm7vPs3fuzrFq1igMOOIA5c+bQp0+f7X5e7bzdAN/85je59dZb61pCiouLOeyww5g+fTpXXnnlFu+RzN8TSZK083MEOkk98nIYvGfXLYaixiOQAJO/OpC/f384H76+gJEjR7ZkuTu9Hj16UFJSQklJCRMmTOCiiy6ipKSEt5YuZdL5E7nuZzXtMJdddhnjx4/fofDc2OGHH84bb7wB1Mzj/eyzz3LXXXclNUvGtv6eJKN2NLz2U1paypw5cxgxYsR231OSJDUfR6CbUf0RyAN+tp67Jp/Mj0pLOfDAA23PaEYXXXQRBx54IDfccANz587lpptuarZ7b9y4kSeeeKJuXu7aebwHDhxI9+7dWbhw4VanLmwO9UfDa5WWlqb1mZIkKXmOQKdJbQh6++23Wb9+PTfffHOmSwIghMDpp59et71x40by8/PrRjfvvvtu8vPz2X///RkwYADHHHMMzz33XKbKbVJ2djb/7//9Py666CJuuOEG2rVrt8P3rKysZMiQIRQVFdG7d2++/e1vAzXtG7XzeI8dO9YltyVJkiPQzWlmyXKmzFhEdlZW3UIaI4cUcOONNzJq1CjOPffcTJdIx44dWbx4MZWVleTm5vL00083mDsZYMyYMUybNg2A2bNnc+KJJzJ79my+8IUvZKLkJj3xxBN89rOfZfHixTs0ul+7wmRTo77l5eXMmjWLxYsXE0Jg06ZNhBC47rrrtrp8+46qDfNQMz907eI7kiSpdXAEuplsaSGN8ooq9t9/fwYPHtxqVpo77rjjeOyxx4CaEdatLUd+xBFHMH78eG6//faWKq9uOezyiqomj5eUlPD000/z/PPPM3Xq1O2e63lrKxsC3H///XzrW9/i7bffprS0lGXLltGvXz/mzp27Xc/bltrvXRvmS0pKDM+SJLVCBuhm0ngau/oLaQA88sgjnH766fTt25fFixc323OHDx/Ok08+2WDfDTfcwHnnnQfA1KlTad++PatXr647PnbsWKZPn866detYtGgRw4YN2+ozDjjggK1O4dac6ofaQ6+dtVmojTFy7rnncsMNN9C7d2++//3vc8kll6T8nK39g6dWcXEx3/jGNxpcN3r0aP74xz9uxzfbum2FeUmS1HoYoJtJphbSGDdu3GYj29OnT68bVS4uLmbo0KENRjILCwspLS2luLiY448/fpvPiDE2b9Fb0DjUrttQzaUzFrF2/ca6c+644w569+5d17Zx3nnn8eqrr/LMM8+k9Kxt/YMHYM6cOXUvE9b63ve+xy233LI9X2+LkgnzkiSp9TBAN5OWWkgjhMDkyZPrtt977z3+9Kc/8dRTT3HwwQdTWlrKihUrOOyww3jttddYuHAhF110Eb/7/R94cdlHddeNHDmSSy65ZKvtG7X+9a9/pdT/XFZWxqhRoxgwYAD9+/dn0qRJrF+/vsmp2M4880zuv//+musahVqA7KwsvnnuJXWjzOPHj+fee/+7hHqbNm1YsGABX/7yl5OuD1rXyoFb+t71wzzAX//6V3r16lX3+cc//tGSZUqSpARfImxGLbGQRk5ODg888ACXX345PXv2pGPHjhQUFPDJJ59QVlbGLbfcwpgxYwghcM0119C7d29C36H8ff65jP3Vk3XtAWeffTZdunRh0KBBzJkzZ4vPe+aZZ7j99tuZPXt2UvXFGDnxxBM599xzmTlzJps2bWL8+PH88Ic/5Gtf+9pWr23JUFv7D55LEy99bqiuztjKgY2/d++L79/sew8fPpzKysqmLpckSS3MAN3MeuTlpDWEtW3blvHjxzN16lSuvvpqAPbbbz/+9Kc/cfLJJ3PPPffw6KOPAvDwww9z3gUXcvmDi8kdcDDvL5oD1LQHPDvlSCZNmtTkM+69917mzp3L2rVr6devHzNmzEhqBLq8vJxhw4bx3nvvcfnll3PFFVeQn59PdXU1L730Em+++Wbdub/85S+pqKhocH1Lh9rWsnJgawrzkiRp20JL9bc2l6Kiojh//vxMl7GZNm3aMGjQIDZu3MgXvvAFfvvb39KhQ4cG+/v168c999xD165dAcjLy6sLkY8//jiTJk3iRz/6EbfccgvPPfdc3dRpBx54IL/+9a855JBDyMvLY8WKFRQWFjL72X9y0y23Ub1uDX/83d1cf/31fOc732HdunXMnz+foUOH8pk9Cij/ZAPVmzbStstn+Mxp19Eppy2/P2cYg/fs2uy/DzfeeCNvvfUWXbp0IS8vr671Iisri27durF+/Xr69+/P+++/T3V1NevXr+f222/npJNOqrtH7dRyu9py2LvC977ooovo06cPF154IQDHHHMMe+65J3feeScAkydPpqCggIsvvpipU6dy+eWXs3LlSrp06ZLJsiVJu6gQwoIYY1Hj/fZAN5PaqccWL15Mu3btuPXWW+v2v/jii+y///50796d3XbbrW7xksrKSgYMGMB3v/tdvv71r7NixQq++93v8s9//pOiopo/q5tuuomhQ4fyucID63qYO3fuzLCjT2DoNydTPO8dfv/P5QwcMozrr7+eDh068Nprr/Hzn/+cz3/+8yx+7U32uuBuek38HRsrytm4+v209vrGGJucIzmEwCGHHMLuu+9OSUkJF198MRMmTGhyifPmWA57Z7QrfO9D/n97dx4eVZXtffy7qjIBIQkBAoRBcEBEhoC0iIgXcYRWFFoBwVcF0UZpkSsIen1Euh2u0Djcllbf7qYvTk20cUBbbXFEZVAQmQcZRCBIgBAISEhCat8/arASkpAKZID8Ps9TT6p2nWHXyqFYOWedvS+8MDQxj8/nY8+ePaxevTr0/oIFC+jZsydQ8g2wIiIiNYES6ErQq1cvNm7cGHodnLzkvPPOwznHRx99RGJiIj6fj0ceeYQ333yTlJQU/vGPf5Cbm8v27dvZtWsXq1evZvr06fzHTfcUGeLs1UU/sjThQvZ9N5fc3EMc8Tl+SExj+fLlDB48mPT0dD788EPWrVvH2DtHhm5uTGrXgx0z7qT+vCf54qP3MTOmT59Op06daNq0KXXq1KFNmzakpaXRoUMHzIy1a9eW+3NnHcwjrvFpLPz6myLtOTk5+Hw+brnlFnbs2FFkSD2pXXr27BlKoFevXk2HDh2oX78+2dnZ5OXlsXbtWrp06cKmTZs4ePAgjz76qGZ/FBGRGkcJ9Al25MgRPvjgAzp27Aj4Z5U7cuQIV155JbNmzcLr9TJmzBh++OEHAIYOHcqRI0fYvXs3jz/+OADNmjVjwoQJ9OjRg7HjJ/Lox9uKDHH2+3dXE1svgXrtLuLgio8ASG5/Ecu2ZnP33XfzyiuvULduXerWreufqe/sZOZP7MPv7xrKue3OpklCHLNmzSItLY1JkyYxZ84cdu7cyZo1a/B6vbz00kv079+fYcOGlXv0jeA4xs+ui+O7HzL597xFABQWFjJu3Diio6Np1KgRzZv7Z2aU2ik1NZWoqCi2bt3KggUL6NGjB927d2fhwoUsWbKETp06ERMTE5rgp1evXqxfv55du3ZVd9dFRERClECfIMHpl7t160arVq247bbbAH9JQ15eHs899xyLFi2ioKCAjRs3hsocvF4vhw8fJjo6msWLF2NmNGvWjIEDB1JYWEivX99w9BBnXg/5hY6E8wfgy80Bfhmton379tStW5c+ffpgZqFZBxvGx/L1x+9y0zB/wj5//nxatWpFbGwsbdq0AfzTRj/wwAOMHz+e119/neeeew7w160+88wzof1feeWVjBw5MvT6rrvHcvt9k9n8wigO5hfS6LoHWbpiJf/9xBO0bduWuLg4YmJiQvuYMWMGP//8cyX9JqSmCs602K37BSxYsCCUQPfo0SP0+sILLwT8Y5kPGTIEj8fDwIED+ec//1nNvRfwD5s5ZMgQzjjjDNq3b0+/fv34/vvvgZInbRIROVUpgT5OJU2//Oyzz4YSxjp1/LXG3yzz13k65/B6vcTGxgEwePBg4uPj8Xg8NG/enDPPPJOmTZty6aWXYmYlDnFW6BwPX9OeekkNOfe/5tD0kv9XZNSG5cuXhyZXKWnWwczMTK666iq2bdtGSkoKS5cuDW2/bdu2zJs3jxdffJGEhATg2HWrH3wyD2+zX85URyU0JqnDJdwy6h42bdrEs88+C/iHYps7dy6DBg1ixowZAMycObPIDYRyagqfafHLnGRemTOXlStX0qFDBy644AIWLlwYqn9esWIFGzZs4PLLL6d169akp6erjKMGcM4xYMAAevfuzaZNm1izZg2PP/44mZmZgGrWRaR2UQJ9HI41/XLWwTwchsfj4dL7/wrmxTlHbJtuHDqcD8BPOfn0798fM2Pnzp387W9/IyUlhaioKHw+X6kTtAzrfhrzJ/bhlZHdmT+xD/3TmpfYx5JmHczIyGDIkCE457jqqquKJCePPfYYDRs2DN3IBWXXre7IymHr5g144uKL7LfQORLrRJfYp3HjxrFnz54Ioy0nq+IzLXqbnsPcf39A/cQkvF4vycnJ7Nu3j4ULF9KjRw9mzZrF5MmT2bJlS2hioIyMDH788cfq/ii12meffUZ0dDSjRo0KtaWlpdGrgNLXbQAAGBpJREFUVy/VrItIraNxoCsoPCk4jP8M8YQ3VtDzzEY0jI9lzrIMJr6xgryCQnzmZd+qeeCNgiOFeBs0xVMvEd+BPSz4bhWt+15M48aN2bJlC3v37mXNmjXk5+eHyjxKG6+4tDGng8OhBQVnHXz7/bl8u2o9WVlZjBw5kqysLH788Ufi4+OZOnUqL730Ehs2bOCSSy4psr2S6lYzMjJITk7mymsGEtekDeaNovBQDvu+epWki4Yx+eHJJGYspEOHDjjnaNWqFdOmTWP8+PE0adKEQ4cOVdavRmqY4EyLwX8n0Y1Po/BQDm07dg0t07FjRw4ePEijRo1IT0/ngw8+KLKNAQMGkJ6ezsSJE6u07/KL4I3QJSmpZj0lJaWKeygiUnWUQFdQ8aSg1b2zWf9oP/4zczRPP/UkE99YQeZXs6l//gD2f/0muRu/hiN5ABzevBTfz/sAIy/zB9ZvbB46uzZ06FAKCgq4/PLLiyQR5Z2gJZi4R3s8RWYd3HrQcfu/drHn49lY3SSIrsNXX33FDTfcQHJyMsOHD+fFF18kOjoa5xx16tTh7LPPptDnuOWue4vUrd57771kZGTg9Xr5+stPiTnr4iJ9iI3ykLJ/LVOeeYa5c+eSmprK4cOHefnll09Q9OVkUrwMyTxezpowmycm9gm1zZw5M/Q8eINtuKeeeqpS+yhlyzqYR0Z2LrkFhSW+n56ezltvvVWkZn306NFV3EsRkaqjEo4KKmnaafNGM2/uv1i5aTvO98sENaeNe4OoBP/ZmMSeN5Jyw2Sik1Ox6Fji2/Xkissuw+v1EhMTQ5MmTUhJSeHAgQMR96n4pXLwnxU/HJ3IV7Hnc7jAR86m7/DUSWRnzmFannkOU6ZMYdu2bcyaNQszIzU1lbg4f332/twC9ne5iRd/alpi3apzjtTUVNon+YiN8uAxI8pj/PH6Tvz5mWlMmzaN1NRUAOLi4rj99tsrFGs5uZVWhnQqj3d9KgmWqr2+0fHSO58eVaqmmnURqY2UQFdQSUlBbEw0o377W17/3xfIKyw6w2N049MAqHfOxUdt6/NPPiIlJYUXXnjhuGo+t2fnwsEsdr3xCBl/uR1vvST2zP3/LN68i7ytK9n69CAwD778XAoPZrM9O5eBAweyY8cOHnjgAaZOncqWLVt4//33ad3mdGIHTcPTrH2pdasAe/bsYevaZcwc1oHEutGMuKgN/dOal3m5V2qf/mnNy1WzLzVL+B/lvtQOFB4p4I4Hp5J10H81bfHixdxzzz2qWReRWkclHMeheG3yaU8bo0ePpt25Hag3pHuRZaMbtgRg9ztTofAIBXu3g4P8n77nq/WZTH74YYYPHx5aviI1n82T4vjx9Ueo17kv8b95COcrZP/cP/PJy3+i0JdKXMtzSbn+YfL3bGPnzLvJWPcdnVteUuK2Cgp91DlG3arH4yEpKYnBgwfz1uv/IMpj1I3RISUlK28ZktQc4aVqZkbjAQ9y4PO/kXZuOxLi69K6dWs+//xznn/++SLrqWZdRE51ynaOU/GkICEhgaHDbmLmojlgMUWWTeo9gsTuA/lxytXU/9V1JPcZSVy0hxvjlpOffxiAyZMnEx8fX6Tms3Xr1ixZsoRGjRqV2Zfl38zn9CYNKDzvSqI9Hgp8HqZM/x9GX9uT0ZOf5qlFUD82ikN14qgTV4eD2buLrB8+BXe011Nq3WrwJsXY2FjWr1/P3r176dq1K3feeSfO+c+8n3vuuXz77bf06dMHETk5FS9Vi6rfkGYDH2D+xD5l/jGkmnUROdWphOM4BMeA3ph5gOXb9oXaf96fTd537+It9F/mzHztIQ5t+BqAaK+BeTiw+G18meuZ+ptO1Iv1/x0zduxY5s+fX+H+rF69miv+o0eRS+VDLmpHq1ataOT28avWyTx8TXtmDu9OQf5hLr74l3KSvXv3FknQvR4rsW71q417jhq6Lzk5ucjYzgAPPPAAEyZMYOfOnQDk5eVpBkKRk4zq10VESqYz0BUUHO0C4HCBj1ivhRLKPn368Nlnn3Hwh3l06H0tn2/KweXmEO01nryhMwOegBatzyD1+zfpn3Yv0z72T1Iwe/bsCk8qknUwj+17D3G4wHfUWXHnHCsz9vPFl1+y8NcXk5+1naQGyaxevZqmTZuyd+9e/v3vf3PPPfcU2WbxEhWAnlM+LXHovnHjxjF9+vTQuv369SMzM5PLLrsM5xxmxogRIyr02USk+pQ2jKaISG2mBLoCwm+sCQreNDjhjRXMvrkbOTk57Nu3jzbxhSRdcgHz589n+yczuOWSN/D5fMR4jSXffE3Dhg1JSUkhOTmZ7Oxs0tPTyczM5KGHHgL8JSHZ2dll9ic05vQWR+a8T+g7MiN0k1ZOTg5bt25jz1ZHbAt/DXTB3gx2vjyO8fdNwPn8w1I9/PDDnHHGGUdtOzwZX75t31FD90V7PGzPzqVzy6PHdh4+fHiRum4ROTmpfl1EpCiVcFRA8Maa4oIJZWFcA2JiYli3bh1paWn0vvgibr35JmJjY2nUqBEej4cNGzZQt27dUN1xXl4eU6dOZdSoUSQlJbFt2zZyc3PJzMwMDQVXkqJ3yXeksCCP3z78NFkH8ygsLGTcuHFcff2NRMfEhdaJTm5OysVDadqydWj68WHDhoXeb926NatWrTpqXyUN3Vfg84XOTouIiIjUBkqgK6CkRDIomFAGp79OT0/nzjvvpEWLFvh8PuomNMAXWLdVq1bs37+fzZs3s27dOm644YaI+xKezAfvkv957Vd06dietm3bEhcXxxP//TiFvqLD6tXv0pdlixeVOGlFScyMsXeODNVDxkcb258dSv15T9IwPpaZM2fi8XhYsWJFaJ0OHTqwZcuWiD+TiIiISE2mBLoCwm+siYv2hzDWa8RFe3jo1+39JQ3nnc+CBQv4/PPP8Xq93Hf/f1FQUMDq9RsBSD3tdFavXs2RI0fIz88nLy+PUaNGsXv37rJ2fZSj7pJPaEzq4If5buUaNm3axLPPPktqwwSmj7uJVjf+PnQj0LQhv+KnHRm0adOmXPupV68eq1at4vKzk5k/sQ93nvUz55zRmiYJv5zZbtGiBY899lhE/RcRERE52agGuoLCb6ypF+Pl5/xCVmXs55H31hDt8XBgh5ect18DoGHjFPbmARi+PH+dcE6dZsTG7aROXBzZ2dkkJiYyePBgbrvtNqKiyv9rCSbzEwLTdxf4fCXeJX8ibgTq27cv7733Htdffz1ff/wuNw0bypdffhl6/+qrr+aLL75g/fr1nH322RFvX0RERORkoDPQx6FhfCydWyZxZpP6tGhQh0feWxOaRts1aEX23r0AFLa7AleQD2ZYVDQAP69fwKV9+9OuXTs8Hg/16tWjXbt25OXl4Qmrr545cyZXX301jRo1YvLkyUybNu2ofvRPa876R/vR5ad3Q7O8TZs2jcmTJwP+saXNjOyd2+jcMomG8bE8/fTTmBlLliwp9+cdMmQI6enpHD58mBUrVtC9e9HJYjweDxMmTODxxx+PNJQiIiIiJw0l0CdI8RsLzeOlbutOgLF/2VwKc/eDc8Sn9QXz4KmXyKH9WXTu3Jm+ffvSpUsX1q1bh8fjoaCgIOL9x8bG8uVH7+EOHyjx/Y4dO5Kenh56PXv2bNq3bx/RPjp16sSWLVuYNWsW/fr1K3GZoUOHsmhR+WurRURERE42SqBPkOK1yIW5OeRuXQU4fPm54AAc+bu2gBmT/vg8y79byvfffw8QmsGvoqKiorjjjjt4+umnS3z/uuuuY86cOQBs3ryZxMREGjdufMztBieLCerfvz/jx4/nxhtvLLUf48aNY8qUKRX4FCIiIiI1nxLoE6RhfCwPXf3LGd1D6+dT79w+WHQcLe9+hRa/exk8Xo7s/oEoj/HrX53FTTfdxNKlS7nrrrtYuXIl55xzDvn5+SQkJHDZZZeRlpbGpEmTyt2H0aNH8+qrr7J///6j3ktISKBly5asWrWKWbNmMXjw4GNub86yjKNmHRwxYgSTJk2iY8eOpa5366238vHHH0d8Q6SIiIjIyUAJ9AnUskHd0POf18wjptlZOOc/K52QmERU/Yb4ft4bGvu5QYMG3HzzzQwaNIikpCQ2bNiAmYXGZl62bBl/+MMfyr3/hIQEbr755lKnzA7WML/99tsMGDCgzG2Fjy99IO8I4J8kpk5S46NmLCwuJiaGMWPGsGvXrnL3XURERORkoVE4TqhfyjCaDn2CvJ0bobCAn2bcSdOkevTu3oWvvphHkyZNGDZsGPv27SMrK4ukpCSysrP581//l7i4uHKVVgRlHcxje3Zu6PXYsWPp2rVriTMAXnPNNdx3331069aNhISEMrcbrOkuadbB4AgevXv3pnfv3oD/rPOtt94aWn/MmDGMGTOm3J9DRERE5GShBPoEOjc1kWivURCY1ju26ZmcNuFdYqOMBfdfWurQccGpuHd7PBz+9BPeWfbLVNxlCa4X7fGESiz6pzVn0KBBzJgxgxEjRhRZvk6dOkyZMoW2bdsec9uadVBERESkZCrhOIEaxsfy5A2difZaqC3KA3+8vnOpyXNppRJZB/PK3FdZ640bN449e/aUuN6QIUPo2rVruT5LcLKY4OQrJY0vLSIiIlLb2PGO/lDVunXr5iIZu7g6ZB3MY/WO/YBxbmpCmUnn8m37uOlvX4eSYID6sVG8MrI7nVsmnfD1IhUsEano5CsiIiIiJysz+9Y51614u0o4KkHD+FgubptSrmUrWipRVSUWDeNjlTiLiIiIhFEJRzWraKmESixEREREqodKOGqIipZKqMRCREREpHKohKOGq2iphEosRERERKpWpZZwmNlVZrbezDaa2f0lvG9m9qfA+yvM7NjDQ4iIiIiIVKNKS6DNzAv8GegLtAduNLP2xRbrC5wVeNwBPF9Z/REREREROREq8wz0+cBG59xm51w+kA5cW2yZa4GXnN8iIMnMmlVin0REREREjktlJtDNgW1hr7cH2iJdRkRERESkxqjMBNpKaCs+5Ed5lsHM7jCzJWa2ZPfu3SekcyIiIiIiFVGZCfR2oGXY6xbAjgosg3PuL865bs65bo0bNz7hHRURERERKa/KTKAXA2eZWRsziwGGAO8UW+Yd4ObAaBwXAPudcz9VYp9ERERERI5LpY0D7Zw7Yma/Az4EvMDfnXOrzWxU4P0XgPeBfsBG4BAwvLL6IyIiIiJyIlTqRCrOuffxJ8nhbS+EPXfA6Mrsg4iIiIjIiVSpE6mIiIiIiJxqlECLiIiIiERACbSIiIiISASUQIuIiIiIREAJtIiIiIhIBJRAi4iIiIhEQAm0iIiIiEgElECLiIiIiETA/HOZnDzMbDfwYzXtvhGwp5r2XRsovpVL8a18inHlUnwrl+JbuRTfylcZMT7NOde4eONJl0BXJzNb4pzrVt39OFUpvpVL8a18inHlUnwrl+JbuRTfyleVMVYJh4iIiIhIBJRAi4iIiIhEQAl0ZP5S3R04xSm+lUvxrXyKceVSfCuX4lu5FN/KV2UxVg20iIiIiEgEdAZaRERERCQCSqDLwcyuMrP1ZrbRzO6v7v7UZGbW0sw+M7O1ZrbazO4JtE82swwzWxZ49Atb54FAbNeb2ZVh7eeZ2crAe38yMwu0x5rZa4H2r82sdVV/zupkZlsCcVlmZksCbclm9pGZbQj8bBC2vOJbTmZ2dtgxuszMcsxsrI7f42NmfzezXWa2KqytSo5ZM7slsI8NZnZL1XziqlVKfP9oZuvMbIWZvWVmSYH21maWG3YsvxC2juJbglLiWyXfCbUhvlBqjF8Li+8WM1sWaK8Zx7BzTo8yHoAX2AScDsQAy4H21d2vmvoAmgFdA8/rA98D7YHJwPgSlm8fiGks0CYQa2/gvW+AHoABHwB9A+13AS8Eng8BXqvuz13FMd4CNCrWNhW4P/D8fmCK4nvccfYCO4HTdPwedywvBroCq8LaKv2YBZKBzYGfDQLPG1R3PKoovlcAUYHnU8Li2zp8uWLbUXzLH99K/06oLfEtLcbF3n8SmBR4XiOOYZ2BPrbzgY3Ouc3OuXwgHbi2mvtUYznnfnLOLQ08PwCsBZqXscq1QLpzLs859wOwETjfzJoBCc65hc5/lL8EXBe2zouB57OBS4N/ZdZi4TF5kaKxUnwr5lJgk3OurImbFN9ycM59Aewt1lwVx+yVwEfOub3OuWzgI+CqE/8Jq1dJ8XXOzXXOHQm8XAS0KGsbim/pSjl+S6PjtwLKinEgFoOAWWVto6pjrAT62JoD28Jeb6fshFACApdIugBfB5p+F7ic+Hf75XJtafFtHnhevL3IOoH/IPYDDSvhI9RUDphrZt+a2R2BtibOuZ/A/0cMkBJoV3wrbghFv7B1/J5YVXHM6vvbbwT+s3FBbczsOzObZ2a9Am2Kb+Qq+zuhtsc3qBeQ6ZzbENZW7cewEuhjK+nMkIYuOQYziwfeAMY653KA54EzgDTgJ/yXY6D0+JYV99r+O+npnOsK9AVGm9nFZSyr+FaAmcUA/YF/Bpp0/FadExnTWh9rM3sQOAK8Gmj6CWjlnOsC3Av8w8wSUHwjVRXfCbU5vuFupOjJjBpxDCuBPrbtQMuw1y2AHdXUl5OCmUXjT55fdc69CeCcy3TOFTrnfMBf8ZfGQOnx3U7RS47hcQ+tY2ZRQCLlv7x20nPO7Qj83AW8hT+WmYHLV8HLWLsCiyu+FdMXWOqcywQdv5WkKo7ZWv39Hbgh6mpgWOCSNoHSgqzA82/x1+i2RfGNSBV9J9Ta+AYF4jEQeC3YVlOOYSXQx7YYOMvM2gTOSg0B3qnmPtVYgZqiGcBa59xTYe3NwhYbAATvtH0HGBK4Q7YNcBbwTeCS7gEzuyCwzZuBOWHrBO+UvR74NPifw6nOzOqZWf3gc/w3Cq2iaExuoWisFN/IFTnjoeO3UlTFMfshcIWZNQhcYr8i0HbKM7OrgIlAf+fcobD2xmbmDTw/HX98Nyu+kami74RaG98wlwHrnHOh0owacwyX507D2v4A+uEfTWIT8GB196cmP4CL8F/+WAEsCzz6AS8DKwPt7wDNwtZ5MBDb9QTumA20d8P/pbQJmM4vE//E4b+0vhH/HbenV/fnrsL4no7/Du/lwOrg8Yi/lusTYEPgZ7LiW+EY1wWygMSwNh2/xxfTWfgvuxbgP+NzW1Uds/jrfzcGHsOrOxZVGN+N+Gs7g9/DwREIfhP47lgOLAWuUXwrFN8q+U6oDfEtLcaB9pnAqGLL1ohjWDMRioiIiIhEQCUcIiIiIiIRUAItIiIiIhIBJdAiIiIiIhFQAi0iIiIiEgEl0CIiIiIiEVACLSJSjcysoZktCzx2mllG2OuYEpZPNrNR5dhulJntq+j6ZWz3XjOLq+j6IiKnAg1jJyJSQ5jZZOCgc25aGcucCcx2zqUdY1tRwB7nXFJF1i9ju9uBDs65o5JzEZHaQmegRURqKDObYGarAo+7A81PAGcHzlA/YWYJZvapmS01sxVmdvUxNltk/cB+7jezbwLrTwq01TezD8xseWD/15vZfwIpwJdm9nHgLPfLZrYysMyYyoqFiEhNElXdHRARkaOZ2fnAMOB8wAt8Y2bzgPuBM4NnkM0sGrjWOXfAzFKA+cC/yth08fX7Aa2A7oAB75vZhUBLYItzrm9guUTn3H4zGwf0cs7tM7PuQCPnXMfAMkkl7E9E5JSjM9AiIjVTL+AN59wh59wB4G3gohKWM2CKma0A5gItzaxRBPu5AugLfId/Wtwzgbb4pyi+KnCWu6dzbn8J627Efzb7f8zsSqCkZURETjk6Ay0iUjNZOZe7GUgEujrnjgRqlCO5yc+AR51zM456w6wb0A/4o5n9yzn3ePj7zrksM+uEPwEfA/wGuCOCfYuInJR0BlpEpGb6AhhgZnXMLB64FvgSOADUD1suEdgVSJ4vB5ofY7vF1/8QuM3M6gGYWQsza2RmzfHf0Pgy8BTQtfj6ZtYY/83o/wQeDltGROSUpjPQIiI1kHPuGzObBSwOND3vnFsJYGZLzGwl8B7+5PZdM1uCvwRjwzG2mxm+vnPufjNrBywyM/AnyEOB9sATZuYD8oHg0Hd/AT42s23ABGCG+Vd0wMQT9flFRGoyDWMnIiIiIhIBlXCIiIiIiERACbSIiIiISASUQIuIiIiIREAJtIiIiIhIBJRAi4iIiIhEQAm0iIiIiEgElECLiIiIiERACbSIiIiISAT+D4fB9YqwqhyFAAAAAElFTkSuQmCC\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "lplot = latest.plot(\n", " x='total',\n", " y='posrate',\n", " kind='scatter',\n", " title='Positive test rate',\n", " figsize=(12,8)\n", ")\n", "plt.xlabel('Total tests')\n", "plt.ylabel('Proportion positive')\n", "for i in range(len(latest)):\n", " try:\n", " row = latest.loc[i]\n", " lplot.annotate(row['state'], (row['total'], row['posrate']))\n", " print(row['state'], row['total'], row['posrate'])\n", " except KeyError:\n", " pass" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['/home/leon/Covid-19/SCPRC-EST2019-18+POP-RES.csv',\n", " '/home/leon/Covid-19/state_abbreviations.csv']" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "state_pop_file = os.path.abspath(os.path.join(\n", " covid19_dir,\n", " os.pardir,\n", " state_populations\n", "))\n", "state_abb_file = os.path.abspath(os.path.join(\n", " covid19_dir,\n", " os.pardir,\n", " state_abbreviations\n", "))\n", "[\n", " state_pop_file,\n", " state_abb_file\n", "]" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
SUMLEVREGIONDIVISIONSTATEPOPESTIMATE2019POPEST18PLUS2019PCNT_POPEST18PLUS
Abbreviation
AL403614903185381487977.8
AK4049273154555156275.4
AZ404847278717563848177.5
AR403753017804231764976.8
CA40496395122233061758277.5
CO404885758736449921778.1
CT401193565287283784779.6
DE40351097376477019279.1
DC40351170574957758181.8
FL403512214777371724780880.3
GA40351310617423811354276.4
HI4049151415872111600478.8
ID4048161787065133886474.9
IL40231712671821985394677.8
IN4023186732219516424576.7
IA4024193155070242822977.0
KS4024202913314221306476.0
KY4036214467673346480277.6
LA4037224648794356116476.6
ME4011231344212109537081.5
MD4035246045680471099377.9
MA4011256892503553970380.4
MI4023269986857784292478.5
MN4024275639632433647576.9
MS4036282976149227756676.5
MO4024296137428476684377.7
MT404830106877884019078.6
NE4024311934408145833475.4
NV4048323080156238751777.5
NH4011331359711110445881.2
NJ4012348882190694361278.2
NM4048352096829162099177.3
NY401236194535611542526279.3
NC40353710488084818736978.1
ND40243876206258189176.4
OH40233911689100911108177.9
OK4037403956971300473375.9
OR4049414217737335117579.5
PA401242128019891016737679.4
RI401144105936185486680.7
SC4035455148714403753178.4
SD40244688465966755875.5
TN4036476829174531912377.9
TX403748289958812159607174.5
UT4048493205958227477471.0
VT40115062398950998481.7
VA4035518535519667467178.2
WA4049537614893595183278.2
WV4035541792147143258079.9
WI4023555822434455583778.2
WY40485657875944502576.9
\n", "
" ], "text/plain": [ " SUMLEV REGION DIVISION STATE POPESTIMATE2019 \\\n", "Abbreviation \n", "AL 40 3 6 1 4903185 \n", "AK 40 4 9 2 731545 \n", "AZ 40 4 8 4 7278717 \n", "AR 40 3 7 5 3017804 \n", "CA 40 4 9 6 39512223 \n", "CO 40 4 8 8 5758736 \n", "CT 40 1 1 9 3565287 \n", "DE 40 3 5 10 973764 \n", "DC 40 3 5 11 705749 \n", "FL 40 3 5 12 21477737 \n", "GA 40 3 5 13 10617423 \n", "HI 40 4 9 15 1415872 \n", "ID 40 4 8 16 1787065 \n", "IL 40 2 3 17 12671821 \n", "IN 40 2 3 18 6732219 \n", "IA 40 2 4 19 3155070 \n", "KS 40 2 4 20 2913314 \n", "KY 40 3 6 21 4467673 \n", "LA 40 3 7 22 4648794 \n", "ME 40 1 1 23 1344212 \n", "MD 40 3 5 24 6045680 \n", "MA 40 1 1 25 6892503 \n", "MI 40 2 3 26 9986857 \n", "MN 40 2 4 27 5639632 \n", "MS 40 3 6 28 2976149 \n", "MO 40 2 4 29 6137428 \n", "MT 40 4 8 30 1068778 \n", "NE 40 2 4 31 1934408 \n", "NV 40 4 8 32 3080156 \n", "NH 40 1 1 33 1359711 \n", "NJ 40 1 2 34 8882190 \n", "NM 40 4 8 35 2096829 \n", "NY 40 1 2 36 19453561 \n", "NC 40 3 5 37 10488084 \n", "ND 40 2 4 38 762062 \n", "OH 40 2 3 39 11689100 \n", "OK 40 3 7 40 3956971 \n", "OR 40 4 9 41 4217737 \n", "PA 40 1 2 42 12801989 \n", "RI 40 1 1 44 1059361 \n", "SC 40 3 5 45 5148714 \n", "SD 40 2 4 46 884659 \n", "TN 40 3 6 47 6829174 \n", "TX 40 3 7 48 28995881 \n", "UT 40 4 8 49 3205958 \n", "VT 40 1 1 50 623989 \n", "VA 40 3 5 51 8535519 \n", "WA 40 4 9 53 7614893 \n", "WV 40 3 5 54 1792147 \n", "WI 40 2 3 55 5822434 \n", "WY 40 4 8 56 578759 \n", "\n", " POPEST18PLUS2019 PCNT_POPEST18PLUS \n", "Abbreviation \n", "AL 3814879 77.8 \n", "AK 551562 75.4 \n", "AZ 5638481 77.5 \n", "AR 2317649 76.8 \n", "CA 30617582 77.5 \n", "CO 4499217 78.1 \n", "CT 2837847 79.6 \n", "DE 770192 79.1 \n", "DC 577581 81.8 \n", "FL 17247808 80.3 \n", "GA 8113542 76.4 \n", "HI 1116004 78.8 \n", "ID 1338864 74.9 \n", "IL 9853946 77.8 \n", "IN 5164245 76.7 \n", "IA 2428229 77.0 \n", "KS 2213064 76.0 \n", "KY 3464802 77.6 \n", "LA 3561164 76.6 \n", "ME 1095370 81.5 \n", "MD 4710993 77.9 \n", "MA 5539703 80.4 \n", "MI 7842924 78.5 \n", "MN 4336475 76.9 \n", "MS 2277566 76.5 \n", "MO 4766843 77.7 \n", "MT 840190 78.6 \n", "NE 1458334 75.4 \n", "NV 2387517 77.5 \n", "NH 1104458 81.2 \n", "NJ 6943612 78.2 \n", "NM 1620991 77.3 \n", "NY 15425262 79.3 \n", "NC 8187369 78.1 \n", "ND 581891 76.4 \n", "OH 9111081 77.9 \n", "OK 3004733 75.9 \n", "OR 3351175 79.5 \n", "PA 10167376 79.4 \n", "RI 854866 80.7 \n", "SC 4037531 78.4 \n", "SD 667558 75.5 \n", "TN 5319123 77.9 \n", "TX 21596071 74.5 \n", "UT 2274774 71.0 \n", "VT 509984 81.7 \n", "VA 6674671 78.2 \n", "WA 5951832 78.2 \n", "WV 1432580 79.9 \n", "WI 4555837 78.2 \n", "WY 445025 76.9 " ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "state_pops = pd.read_csv(state_pop_file)\n", "state_abbs = pd.read_csv(state_abb_file)\n", "state_pops.set_index('NAME', inplace=True)\n", "state_abbs.set_index('State', inplace=True)\n", "state_pops_with_abbs = state_pops.join(state_abbs, how='inner')\n", "state_pops_with_abbs.set_index('Abbreviation', inplace=True)\n", "state_pops_with_abbs" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
datepositivenegativependinghospitalizeddeathtotalhashdateCheckedtotalTestResultsfipsdeathIncreasehospitalizedIncreasenegativeIncreasepositiveIncreasetotalTestResultsIncreaseposrate
state
AK20200329102.03232.0NaN6.02.03334d4c0789e67f59e98176a9ea96200ed348161c6d42020-03-29 20:00:00+00:003334020.01.0396.017.0413.00.030594
AL20200329806.04184.0NaNNaN4.049909dbf0b598d35897b1f6857899d0a834990f4ec512020-03-29 20:00:00+00:004990011.00.00.0110.0110.00.161523
AR20200329426.03027.0NaN48.06.034532c8ed5059d37cc0aa0d20f4f3066a64db930c6c52020-03-29 20:00:00+00:003453051.00.089.022.0111.00.123371
AZ20200329919.012953.0NaN78.017.01387214deca609d3762fb4b92807785e2b9c7015661e62020-03-29 20:00:00+00:0013872042.078.05498.046.05544.00.066249
CA202003295708.020549.064400.01034.0123.090657c364ec885909accfd4baf8e2d329903900870ba92020-03-29 20:00:00+00:00262570622.00.00.01065.01065.00.062963
CO202003292061.011215.0NaN274.044.01327610769183d6c8ae4f67d7694c1e90e053315457ad2020-03-29 20:00:00+00:00132760813.035.01273.0327.01600.00.155243
CT202003291993.09907.0NaN404.034.011900a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e2020-03-29 20:00:00+00:0011900097.0231.02798.0702.03500.00.167479
DC20200329342.02469.01.0NaN5.02812951af61bdce7b51bbfb818f7d11e3865a59e31ae2020-03-29 20:00:00+00:002811111.00.0258.038.0296.00.121622
DE20200329232.036.0NaN33.06.0268ba8edd92448c4db2b977c3e519df1d6421968cd12020-03-29 20:00:00+00:00268103.02.00.018.018.00.865672
FL202003294246.039070.0NaN594.056.0433168ce3ce4c8ee42dd4925356994534079c50bc67ca2020-03-29 20:00:00+00:0043316122.068.03704.0483.04187.00.098024
GA202003292651.09913.0NaN666.080.0125647d692c3fbf28e3dbfdd58fc99dace80c1a9958d22020-03-29 20:00:00+00:00125641311.049.01228.0285.01513.00.211000
GU2020032956.0334.0NaN15.01.0390c375c6bdc73751dd51ba6d5889c9e84d533035102020-03-29 20:00:00+00:00390660.00.035.01.036.00.143590
HI20200329151.06849.04.012.00.07004f9ea13c2d669a5af5e440577fd13339db609c58d2020-03-29 20:00:00+00:007000150.04.02492.031.02523.00.021559
IA20200329336.05013.0NaN68.04.053490e8a6c975f6cdda9eb1f68596e52293afbfba37e2020-03-29 20:00:00+00:005349191.07.0638.038.0676.00.062815
ID20200329261.04021.0NaN36.05.04282e58918bfa4321b0a6884b02c3ff7761ec4778e6b2020-03-29 20:00:00+00:004282161.011.0679.031.0710.00.060953
IL202003294596.023166.0NaNNaN65.027762e6e6b00bdc70ca71fc14b3056568dfc40097d7502020-03-29 20:00:00+00:00277621718.00.01166.01105.02271.00.165550
IN202003291514.08316.0NaNNaN32.09830659e4aad9785c14cf15e898f481aebda271e73e32020-03-29 20:00:00+00:009830181.00.01141.0282.01423.00.154018
KS20200329319.04194.0NaN55.06.04513be3c8cd4ff2e10e3092723512f8ea5a03ec9d4862020-03-29 20:00:00+00:004513201.028.0523.058.0581.00.070685
KY20200329394.05147.0NaNNaN9.05541563d46bc3630e17fd60499a2115df267a8645ae02020-03-29 20:00:00+00:005541211.00.0326.092.0418.00.071106
LA202003293540.024331.0NaN1127.0151.02787138b4d0f6b224b46b63a1c01841b1d1385a2a37422020-03-29 20:00:00+00:00278712214.0200.02485.0225.02710.00.127014
MA202003294955.034111.0NaN399.048.03906685320d5eb34b32da6ffe44dfb937835574a335a12020-03-29 20:00:00+00:0039066254.049.03319.0698.04017.00.126837
MD202003291239.012354.0NaN277.010.013593b017ab05576951a20e7c57f1faf56b614bc443f12020-03-29 20:00:00+00:0013593245.051.0838.0247.01085.00.091150
ME20200329253.03394.0NaNNaN3.036472e6f8d654325315d3ff90837e0355efb83712cdb2020-03-29 20:00:00+00:003647232.00.00.042.042.00.069372
MI202003295486.011893.0NaNNaN132.01737925fd0b3fada36382067e735f2ea785fcbb58376a2020-03-29 20:00:00+00:00173792640.00.02784.01829.04613.00.315668
MN20200329503.017154.0NaN75.09.017657a7684a9182a0b32142849036fecf82ec7701d8a32020-03-29 20:00:00+00:0017657274.018.01466.062.01528.00.028487
MO20200329838.011547.0NaNNaN10.012385228bc579fa237f56c7e55fd2dd8f9bfe9d410b202020-03-29 20:00:00+00:0012385290.00.01465.00.01465.00.067662
MP202003292.0NaNNaNNaNNaN28499fa1ff060f43b78b442e20c46c954955343852020-03-29 20:00:00+00:002690.00.00.00.00.01.000000
MS20200329758.02560.0NaN235.014.03318daa6037b61ae96e6c2526a155139e7e732cd03682020-03-29 20:00:00+00:003318281.016.00.095.095.00.228451
MT20200329154.04143.0NaN8.01.04297d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee2020-03-29 20:00:00+00:004297300.01.0887.025.0912.00.035839
NC202003291040.017905.0NaN91.04.01894594c103bb6dc3385d5a5f366a0913180f83223df82020-03-29 20:00:00+00:0018945370.04.01313.0105.01418.00.054896
ND2020032998.03355.0NaN17.01.034532c4c2aa7b34f5a07b885b9fe64752fa44d9decb52020-03-29 20:00:00+00:003453380.01.0546.015.0561.00.028381
NE20200329108.01968.04.0NaN2.0208044e85c9c9b448faa6a1b8a6af39c84820610bff02020-03-29 20:00:00+00:002076310.00.064.012.076.00.051923
NH20200329214.04524.0285.033.02.050235602e725da5424f5efebbaa8e3b8ac7c71a21d532020-03-29 20:00:00+00:004738330.03.0868.027.0895.00.042604
NJ2020032913386.022216.0NaNNaN161.0356025e0cce3ce15a05bc385736f7f690e041feb4f2d92020-03-29 20:00:00+00:00356023421.00.02830.02262.05092.00.375990
NM20200329237.010769.0NaN19.02.011006c76b9199e33fb36ea9e9509cce54c2ad94146dfd2020-03-29 20:00:00+00:0011006351.02.01573.046.01619.00.021534
NV20200329738.08412.0NaNNaN14.09150d0408e54d643518f6c0b61bd367061c20ea693272020-03-29 20:00:00+00:009150324.00.0511.0117.0628.00.080656
NY2020032959513.0112847.0NaN12075.0965.0172360ba807849425122f97cff754bfca452232a1e75ce2020-03-29 20:00:00+00:0017236036237.02021.09231.07195.016426.00.345283
OH202003291653.019012.0NaN403.029.020665bf97498f0e2f4741137db5392baa1abf5648979f2020-03-29 20:00:00+00:0020665394.059.00.0247.0247.00.079990
OK20200329429.01205.0NaN140.016.0163443ef7985bd9555698d09d6a950875ade320286df2020-03-29 20:00:00+00:001634401.014.025.052.077.00.262546
OR20200329548.010878.0NaN129.013.011426ec860456b55d5a18391c8cbf2748ea02bf908fd22020-03-29 20:00:00+00:0011426410.012.01185.069.01254.00.047961
PA202003293394.030061.0NaN682.038.033455ad1df7816ad6d19a996749d630bc38345291f26e2020-03-29 20:00:00+00:0033455424.00.04807.0643.05450.00.101450
PR20200329127.0841.0817.0NaN5.017855b8d867a604216d7e456141b6f80f93183e22f2c2020-03-29 20:00:00+00:00968722.00.0102.027.0129.00.071148
RI20200329294.02541.0NaN35.03.02835a4d42dba093e9b91662dc7547081bffbecd06bef2020-03-29 20:00:00+00:002835443.07.0235.091.0326.00.103704
SC20200329774.03015.0NaN129.016.03789b85a9aaa3da2d62f633714b4d08f409109f52bb42020-03-29 20:00:00+00:003789453.00.0607.0235.0842.00.204276
SD2020032990.03127.01.0NaN1.032182ecdd93c12093321637eb882b51f779ef2269d3a2020-03-29 20:00:00+00:003217460.00.0535.022.0557.00.027968
TN202003291537.019037.0NaN133.07.020574c928e23a1549ab46b5a78ea8b86ea8fa727ca05f2020-03-29 20:00:00+00:0020574471.015.02072.0164.02236.00.074706
TX202003292552.023208.0NaNNaN34.02576038db35dbc7abd19b31e25fa9eaa4165ad5eece4a2020-03-29 20:00:00+00:0025760487.00.00.0500.0500.00.099068
UT20200329719.013274.0NaNNaN2.0139937da47dee17adc7161be7aeefa3d507b3bc735edf2020-03-29 20:00:00+00:0013993490.00.02564.0117.02681.00.051383
VA20200329890.09719.0NaN112.022.01060966ebeae58d1a5e123904bd7f39d840dbe24449c22020-03-29 20:00:00+00:0010609515.013.01292.0151.01443.00.083891
VI2020032923.0123.037.0NaNNaN18315a59f27f2acd69bd9c1e95a02de01c044339d2f2020-03-29 20:00:00+00:00146780.00.017.01.018.00.125683
VT20200329235.03466.0NaN18.012.0370190a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e2020-03-29 20:00:00+00:003701500.00.01303.024.01327.00.063496
WA202003294310.054896.0NaN254.0189.05920602bb082a97f1ddda79562a855dd090e632e2e5e92020-03-29 20:00:00+00:00592065314.00.05881.0587.06468.00.072797
WI202003291112.016550.0NaNNaN13.0176622cd5d65e6cf10a667f00fe96ffd78eb8507131292020-03-29 20:00:00+00:0017662550.00.01318.0123.01441.00.062960
WV20200329113.02705.00.01.00.02818626ca2fdd89b005a3d3b606376e4ac5fd2a4772c2020-03-29 20:00:00+00:002818540.00.0374.017.0391.00.040099
WY2020032986.01554.0NaN15.00.01640e6365afc2c29afd4168c8d82cd573124272811402020-03-29 20:00:00+00:001640560.01.079.04.083.00.052439
\n", "
" ], "text/plain": [ " date positive negative pending hospitalized death total \\\n", "state \n", "AK 20200329 102.0 3232.0 NaN 6.0 2.0 3334 \n", "AL 20200329 806.0 4184.0 NaN NaN 4.0 4990 \n", "AR 20200329 426.0 3027.0 NaN 48.0 6.0 3453 \n", "AZ 20200329 919.0 12953.0 NaN 78.0 17.0 13872 \n", "CA 20200329 5708.0 20549.0 64400.0 1034.0 123.0 90657 \n", "CO 20200329 2061.0 11215.0 NaN 274.0 44.0 13276 \n", "CT 20200329 1993.0 9907.0 NaN 404.0 34.0 11900 \n", "DC 20200329 342.0 2469.0 1.0 NaN 5.0 2812 \n", "DE 20200329 232.0 36.0 NaN 33.0 6.0 268 \n", "FL 20200329 4246.0 39070.0 NaN 594.0 56.0 43316 \n", "GA 20200329 2651.0 9913.0 NaN 666.0 80.0 12564 \n", "GU 20200329 56.0 334.0 NaN 15.0 1.0 390 \n", "HI 20200329 151.0 6849.0 4.0 12.0 0.0 7004 \n", "IA 20200329 336.0 5013.0 NaN 68.0 4.0 5349 \n", "ID 20200329 261.0 4021.0 NaN 36.0 5.0 4282 \n", "IL 20200329 4596.0 23166.0 NaN NaN 65.0 27762 \n", "IN 20200329 1514.0 8316.0 NaN NaN 32.0 9830 \n", "KS 20200329 319.0 4194.0 NaN 55.0 6.0 4513 \n", "KY 20200329 394.0 5147.0 NaN NaN 9.0 5541 \n", "LA 20200329 3540.0 24331.0 NaN 1127.0 151.0 27871 \n", "MA 20200329 4955.0 34111.0 NaN 399.0 48.0 39066 \n", "MD 20200329 1239.0 12354.0 NaN 277.0 10.0 13593 \n", "ME 20200329 253.0 3394.0 NaN NaN 3.0 3647 \n", "MI 20200329 5486.0 11893.0 NaN NaN 132.0 17379 \n", "MN 20200329 503.0 17154.0 NaN 75.0 9.0 17657 \n", "MO 20200329 838.0 11547.0 NaN NaN 10.0 12385 \n", "MP 20200329 2.0 NaN NaN NaN NaN 2 \n", "MS 20200329 758.0 2560.0 NaN 235.0 14.0 3318 \n", "MT 20200329 154.0 4143.0 NaN 8.0 1.0 4297 \n", "NC 20200329 1040.0 17905.0 NaN 91.0 4.0 18945 \n", "ND 20200329 98.0 3355.0 NaN 17.0 1.0 3453 \n", "NE 20200329 108.0 1968.0 4.0 NaN 2.0 2080 \n", "NH 20200329 214.0 4524.0 285.0 33.0 2.0 5023 \n", "NJ 20200329 13386.0 22216.0 NaN NaN 161.0 35602 \n", "NM 20200329 237.0 10769.0 NaN 19.0 2.0 11006 \n", "NV 20200329 738.0 8412.0 NaN NaN 14.0 9150 \n", "NY 20200329 59513.0 112847.0 NaN 12075.0 965.0 172360 \n", "OH 20200329 1653.0 19012.0 NaN 403.0 29.0 20665 \n", "OK 20200329 429.0 1205.0 NaN 140.0 16.0 1634 \n", "OR 20200329 548.0 10878.0 NaN 129.0 13.0 11426 \n", "PA 20200329 3394.0 30061.0 NaN 682.0 38.0 33455 \n", "PR 20200329 127.0 841.0 817.0 NaN 5.0 1785 \n", "RI 20200329 294.0 2541.0 NaN 35.0 3.0 2835 \n", "SC 20200329 774.0 3015.0 NaN 129.0 16.0 3789 \n", "SD 20200329 90.0 3127.0 1.0 NaN 1.0 3218 \n", "TN 20200329 1537.0 19037.0 NaN 133.0 7.0 20574 \n", "TX 20200329 2552.0 23208.0 NaN NaN 34.0 25760 \n", "UT 20200329 719.0 13274.0 NaN NaN 2.0 13993 \n", "VA 20200329 890.0 9719.0 NaN 112.0 22.0 10609 \n", "VI 20200329 23.0 123.0 37.0 NaN NaN 183 \n", "VT 20200329 235.0 3466.0 NaN 18.0 12.0 3701 \n", "WA 20200329 4310.0 54896.0 NaN 254.0 189.0 59206 \n", "WI 20200329 1112.0 16550.0 NaN NaN 13.0 17662 \n", "WV 20200329 113.0 2705.0 0.0 1.0 0.0 2818 \n", "WY 20200329 86.0 1554.0 NaN 15.0 0.0 1640 \n", "\n", " hash dateChecked \\\n", "state \n", "AK d4c0789e67f59e98176a9ea96200ed348161c6d4 2020-03-29 20:00:00+00:00 \n", "AL 9dbf0b598d35897b1f6857899d0a834990f4ec51 2020-03-29 20:00:00+00:00 \n", "AR 2c8ed5059d37cc0aa0d20f4f3066a64db930c6c5 2020-03-29 20:00:00+00:00 \n", "AZ 14deca609d3762fb4b92807785e2b9c7015661e6 2020-03-29 20:00:00+00:00 \n", "CA c364ec885909accfd4baf8e2d329903900870ba9 2020-03-29 20:00:00+00:00 \n", "CO 10769183d6c8ae4f67d7694c1e90e053315457ad 2020-03-29 20:00:00+00:00 \n", "CT a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e 2020-03-29 20:00:00+00:00 \n", "DC 951af61bdce7b51bbfb818f7d11e3865a59e31ae 2020-03-29 20:00:00+00:00 \n", "DE ba8edd92448c4db2b977c3e519df1d6421968cd1 2020-03-29 20:00:00+00:00 \n", "FL 8ce3ce4c8ee42dd4925356994534079c50bc67ca 2020-03-29 20:00:00+00:00 \n", "GA 7d692c3fbf28e3dbfdd58fc99dace80c1a9958d2 2020-03-29 20:00:00+00:00 \n", "GU c375c6bdc73751dd51ba6d5889c9e84d53303510 2020-03-29 20:00:00+00:00 \n", "HI f9ea13c2d669a5af5e440577fd13339db609c58d 2020-03-29 20:00:00+00:00 \n", "IA 0e8a6c975f6cdda9eb1f68596e52293afbfba37e 2020-03-29 20:00:00+00:00 \n", "ID e58918bfa4321b0a6884b02c3ff7761ec4778e6b 2020-03-29 20:00:00+00:00 \n", "IL e6e6b00bdc70ca71fc14b3056568dfc40097d750 2020-03-29 20:00:00+00:00 \n", "IN 659e4aad9785c14cf15e898f481aebda271e73e3 2020-03-29 20:00:00+00:00 \n", "KS be3c8cd4ff2e10e3092723512f8ea5a03ec9d486 2020-03-29 20:00:00+00:00 \n", "KY 563d46bc3630e17fd60499a2115df267a8645ae0 2020-03-29 20:00:00+00:00 \n", "LA 38b4d0f6b224b46b63a1c01841b1d1385a2a3742 2020-03-29 20:00:00+00:00 \n", "MA 85320d5eb34b32da6ffe44dfb937835574a335a1 2020-03-29 20:00:00+00:00 \n", "MD b017ab05576951a20e7c57f1faf56b614bc443f1 2020-03-29 20:00:00+00:00 \n", "ME 2e6f8d654325315d3ff90837e0355efb83712cdb 2020-03-29 20:00:00+00:00 \n", "MI 25fd0b3fada36382067e735f2ea785fcbb58376a 2020-03-29 20:00:00+00:00 \n", "MN a7684a9182a0b32142849036fecf82ec7701d8a3 2020-03-29 20:00:00+00:00 \n", "MO 228bc579fa237f56c7e55fd2dd8f9bfe9d410b20 2020-03-29 20:00:00+00:00 \n", "MP 8499fa1ff060f43b78b442e20c46c95495534385 2020-03-29 20:00:00+00:00 \n", "MS daa6037b61ae96e6c2526a155139e7e732cd0368 2020-03-29 20:00:00+00:00 \n", "MT d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee 2020-03-29 20:00:00+00:00 \n", "NC 94c103bb6dc3385d5a5f366a0913180f83223df8 2020-03-29 20:00:00+00:00 \n", "ND 2c4c2aa7b34f5a07b885b9fe64752fa44d9decb5 2020-03-29 20:00:00+00:00 \n", "NE 44e85c9c9b448faa6a1b8a6af39c84820610bff0 2020-03-29 20:00:00+00:00 \n", "NH 5602e725da5424f5efebbaa8e3b8ac7c71a21d53 2020-03-29 20:00:00+00:00 \n", "NJ 5e0cce3ce15a05bc385736f7f690e041feb4f2d9 2020-03-29 20:00:00+00:00 \n", "NM c76b9199e33fb36ea9e9509cce54c2ad94146dfd 2020-03-29 20:00:00+00:00 \n", "NV d0408e54d643518f6c0b61bd367061c20ea69327 2020-03-29 20:00:00+00:00 \n", "NY ba807849425122f97cff754bfca452232a1e75ce 2020-03-29 20:00:00+00:00 \n", "OH bf97498f0e2f4741137db5392baa1abf5648979f 2020-03-29 20:00:00+00:00 \n", "OK 43ef7985bd9555698d09d6a950875ade320286df 2020-03-29 20:00:00+00:00 \n", "OR ec860456b55d5a18391c8cbf2748ea02bf908fd2 2020-03-29 20:00:00+00:00 \n", "PA ad1df7816ad6d19a996749d630bc38345291f26e 2020-03-29 20:00:00+00:00 \n", "PR 5b8d867a604216d7e456141b6f80f93183e22f2c 2020-03-29 20:00:00+00:00 \n", "RI a4d42dba093e9b91662dc7547081bffbecd06bef 2020-03-29 20:00:00+00:00 \n", "SC b85a9aaa3da2d62f633714b4d08f409109f52bb4 2020-03-29 20:00:00+00:00 \n", "SD 2ecdd93c12093321637eb882b51f779ef2269d3a 2020-03-29 20:00:00+00:00 \n", "TN c928e23a1549ab46b5a78ea8b86ea8fa727ca05f 2020-03-29 20:00:00+00:00 \n", "TX 38db35dbc7abd19b31e25fa9eaa4165ad5eece4a 2020-03-29 20:00:00+00:00 \n", "UT 7da47dee17adc7161be7aeefa3d507b3bc735edf 2020-03-29 20:00:00+00:00 \n", "VA 66ebeae58d1a5e123904bd7f39d840dbe24449c2 2020-03-29 20:00:00+00:00 \n", "VI 15a59f27f2acd69bd9c1e95a02de01c044339d2f 2020-03-29 20:00:00+00:00 \n", "VT 90a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e 2020-03-29 20:00:00+00:00 \n", "WA 02bb082a97f1ddda79562a855dd090e632e2e5e9 2020-03-29 20:00:00+00:00 \n", "WI 2cd5d65e6cf10a667f00fe96ffd78eb850713129 2020-03-29 20:00:00+00:00 \n", "WV 626ca2fdd89b005a3d3b606376e4ac5fd2a4772c 2020-03-29 20:00:00+00:00 \n", "WY e6365afc2c29afd4168c8d82cd57312427281140 2020-03-29 20:00:00+00:00 \n", "\n", " totalTestResults fips deathIncrease hospitalizedIncrease \\\n", "state \n", "AK 3334 02 0.0 1.0 \n", "AL 4990 01 1.0 0.0 \n", "AR 3453 05 1.0 0.0 \n", "AZ 13872 04 2.0 78.0 \n", "CA 26257 06 22.0 0.0 \n", "CO 13276 08 13.0 35.0 \n", "CT 11900 09 7.0 231.0 \n", "DC 2811 11 1.0 0.0 \n", "DE 268 10 3.0 2.0 \n", "FL 43316 12 2.0 68.0 \n", "GA 12564 13 11.0 49.0 \n", "GU 390 66 0.0 0.0 \n", "HI 7000 15 0.0 4.0 \n", "IA 5349 19 1.0 7.0 \n", "ID 4282 16 1.0 11.0 \n", "IL 27762 17 18.0 0.0 \n", "IN 9830 18 1.0 0.0 \n", "KS 4513 20 1.0 28.0 \n", "KY 5541 21 1.0 0.0 \n", "LA 27871 22 14.0 200.0 \n", "MA 39066 25 4.0 49.0 \n", "MD 13593 24 5.0 51.0 \n", "ME 3647 23 2.0 0.0 \n", "MI 17379 26 40.0 0.0 \n", "MN 17657 27 4.0 18.0 \n", "MO 12385 29 0.0 0.0 \n", "MP 2 69 0.0 0.0 \n", "MS 3318 28 1.0 16.0 \n", "MT 4297 30 0.0 1.0 \n", "NC 18945 37 0.0 4.0 \n", "ND 3453 38 0.0 1.0 \n", "NE 2076 31 0.0 0.0 \n", "NH 4738 33 0.0 3.0 \n", "NJ 35602 34 21.0 0.0 \n", "NM 11006 35 1.0 2.0 \n", "NV 9150 32 4.0 0.0 \n", "NY 172360 36 237.0 2021.0 \n", "OH 20665 39 4.0 59.0 \n", "OK 1634 40 1.0 14.0 \n", "OR 11426 41 0.0 12.0 \n", "PA 33455 42 4.0 0.0 \n", "PR 968 72 2.0 0.0 \n", "RI 2835 44 3.0 7.0 \n", "SC 3789 45 3.0 0.0 \n", "SD 3217 46 0.0 0.0 \n", "TN 20574 47 1.0 15.0 \n", "TX 25760 48 7.0 0.0 \n", "UT 13993 49 0.0 0.0 \n", "VA 10609 51 5.0 13.0 \n", "VI 146 78 0.0 0.0 \n", "VT 3701 50 0.0 0.0 \n", "WA 59206 53 14.0 0.0 \n", "WI 17662 55 0.0 0.0 \n", "WV 2818 54 0.0 0.0 \n", "WY 1640 56 0.0 1.0 \n", "\n", " negativeIncrease positiveIncrease totalTestResultsIncrease posrate \n", "state \n", "AK 396.0 17.0 413.0 0.030594 \n", "AL 0.0 110.0 110.0 0.161523 \n", "AR 89.0 22.0 111.0 0.123371 \n", "AZ 5498.0 46.0 5544.0 0.066249 \n", "CA 0.0 1065.0 1065.0 0.062963 \n", "CO 1273.0 327.0 1600.0 0.155243 \n", "CT 2798.0 702.0 3500.0 0.167479 \n", "DC 258.0 38.0 296.0 0.121622 \n", "DE 0.0 18.0 18.0 0.865672 \n", "FL 3704.0 483.0 4187.0 0.098024 \n", "GA 1228.0 285.0 1513.0 0.211000 \n", "GU 35.0 1.0 36.0 0.143590 \n", "HI 2492.0 31.0 2523.0 0.021559 \n", "IA 638.0 38.0 676.0 0.062815 \n", "ID 679.0 31.0 710.0 0.060953 \n", "IL 1166.0 1105.0 2271.0 0.165550 \n", "IN 1141.0 282.0 1423.0 0.154018 \n", "KS 523.0 58.0 581.0 0.070685 \n", "KY 326.0 92.0 418.0 0.071106 \n", "LA 2485.0 225.0 2710.0 0.127014 \n", "MA 3319.0 698.0 4017.0 0.126837 \n", "MD 838.0 247.0 1085.0 0.091150 \n", "ME 0.0 42.0 42.0 0.069372 \n", "MI 2784.0 1829.0 4613.0 0.315668 \n", "MN 1466.0 62.0 1528.0 0.028487 \n", "MO 1465.0 0.0 1465.0 0.067662 \n", "MP 0.0 0.0 0.0 1.000000 \n", "MS 0.0 95.0 95.0 0.228451 \n", "MT 887.0 25.0 912.0 0.035839 \n", "NC 1313.0 105.0 1418.0 0.054896 \n", "ND 546.0 15.0 561.0 0.028381 \n", "NE 64.0 12.0 76.0 0.051923 \n", "NH 868.0 27.0 895.0 0.042604 \n", "NJ 2830.0 2262.0 5092.0 0.375990 \n", "NM 1573.0 46.0 1619.0 0.021534 \n", "NV 511.0 117.0 628.0 0.080656 \n", "NY 9231.0 7195.0 16426.0 0.345283 \n", "OH 0.0 247.0 247.0 0.079990 \n", "OK 25.0 52.0 77.0 0.262546 \n", "OR 1185.0 69.0 1254.0 0.047961 \n", "PA 4807.0 643.0 5450.0 0.101450 \n", "PR 102.0 27.0 129.0 0.071148 \n", "RI 235.0 91.0 326.0 0.103704 \n", "SC 607.0 235.0 842.0 0.204276 \n", "SD 535.0 22.0 557.0 0.027968 \n", "TN 2072.0 164.0 2236.0 0.074706 \n", "TX 0.0 500.0 500.0 0.099068 \n", "UT 2564.0 117.0 2681.0 0.051383 \n", "VA 1292.0 151.0 1443.0 0.083891 \n", "VI 17.0 1.0 18.0 0.125683 \n", "VT 1303.0 24.0 1327.0 0.063496 \n", "WA 5881.0 587.0 6468.0 0.072797 \n", "WI 1318.0 123.0 1441.0 0.062960 \n", "WV 374.0 17.0 391.0 0.040099 \n", "WY 79.0 4.0 83.0 0.052439 " ] }, "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ "latest_by_state = latest.set_index('state')\n", "latest_by_state" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
datepositivenegativependinghospitalizeddeathtotalhashdateCheckedtotalTestResults...totalTestResultsIncreaseposrateSUMLEVREGIONDIVISIONSTATEPOPESTIMATE2019POPEST18PLUS2019PCNT_POPEST18PLUSPer Million
AK20200329102.03232.0NaN6.02.03334d4c0789e67f59e98176a9ea96200ed348161c6d42020-03-29 20:00:00+00:003334...413.00.0305944049273154555156275.44557.477667
AL20200329806.04184.0NaNNaN4.049909dbf0b598d35897b1f6857899d0a834990f4ec512020-03-29 20:00:00+00:004990...110.00.161523403614903185381487977.81017.705838
AR20200329426.03027.0NaN48.06.034532c8ed5059d37cc0aa0d20f4f3066a64db930c6c52020-03-29 20:00:00+00:003453...111.00.123371403753017804231764976.81144.209498
AZ20200329919.012953.0NaN78.017.01387214deca609d3762fb4b92807785e2b9c7015661e62020-03-29 20:00:00+00:0013872...5544.00.066249404847278717563848177.51905.830382
CA202003295708.020549.064400.01034.0123.090657c364ec885909accfd4baf8e2d329903900870ba92020-03-29 20:00:00+00:0026257...1065.00.06296340496395122233061758277.52294.403937
CO202003292061.011215.0NaN274.044.01327610769183d6c8ae4f67d7694c1e90e053315457ad2020-03-29 20:00:00+00:0013276...1600.00.155243404885758736449921778.12305.367011
CT202003291993.09907.0NaN404.034.011900a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e2020-03-29 20:00:00+00:0011900...3500.00.167479401193565287283784779.63337.739711
DC20200329342.02469.01.0NaN5.02812951af61bdce7b51bbfb818f7d11e3865a59e31ae2020-03-29 20:00:00+00:002811...296.00.12162240351170574957758181.83984.419390
DE20200329232.036.0NaN33.06.0268ba8edd92448c4db2b977c3e519df1d6421968cd12020-03-29 20:00:00+00:00268...18.00.86567240351097376477019279.1275.220690
FL202003294246.039070.0NaN594.056.0433168ce3ce4c8ee42dd4925356994534079c50bc67ca2020-03-29 20:00:00+00:0043316...4187.00.098024403512214777371724780880.32016.786033
GA202003292651.09913.0NaN666.080.0125647d692c3fbf28e3dbfdd58fc99dace80c1a9958d22020-03-29 20:00:00+00:0012564...1513.00.21100040351310617423811354276.41183.337991
HI20200329151.06849.04.012.00.07004f9ea13c2d669a5af5e440577fd13339db609c58d2020-03-29 20:00:00+00:007000...2523.00.0215594049151415872111600478.84946.774850
IA20200329336.05013.0NaN68.04.053490e8a6c975f6cdda9eb1f68596e52293afbfba37e2020-03-29 20:00:00+00:005349...676.00.0628154024193155070242822977.01695.366505
ID20200329261.04021.0NaN36.05.04282e58918bfa4321b0a6884b02c3ff7761ec4778e6b2020-03-29 20:00:00+00:004282...710.00.0609534048161787065133886474.92396.107584
IL202003294596.023166.0NaNNaN65.027762e6e6b00bdc70ca71fc14b3056568dfc40097d7502020-03-29 20:00:00+00:0027762...2271.00.16555040231712671821985394677.82190.845341
IN202003291514.08316.0NaNNaN32.09830659e4aad9785c14cf15e898f481aebda271e73e32020-03-29 20:00:00+00:009830...1423.00.1540184023186732219516424576.71460.142636
KS20200329319.04194.0NaN55.06.04513be3c8cd4ff2e10e3092723512f8ea5a03ec9d4862020-03-29 20:00:00+00:004513...581.00.0706854024202913314221306476.01549.094948
KY20200329394.05147.0NaNNaN9.05541563d46bc3630e17fd60499a2115df267a8645ae02020-03-29 20:00:00+00:005541...418.00.0711064036214467673346480277.61240.242963
LA202003293540.024331.0NaN1127.0151.02787138b4d0f6b224b46b63a1c01841b1d1385a2a37422020-03-29 20:00:00+00:0027871...2710.00.1270144037224648794356116476.65995.318356
MA202003294955.034111.0NaN399.048.03906685320d5eb34b32da6ffe44dfb937835574a335a12020-03-29 20:00:00+00:0039066...4017.00.1268374011256892503553970380.45667.897424
MD202003291239.012354.0NaN277.010.013593b017ab05576951a20e7c57f1faf56b614bc443f12020-03-29 20:00:00+00:0013593...1085.00.0911504035246045680471099377.92248.382316
ME20200329253.03394.0NaNNaN3.036472e6f8d654325315d3ff90837e0355efb83712cdb2020-03-29 20:00:00+00:003647...42.00.0693724011231344212109537081.52713.113705
MI202003295486.011893.0NaNNaN132.01737925fd0b3fada36382067e735f2ea785fcbb58376a2020-03-29 20:00:00+00:0017379...4613.00.3156684023269986857784292478.51740.187128
MN20200329503.017154.0NaN75.09.017657a7684a9182a0b32142849036fecf82ec7701d8a32020-03-29 20:00:00+00:0017657...1528.00.0284874024275639632433647576.93130.878043
MO20200329838.011547.0NaNNaN10.012385228bc579fa237f56c7e55fd2dd8f9bfe9d410b202020-03-29 20:00:00+00:0012385...1465.00.0676624024296137428476684377.72017.946280
MS20200329758.02560.0NaN235.014.03318daa6037b61ae96e6c2526a155139e7e732cd03682020-03-29 20:00:00+00:003318...95.00.2284514036282976149227756676.51114.863537
MT20200329154.04143.0NaN8.01.04297d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee2020-03-29 20:00:00+00:004297...912.00.035839404830106877884019078.64020.479463
NC202003291040.017905.0NaN91.04.01894594c103bb6dc3385d5a5f366a0913180f83223df82020-03-29 20:00:00+00:0018945...1418.00.05489640353710488084818736978.11806.335647
ND2020032998.03355.0NaN17.01.034532c4c2aa7b34f5a07b885b9fe64752fa44d9decb52020-03-29 20:00:00+00:003453...561.00.02838140243876206258189176.44531.127389
NE20200329108.01968.04.0NaN2.0208044e85c9c9b448faa6a1b8a6af39c84820610bff02020-03-29 20:00:00+00:002076...76.00.0519234024311934408145833475.41075.264370
NH20200329214.04524.0285.033.02.050235602e725da5424f5efebbaa8e3b8ac7c71a21d532020-03-29 20:00:00+00:004738...895.00.0426044011331359711110445881.23694.167364
NJ2020032913386.022216.0NaNNaN161.0356025e0cce3ce15a05bc385736f7f690e041feb4f2d92020-03-29 20:00:00+00:0035602...5092.00.3759904012348882190694361278.24008.245714
NM20200329237.010769.0NaN19.02.011006c76b9199e33fb36ea9e9509cce54c2ad94146dfd2020-03-29 20:00:00+00:0011006...1619.00.0215344048352096829162099177.35248.878187
NV20200329738.08412.0NaNNaN14.09150d0408e54d643518f6c0b61bd367061c20ea693272020-03-29 20:00:00+00:009150...628.00.0806564048323080156238751777.52970.628760
NY2020032959513.0112847.0NaN12075.0965.0172360ba807849425122f97cff754bfca452232a1e75ce2020-03-29 20:00:00+00:00172360...16426.00.345283401236194535611542526279.38860.074513
OH202003291653.019012.0NaN403.029.020665bf97498f0e2f4741137db5392baa1abf5648979f2020-03-29 20:00:00+00:0020665...247.00.07999040233911689100911108177.91767.886321
OK20200329429.01205.0NaN140.016.0163443ef7985bd9555698d09d6a950875ade320286df2020-03-29 20:00:00+00:001634...77.00.2625464037403956971300473375.9412.942122
OR20200329548.010878.0NaN129.013.011426ec860456b55d5a18391c8cbf2748ea02bf908fd22020-03-29 20:00:00+00:0011426...1254.00.0479614049414217737335117579.52709.035675
PA202003293394.030061.0NaN682.038.033455ad1df7816ad6d19a996749d630bc38345291f26e2020-03-29 20:00:00+00:0033455...5450.00.101450401242128019891016737679.42613.265798
RI20200329294.02541.0NaN35.03.02835a4d42dba093e9b91662dc7547081bffbecd06bef2020-03-29 20:00:00+00:002835...326.00.103704401144105936185486680.72676.141561
SC20200329774.03015.0NaN129.016.03789b85a9aaa3da2d62f633714b4d08f409109f52bb42020-03-29 20:00:00+00:003789...842.00.2042764035455148714403753178.4735.911919
SD2020032990.03127.01.0NaN1.032182ecdd93c12093321637eb882b51f779ef2269d3a2020-03-29 20:00:00+00:003217...557.00.02796840244688465966755875.53637.559783
TN202003291537.019037.0NaN133.07.020574c928e23a1549ab46b5a78ea8b86ea8fa727ca05f2020-03-29 20:00:00+00:0020574...2236.00.0747064036476829174531912377.93012.663025
TX202003292552.023208.0NaNNaN34.02576038db35dbc7abd19b31e25fa9eaa4165ad5eece4a2020-03-29 20:00:00+00:0025760...500.00.099068403748289958812159607174.5888.402046
UT20200329719.013274.0NaNNaN2.0139937da47dee17adc7161be7aeefa3d507b3bc735edf2020-03-29 20:00:00+00:0013993...2681.00.0513834048493205958227477471.04364.686000
VA20200329890.09719.0NaN112.022.01060966ebeae58d1a5e123904bd7f39d840dbe24449c22020-03-29 20:00:00+00:0010609...1443.00.0838914035518535519667467178.21242.923834
VT20200329235.03466.0NaN18.012.0370190a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e2020-03-29 20:00:00+00:003701...1327.00.06349640115062398950998481.75931.194300
WA202003294310.054896.0NaN254.0189.05920602bb082a97f1ddda79562a855dd090e632e2e5e92020-03-29 20:00:00+00:0059206...6468.00.0727974049537614893595183278.27775.027174
WI202003291112.016550.0NaNNaN13.0176622cd5d65e6cf10a667f00fe96ffd78eb8507131292020-03-29 20:00:00+00:0017662...1441.00.0629604023555822434455583778.23033.439280
WV20200329113.02705.00.01.00.02818626ca2fdd89b005a3d3b606376e4ac5fd2a4772c2020-03-29 20:00:00+00:002818...391.00.0400994035541792147143258079.91572.415656
WY2020032986.01554.0NaN15.00.01640e6365afc2c29afd4168c8d82cd573124272811402020-03-29 20:00:00+00:001640...83.00.05243940485657875944502576.92833.649239
\n", "

51 rows × 25 columns

\n", "
" ], "text/plain": [ " date positive negative pending hospitalized death total \\\n", "AK 20200329 102.0 3232.0 NaN 6.0 2.0 3334 \n", "AL 20200329 806.0 4184.0 NaN NaN 4.0 4990 \n", "AR 20200329 426.0 3027.0 NaN 48.0 6.0 3453 \n", "AZ 20200329 919.0 12953.0 NaN 78.0 17.0 13872 \n", "CA 20200329 5708.0 20549.0 64400.0 1034.0 123.0 90657 \n", "CO 20200329 2061.0 11215.0 NaN 274.0 44.0 13276 \n", "CT 20200329 1993.0 9907.0 NaN 404.0 34.0 11900 \n", "DC 20200329 342.0 2469.0 1.0 NaN 5.0 2812 \n", "DE 20200329 232.0 36.0 NaN 33.0 6.0 268 \n", "FL 20200329 4246.0 39070.0 NaN 594.0 56.0 43316 \n", "GA 20200329 2651.0 9913.0 NaN 666.0 80.0 12564 \n", "HI 20200329 151.0 6849.0 4.0 12.0 0.0 7004 \n", "IA 20200329 336.0 5013.0 NaN 68.0 4.0 5349 \n", "ID 20200329 261.0 4021.0 NaN 36.0 5.0 4282 \n", "IL 20200329 4596.0 23166.0 NaN NaN 65.0 27762 \n", "IN 20200329 1514.0 8316.0 NaN NaN 32.0 9830 \n", "KS 20200329 319.0 4194.0 NaN 55.0 6.0 4513 \n", "KY 20200329 394.0 5147.0 NaN NaN 9.0 5541 \n", "LA 20200329 3540.0 24331.0 NaN 1127.0 151.0 27871 \n", "MA 20200329 4955.0 34111.0 NaN 399.0 48.0 39066 \n", "MD 20200329 1239.0 12354.0 NaN 277.0 10.0 13593 \n", "ME 20200329 253.0 3394.0 NaN NaN 3.0 3647 \n", "MI 20200329 5486.0 11893.0 NaN NaN 132.0 17379 \n", "MN 20200329 503.0 17154.0 NaN 75.0 9.0 17657 \n", "MO 20200329 838.0 11547.0 NaN NaN 10.0 12385 \n", "MS 20200329 758.0 2560.0 NaN 235.0 14.0 3318 \n", "MT 20200329 154.0 4143.0 NaN 8.0 1.0 4297 \n", "NC 20200329 1040.0 17905.0 NaN 91.0 4.0 18945 \n", "ND 20200329 98.0 3355.0 NaN 17.0 1.0 3453 \n", "NE 20200329 108.0 1968.0 4.0 NaN 2.0 2080 \n", "NH 20200329 214.0 4524.0 285.0 33.0 2.0 5023 \n", "NJ 20200329 13386.0 22216.0 NaN NaN 161.0 35602 \n", "NM 20200329 237.0 10769.0 NaN 19.0 2.0 11006 \n", "NV 20200329 738.0 8412.0 NaN NaN 14.0 9150 \n", "NY 20200329 59513.0 112847.0 NaN 12075.0 965.0 172360 \n", "OH 20200329 1653.0 19012.0 NaN 403.0 29.0 20665 \n", "OK 20200329 429.0 1205.0 NaN 140.0 16.0 1634 \n", "OR 20200329 548.0 10878.0 NaN 129.0 13.0 11426 \n", "PA 20200329 3394.0 30061.0 NaN 682.0 38.0 33455 \n", "RI 20200329 294.0 2541.0 NaN 35.0 3.0 2835 \n", "SC 20200329 774.0 3015.0 NaN 129.0 16.0 3789 \n", "SD 20200329 90.0 3127.0 1.0 NaN 1.0 3218 \n", "TN 20200329 1537.0 19037.0 NaN 133.0 7.0 20574 \n", "TX 20200329 2552.0 23208.0 NaN NaN 34.0 25760 \n", "UT 20200329 719.0 13274.0 NaN NaN 2.0 13993 \n", "VA 20200329 890.0 9719.0 NaN 112.0 22.0 10609 \n", "VT 20200329 235.0 3466.0 NaN 18.0 12.0 3701 \n", "WA 20200329 4310.0 54896.0 NaN 254.0 189.0 59206 \n", "WI 20200329 1112.0 16550.0 NaN NaN 13.0 17662 \n", "WV 20200329 113.0 2705.0 0.0 1.0 0.0 2818 \n", "WY 20200329 86.0 1554.0 NaN 15.0 0.0 1640 \n", "\n", " hash dateChecked \\\n", "AK d4c0789e67f59e98176a9ea96200ed348161c6d4 2020-03-29 20:00:00+00:00 \n", "AL 9dbf0b598d35897b1f6857899d0a834990f4ec51 2020-03-29 20:00:00+00:00 \n", "AR 2c8ed5059d37cc0aa0d20f4f3066a64db930c6c5 2020-03-29 20:00:00+00:00 \n", "AZ 14deca609d3762fb4b92807785e2b9c7015661e6 2020-03-29 20:00:00+00:00 \n", "CA c364ec885909accfd4baf8e2d329903900870ba9 2020-03-29 20:00:00+00:00 \n", "CO 10769183d6c8ae4f67d7694c1e90e053315457ad 2020-03-29 20:00:00+00:00 \n", "CT a2fc8b02ed8f3a41030ae22ddb222af3d3c53a8e 2020-03-29 20:00:00+00:00 \n", "DC 951af61bdce7b51bbfb818f7d11e3865a59e31ae 2020-03-29 20:00:00+00:00 \n", "DE ba8edd92448c4db2b977c3e519df1d6421968cd1 2020-03-29 20:00:00+00:00 \n", "FL 8ce3ce4c8ee42dd4925356994534079c50bc67ca 2020-03-29 20:00:00+00:00 \n", "GA 7d692c3fbf28e3dbfdd58fc99dace80c1a9958d2 2020-03-29 20:00:00+00:00 \n", "HI f9ea13c2d669a5af5e440577fd13339db609c58d 2020-03-29 20:00:00+00:00 \n", "IA 0e8a6c975f6cdda9eb1f68596e52293afbfba37e 2020-03-29 20:00:00+00:00 \n", "ID e58918bfa4321b0a6884b02c3ff7761ec4778e6b 2020-03-29 20:00:00+00:00 \n", "IL e6e6b00bdc70ca71fc14b3056568dfc40097d750 2020-03-29 20:00:00+00:00 \n", "IN 659e4aad9785c14cf15e898f481aebda271e73e3 2020-03-29 20:00:00+00:00 \n", "KS be3c8cd4ff2e10e3092723512f8ea5a03ec9d486 2020-03-29 20:00:00+00:00 \n", "KY 563d46bc3630e17fd60499a2115df267a8645ae0 2020-03-29 20:00:00+00:00 \n", "LA 38b4d0f6b224b46b63a1c01841b1d1385a2a3742 2020-03-29 20:00:00+00:00 \n", "MA 85320d5eb34b32da6ffe44dfb937835574a335a1 2020-03-29 20:00:00+00:00 \n", "MD b017ab05576951a20e7c57f1faf56b614bc443f1 2020-03-29 20:00:00+00:00 \n", "ME 2e6f8d654325315d3ff90837e0355efb83712cdb 2020-03-29 20:00:00+00:00 \n", "MI 25fd0b3fada36382067e735f2ea785fcbb58376a 2020-03-29 20:00:00+00:00 \n", "MN a7684a9182a0b32142849036fecf82ec7701d8a3 2020-03-29 20:00:00+00:00 \n", "MO 228bc579fa237f56c7e55fd2dd8f9bfe9d410b20 2020-03-29 20:00:00+00:00 \n", "MS daa6037b61ae96e6c2526a155139e7e732cd0368 2020-03-29 20:00:00+00:00 \n", "MT d071e5b6a217a1d7bc9f1020995fa9c92a50d0ee 2020-03-29 20:00:00+00:00 \n", "NC 94c103bb6dc3385d5a5f366a0913180f83223df8 2020-03-29 20:00:00+00:00 \n", "ND 2c4c2aa7b34f5a07b885b9fe64752fa44d9decb5 2020-03-29 20:00:00+00:00 \n", "NE 44e85c9c9b448faa6a1b8a6af39c84820610bff0 2020-03-29 20:00:00+00:00 \n", "NH 5602e725da5424f5efebbaa8e3b8ac7c71a21d53 2020-03-29 20:00:00+00:00 \n", "NJ 5e0cce3ce15a05bc385736f7f690e041feb4f2d9 2020-03-29 20:00:00+00:00 \n", "NM c76b9199e33fb36ea9e9509cce54c2ad94146dfd 2020-03-29 20:00:00+00:00 \n", "NV d0408e54d643518f6c0b61bd367061c20ea69327 2020-03-29 20:00:00+00:00 \n", "NY ba807849425122f97cff754bfca452232a1e75ce 2020-03-29 20:00:00+00:00 \n", "OH bf97498f0e2f4741137db5392baa1abf5648979f 2020-03-29 20:00:00+00:00 \n", "OK 43ef7985bd9555698d09d6a950875ade320286df 2020-03-29 20:00:00+00:00 \n", "OR ec860456b55d5a18391c8cbf2748ea02bf908fd2 2020-03-29 20:00:00+00:00 \n", "PA ad1df7816ad6d19a996749d630bc38345291f26e 2020-03-29 20:00:00+00:00 \n", "RI a4d42dba093e9b91662dc7547081bffbecd06bef 2020-03-29 20:00:00+00:00 \n", "SC b85a9aaa3da2d62f633714b4d08f409109f52bb4 2020-03-29 20:00:00+00:00 \n", "SD 2ecdd93c12093321637eb882b51f779ef2269d3a 2020-03-29 20:00:00+00:00 \n", "TN c928e23a1549ab46b5a78ea8b86ea8fa727ca05f 2020-03-29 20:00:00+00:00 \n", "TX 38db35dbc7abd19b31e25fa9eaa4165ad5eece4a 2020-03-29 20:00:00+00:00 \n", "UT 7da47dee17adc7161be7aeefa3d507b3bc735edf 2020-03-29 20:00:00+00:00 \n", "VA 66ebeae58d1a5e123904bd7f39d840dbe24449c2 2020-03-29 20:00:00+00:00 \n", "VT 90a52fd80e46ab5832f7e0d0fc7ef0008e9cf00e 2020-03-29 20:00:00+00:00 \n", "WA 02bb082a97f1ddda79562a855dd090e632e2e5e9 2020-03-29 20:00:00+00:00 \n", "WI 2cd5d65e6cf10a667f00fe96ffd78eb850713129 2020-03-29 20:00:00+00:00 \n", "WV 626ca2fdd89b005a3d3b606376e4ac5fd2a4772c 2020-03-29 20:00:00+00:00 \n", "WY e6365afc2c29afd4168c8d82cd57312427281140 2020-03-29 20:00:00+00:00 \n", "\n", " totalTestResults ... totalTestResultsIncrease posrate SUMLEV REGION \\\n", "AK 3334 ... 413.0 0.030594 40 4 \n", "AL 4990 ... 110.0 0.161523 40 3 \n", "AR 3453 ... 111.0 0.123371 40 3 \n", "AZ 13872 ... 5544.0 0.066249 40 4 \n", "CA 26257 ... 1065.0 0.062963 40 4 \n", "CO 13276 ... 1600.0 0.155243 40 4 \n", "CT 11900 ... 3500.0 0.167479 40 1 \n", "DC 2811 ... 296.0 0.121622 40 3 \n", "DE 268 ... 18.0 0.865672 40 3 \n", "FL 43316 ... 4187.0 0.098024 40 3 \n", "GA 12564 ... 1513.0 0.211000 40 3 \n", "HI 7000 ... 2523.0 0.021559 40 4 \n", "IA 5349 ... 676.0 0.062815 40 2 \n", "ID 4282 ... 710.0 0.060953 40 4 \n", "IL 27762 ... 2271.0 0.165550 40 2 \n", "IN 9830 ... 1423.0 0.154018 40 2 \n", "KS 4513 ... 581.0 0.070685 40 2 \n", "KY 5541 ... 418.0 0.071106 40 3 \n", "LA 27871 ... 2710.0 0.127014 40 3 \n", "MA 39066 ... 4017.0 0.126837 40 1 \n", "MD 13593 ... 1085.0 0.091150 40 3 \n", "ME 3647 ... 42.0 0.069372 40 1 \n", "MI 17379 ... 4613.0 0.315668 40 2 \n", "MN 17657 ... 1528.0 0.028487 40 2 \n", "MO 12385 ... 1465.0 0.067662 40 2 \n", "MS 3318 ... 95.0 0.228451 40 3 \n", "MT 4297 ... 912.0 0.035839 40 4 \n", "NC 18945 ... 1418.0 0.054896 40 3 \n", "ND 3453 ... 561.0 0.028381 40 2 \n", "NE 2076 ... 76.0 0.051923 40 2 \n", "NH 4738 ... 895.0 0.042604 40 1 \n", "NJ 35602 ... 5092.0 0.375990 40 1 \n", "NM 11006 ... 1619.0 0.021534 40 4 \n", "NV 9150 ... 628.0 0.080656 40 4 \n", "NY 172360 ... 16426.0 0.345283 40 1 \n", "OH 20665 ... 247.0 0.079990 40 2 \n", "OK 1634 ... 77.0 0.262546 40 3 \n", "OR 11426 ... 1254.0 0.047961 40 4 \n", "PA 33455 ... 5450.0 0.101450 40 1 \n", "RI 2835 ... 326.0 0.103704 40 1 \n", "SC 3789 ... 842.0 0.204276 40 3 \n", "SD 3217 ... 557.0 0.027968 40 2 \n", "TN 20574 ... 2236.0 0.074706 40 3 \n", "TX 25760 ... 500.0 0.099068 40 3 \n", "UT 13993 ... 2681.0 0.051383 40 4 \n", "VA 10609 ... 1443.0 0.083891 40 3 \n", "VT 3701 ... 1327.0 0.063496 40 1 \n", "WA 59206 ... 6468.0 0.072797 40 4 \n", "WI 17662 ... 1441.0 0.062960 40 2 \n", "WV 2818 ... 391.0 0.040099 40 3 \n", "WY 1640 ... 83.0 0.052439 40 4 \n", "\n", " DIVISION STATE POPESTIMATE2019 POPEST18PLUS2019 PCNT_POPEST18PLUS \\\n", "AK 9 2 731545 551562 75.4 \n", "AL 6 1 4903185 3814879 77.8 \n", "AR 7 5 3017804 2317649 76.8 \n", "AZ 8 4 7278717 5638481 77.5 \n", "CA 9 6 39512223 30617582 77.5 \n", "CO 8 8 5758736 4499217 78.1 \n", "CT 1 9 3565287 2837847 79.6 \n", "DC 5 11 705749 577581 81.8 \n", "DE 5 10 973764 770192 79.1 \n", "FL 5 12 21477737 17247808 80.3 \n", "GA 5 13 10617423 8113542 76.4 \n", "HI 9 15 1415872 1116004 78.8 \n", "IA 4 19 3155070 2428229 77.0 \n", "ID 8 16 1787065 1338864 74.9 \n", "IL 3 17 12671821 9853946 77.8 \n", "IN 3 18 6732219 5164245 76.7 \n", "KS 4 20 2913314 2213064 76.0 \n", "KY 6 21 4467673 3464802 77.6 \n", "LA 7 22 4648794 3561164 76.6 \n", "MA 1 25 6892503 5539703 80.4 \n", "MD 5 24 6045680 4710993 77.9 \n", "ME 1 23 1344212 1095370 81.5 \n", "MI 3 26 9986857 7842924 78.5 \n", "MN 4 27 5639632 4336475 76.9 \n", "MO 4 29 6137428 4766843 77.7 \n", "MS 6 28 2976149 2277566 76.5 \n", "MT 8 30 1068778 840190 78.6 \n", "NC 5 37 10488084 8187369 78.1 \n", "ND 4 38 762062 581891 76.4 \n", "NE 4 31 1934408 1458334 75.4 \n", "NH 1 33 1359711 1104458 81.2 \n", "NJ 2 34 8882190 6943612 78.2 \n", "NM 8 35 2096829 1620991 77.3 \n", "NV 8 32 3080156 2387517 77.5 \n", "NY 2 36 19453561 15425262 79.3 \n", "OH 3 39 11689100 9111081 77.9 \n", "OK 7 40 3956971 3004733 75.9 \n", "OR 9 41 4217737 3351175 79.5 \n", "PA 2 42 12801989 10167376 79.4 \n", "RI 1 44 1059361 854866 80.7 \n", "SC 5 45 5148714 4037531 78.4 \n", "SD 4 46 884659 667558 75.5 \n", "TN 6 47 6829174 5319123 77.9 \n", "TX 7 48 28995881 21596071 74.5 \n", "UT 8 49 3205958 2274774 71.0 \n", "VA 5 51 8535519 6674671 78.2 \n", "VT 1 50 623989 509984 81.7 \n", "WA 9 53 7614893 5951832 78.2 \n", "WI 3 55 5822434 4555837 78.2 \n", "WV 5 54 1792147 1432580 79.9 \n", "WY 8 56 578759 445025 76.9 \n", "\n", " Per Million \n", "AK 4557.477667 \n", "AL 1017.705838 \n", "AR 1144.209498 \n", "AZ 1905.830382 \n", "CA 2294.403937 \n", "CO 2305.367011 \n", "CT 3337.739711 \n", "DC 3984.419390 \n", "DE 275.220690 \n", "FL 2016.786033 \n", "GA 1183.337991 \n", "HI 4946.774850 \n", "IA 1695.366505 \n", "ID 2396.107584 \n", "IL 2190.845341 \n", "IN 1460.142636 \n", "KS 1549.094948 \n", "KY 1240.242963 \n", "LA 5995.318356 \n", "MA 5667.897424 \n", "MD 2248.382316 \n", "ME 2713.113705 \n", "MI 1740.187128 \n", "MN 3130.878043 \n", "MO 2017.946280 \n", "MS 1114.863537 \n", "MT 4020.479463 \n", "NC 1806.335647 \n", "ND 4531.127389 \n", "NE 1075.264370 \n", "NH 3694.167364 \n", "NJ 4008.245714 \n", "NM 5248.878187 \n", "NV 2970.628760 \n", "NY 8860.074513 \n", "OH 1767.886321 \n", "OK 412.942122 \n", "OR 2709.035675 \n", "PA 2613.265798 \n", "RI 2676.141561 \n", "SC 735.911919 \n", "SD 3637.559783 \n", "TN 3012.663025 \n", "TX 888.402046 \n", "UT 4364.686000 \n", "VA 1242.923834 \n", "VT 5931.194300 \n", "WA 7775.027174 \n", "WI 3033.439280 \n", "WV 1572.415656 \n", "WY 2833.649239 \n", "\n", "[51 rows x 25 columns]" ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "percapita = latest_by_state.join(state_pops_with_abbs, how='inner')\n", "percapita['Per Million'] = 1e6 * percapita['total'] / percapita['POPESTIMATE2019']\n", "percapita" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[pandas.core.series.Series,\n", " date 20200329\n", " positive 59513\n", " negative 112847\n", " pending NaN\n", " hospitalized 12075\n", " death 965\n", " total 172360\n", " hash ba807849425122f97cff754bfca452232a1e75ce\n", " dateChecked 2020-03-29 20:00:00+00:00\n", " totalTestResults 172360\n", " fips 36\n", " deathIncrease 237\n", " hospitalizedIncrease 2021\n", " negativeIncrease 9231\n", " positiveIncrease 7195\n", " totalTestResultsIncrease 16426\n", " posrate 0.345283\n", " SUMLEV 40\n", " REGION 1\n", " DIVISION 2\n", " STATE 36\n", " POPESTIMATE2019 19453561\n", " POPEST18PLUS2019 15425262\n", " PCNT_POPEST18PLUS 79.3\n", " Per Million 8860.07\n", " Name: NY, dtype: object,\n", " 'NY',\n", " 8860.07451283598,\n", " 0.34528312833604086]" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "row = percapita.loc['NY']\n", "[\n", " type(row),\n", " row,\n", " row.name,\n", " row['Per Million'],\n", " row['posrate']\n", "]" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "AK 4557.477667129158 0.03059388122375525\n", "AL 1017.705838143982 0.16152304609218437\n", "AR 1144.209498032344 0.12337098175499565\n", "AZ 1905.8303819203302 0.06624855824682814\n", "CA 2294.403936726111 0.0629625952767023\n", "CO 2305.367011094101 0.15524254293461887\n", "CT 3337.739710716136 0.16747899159663865\n", "DC 3984.419389896408 0.12162162162162163\n", "DE 275.22069002345535 0.8656716417910447\n", "FL 2016.786032904677 0.09802382491458121\n", "GA 1183.3379907723372 0.21099968163005411\n", "HI 4946.774849703928 0.021559109080525413\n", "IA 1695.3665053390257 0.0628154795288839\n", "ID 2396.1075842232935 0.0609528257823447\n", "IL 2190.845341012945 0.16555003241841365\n", "IN 1460.142636476918 0.1540183112919634\n", "KS 1549.0949482273452 0.07068468867715488\n", "KY 1240.242963171208 0.07110629850207544\n", "LA 5995.318355685367 0.12701374188224318\n", "MA 5667.897424201339 0.1268366354374648\n", "MD 2248.3823159677654 0.09114985654380932\n", "ME 2713.1137052786316 0.06937208664655882\n", "MI 1740.1871279422544 0.3156683353472582\n", "MN 3130.8780431063587 0.028487285495837344\n", "MO 2017.9462797771314 0.06766249495357288\n", "MS 1114.863536738248 0.22845087402049427\n", "MT 4020.47946346201 0.03583895741214801\n", "NC 1806.3356471973336 0.05489575085774611\n", "ND 4531.127388585181 0.028381117868520128\n", "NE 1075.264370287964 0.051923076923076926\n", "NH 3694.1673635059215 0.04260402150109496\n", "NJ 4008.245714176346 0.3759901129150048\n", "NM 5248.878187014773 0.02153370888606215\n", "NV 2970.6287603614883 0.08065573770491803\n", "NY 8860.07451283598 0.34528312833604086\n", "OH 1767.8863214447647 0.07999032180014518\n", "OK 412.9421216379903 0.26254589963280295\n", "OR 2709.035674818036 0.04796079117801506\n", "PA 2613.2657979943583 0.10144970856374234\n", "RI 2676.1415608088273 0.1037037037037037\n", "SC 735.9119189762725 0.2042755344418052\n", "SD 3637.5597829220073 0.027967681789931635\n", "TN 3012.663024840193 0.07470593953533586\n", "TX 888.4020457940215 0.09906832298136646\n", "UT 4364.6860002532785 0.05138283427428\n", "VA 1242.923833922694 0.08389103591290414\n", "VT 5931.194299899517 0.06349635233720616\n", "WA 7775.027173723912 0.0727966760125663\n", "WI 3033.439279861309 0.06296002717699015\n", "WV 1572.4156556353914 0.04009936124911285\n", "WY 2833.649239147901 0.0524390243902439\n" ] }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "frame = percapita\n", "fields = ['Per Million', 'posrate']\n", "plot = frame.plot(\n", " x=fields[0],\n", " y=fields[1],\n", " kind='scatter',\n", " title='Positive test rate vs tests/million population',\n", " figsize=(12,8)\n", ")\n", "plt.xlabel('Tests/Million Population')\n", "plt.ylabel('Proportion positive')\n", "for i in frame.index:\n", " try:\n", " row = frame.loc[i]\n", " plot.annotate(row.name, (row[fields[0]], row[fields[1]]))\n", " print(row.name, row[fields[0]], row[fields[1]])\n", " except KeyError:\n", " pass" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "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.8.2" } }, "nbformat": 4, "nbformat_minor": 4 }