Skip to content
Snippets Groups Projects
covidtracking-dashboard.ipynb 413 KiB
Newer Older
{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "import pandas as pd\n",
    "import altair as alt\n",
    "from IPython.display import display, HTML"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [],
   "source": [
    "html_credits=HTML('''\n",
    "<p style=\"font-size: smaller\">Data Sources: \n",
    "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
    "<br>\n",
    "Analysis and Visualization:\n",
    "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
    "</p>''')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Read population data\n",
    "pop_df = pd.read_csv('../data/geodata/us_pop_fung_2019.csv').set_index('ST')\n",
    "\n",
    "# Read state-level data\n",
    "data_df = pd.read_json('../data/covidtracking/states-daily.json')\n",
    "data_df['date'] = pd.to_datetime(data_df['date'], format=\"%Y%m%d\")\n",
    "data_df['ratio'] = data_df['positive']/data_df['total']\n",
    "\n",
    "# Compute daily differences\n",
    "tdf = data_df.sort_values(['state', 'date'], ascending=[True, False]).set_index(['state', 'date'])\n",
    "diffs_df = tdf[['positive', 'negative', 'death']].groupby(level='state').diff(periods=-1).dropna(how='all')\n",
    "tdf_diff=tdf.join(diffs_df, rsuffix='_diff').reset_index()\n",
    "\n",
    "# incidence rates\n",
    "tdf_diff = tdf_diff.set_index('state')\n",
    "tdf_diff['positive_diff_100k'] = (tdf_diff['positive_diff'] / pop_df['Population']) * 100000\n",
    "tdf_diff['death_diff_100k'] = (tdf_diff['death_diff'] / pop_df['Population']) * 100000\n",
    "tdf_diff = tdf_diff.reset_index()\n",
    "\n",
    "# \"Normalizing\" the totals\n",
    "tdf_diff['total_10'] = tdf_diff['total']/10.\n",
    "\n",
    "# Daily totals\n",
    "daily_totals = tdf_diff.groupby('date').sum()\n",
    "daily_totals.reset_index(level=0, inplace=True)\n",
    "\n",
    "# National daily totals\n",
    "nation_df = data_df.groupby('date').sum()\n",
    "nation_df['state']='All US'\n",
    "nation_df = nation_df.reset_index()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Covid-19 Cases in U.S.\n",
    "\n",
    "The case data from the U.S. is obtained from https://covidtracking.com, a public crowd-sourced covid-19 dataset. "
   ]
  },
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Growth trends"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Compute theoretical trends of doubling every day, 3 days, week\n",
    "days = {'day':[1,2,3,4,5,10,15,20, 50, 100]}\n",
    "startCase = 10\n",
    "logRuleDay_df = pd.DataFrame(days, columns=['day'])\n",
    "logRuleDay_df['case']= startCase * pow(2,logRuleDay_df['day']-1)\n",
    "logRuleDay_df['doubling period']='every day'\n",
    "\n",
    "logRule3Days_df = pd.DataFrame(days, columns=['day'])\n",
    "logRule3Days_df['case']= startCase * pow(2,(logRule3Days_df['day']-1)/3)\n",
    "logRule3Days_df['doubling period']='three days'\n",
    "\n",
    "logRuleWeek_df = pd.DataFrame(days, columns=['day'])\n",
    "logRuleWeek_df['case']= startCase * pow(2,(logRuleWeek_df['day']-1)/7)\n",
    "logRuleWeek_df['doubling period']='every week'\n",
    "\n",
    "logRules_df = pd.concat([logRuleDay_df, logRule3Days_df, logRuleWeek_df])\n",
    "logRules_df = logRules_df.reset_index()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-a16f7bbe8afa42d3980159cf4c7a9557\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-a16f7bbe8afa42d3980159cf4c7a9557\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-15948fdb2a4e51b91f6431e48e7e0363\"}, \"mark\": {\"type\": \"line\", \"interpolate\": \"basis\"}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days Since 10th Death\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative Deaths\"}, \"field\": \"death\", \"scale\": {\"type\": \"log\"}}}, \"title\": \"US States: Cumulative Deaths Since 10th Death\"}, {\"data\": {\"name\": \"data-3899ae2c1decc8431266557b3b26d71d\"}, \"mark\": {\"type\": \"line\", \"clip\": true, \"opacity\": 0.2}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"doubling period\"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"doubling period\"}], \"x\": {\"type\": \"quantitative\", \"field\": \"day\", \"scale\": {\"domain\": [1, 23]}}, \"y\": {\"type\": \"quantitative\", \"field\": \"case\", \"scale\": {\"domain\": [10, 10000], \"type\": \"log\"}}}}, {\"layer\": [{\"data\": {\"name\": \"data-fbb77d4fa425f433be0b6da01b0cd6e7\"}, \"mark\": {\"type\": \"text\", \"align\": \"left\", \"baseline\": \"middle\", \"dx\": 10}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"type\": \"nominal\", \"field\": \"state\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"death\"}}}, {\"data\": {\"name\": \"data-e4b5b6965c8c823b5ce3cb31b8c7f248\"}, \"mark\": {\"type\": \"text\", \"align\": \"right\", \"baseline\": \"bottom\", \"dx\": 0, \"opacity\": 0.5, \"size\": 18}, \"encoding\": {\"text\": {\"type\": \"nominal\", \"field\": \"labelText\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"labelX\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"labelY\"}}}]}, {\"mark\": \"point\", \"encoding\": {\"opacity\": {\"value\": 0}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}}, \"selection\": {\"selector006\": {\"type\": \"single\", \"nearest\": true, \"on\": \"mouseover\", \"fields\": [\"sinceDay0\"]}}}, {\"data\": {\"name\": \"data-15948fdb2a4e51b91f6431e48e7e0363\"}, \"mark\": {\"type\": \"text\", \"align\": \"center\", \"dx\": 3, \"dy\": -20}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"condition\": {\"type\": \"quantitative\", \"field\": \"death\", \"selection\": \"selector006\"}, \"value\": \" \"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days Since 10th Death\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative Deaths\"}, \"field\": \"death\", \"scale\": {\"type\": \"log\"}}}, \"title\": \"US States: Cumulative Deaths Since 10th Death\"}], \"data\": {\"name\": \"data-15948fdb2a4e51b91f6431e48e7e0363\"}, \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-15948fdb2a4e51b91f6431e48e7e0363\": [{\"index\": 509, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CA\", \"positive\": 483.0, \"negative\": 7981.0, \"pending\": null, \"hospitalized\": null, \"death\": 11.0, \"total\": 8464, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 8464, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 148.0, \"ratio\": 0.057065217391304345, \"sinceDay0\": 0}, {\"index\": 453, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CA\", \"positive\": 611.0, \"negative\": 7981.0, \"pending\": null, \"hospitalized\": null, \"death\": 13.0, \"total\": 8592, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 8592, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.07111266294227188, \"sinceDay0\": 1}, {\"index\": 397, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CA\", \"positive\": 924.0, \"negative\": 8787.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 9711, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 9711, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 313.0, \"totalTestResultsIncrease\": 1119.0, \"ratio\": 0.09514983008958913, \"sinceDay0\": 2}, {\"index\": 341, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CA\", \"positive\": 1063.0, \"negative\": 10424.0, \"pending\": null, \"hospitalized\": null, \"death\": 20.0, \"total\": 11487, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 11487, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1637.0, \"positiveIncrease\": 139.0, \"totalTestResultsIncrease\": 1776.0, \"ratio\": 0.092539392356577, \"sinceDay0\": 3}, {\"index\": 285, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CA\", \"positive\": 1279.0, \"negative\": 11249.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 12528, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 12528, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 825.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 1041.0, \"ratio\": 0.10209131545338442, \"sinceDay0\": 4}, {\"index\": 229, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CA\", \"positive\": 1536.0, \"negative\": 11304.0, \"pending\": null, \"hospitalized\": null, \"death\": 27.0, \"total\": 12840, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 12840, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 55.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 312.0, \"ratio\": 0.11962616822429907, \"sinceDay0\": 5}, {\"index\": 173, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CA\", \"positive\": 1733.0, \"negative\": 12567.0, \"pending\": 12100.0, \"hospitalized\": null, \"death\": 27.0, \"total\": 26400, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 14300, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 197.0, \"totalTestResultsIncrease\": 1460.0, \"ratio\": 0.0656439393939394, \"sinceDay0\": 6}, {\"index\": 117, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CA\", \"positive\": 2102.0, \"negative\": 13452.0, \"pending\": 12100.0, \"hospitalized\": null, \"death\": 40.0, \"total\": 27654, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 15554, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 885.0, \"positiveIncrease\": 369.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.0760107036956679, \"sinceDay0\": 7}, {\"index\": 61, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CA\", \"positive\": 2355.0, \"negative\": 15921.0, \"pending\": 48600.0, \"hospitalized\": null, \"death\": 53.0, \"total\": 66876, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 18276, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2722.0, \"ratio\": 0.03521442670016149, \"sinceDay0\": 8}, {\"index\": 5, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalized\": null, \"death\": 65.0, \"total\": 77786, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20386, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 9}, {\"index\": 62, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CO\", \"positive\": 912.0, \"negative\": 6789.0, \"pending\": null, \"hospitalized\": 84.0, \"death\": 11.0, \"total\": 7701, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 7701, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1285.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1477.0, \"ratio\": 0.11842617841838722, \"sinceDay0\": 0}, {\"index\": 6, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalized\": 148.0, \"death\": 19.0, \"total\": 8064, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8064, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 1}, {\"index\": 175, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CT\", \"positive\": 415.0, \"negative\": 4085.0, \"pending\": null, \"hospitalized\": 54.0, \"death\": 10.0, \"total\": 4500, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 4500, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1208.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1400.0, \"ratio\": 0.09222222222222222, \"sinceDay0\": 0}, {\"index\": 119, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CT\", \"positive\": 618.0, \"negative\": 4682.0, \"pending\": null, \"hospitalized\": 71.0, \"death\": 12.0, \"total\": 5300, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5300, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 597.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.11660377358490566, \"sinceDay0\": 1}, {\"index\": 63, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CT\", \"positive\": 875.0, \"negative\": 5023.0, \"pending\": null, \"hospitalized\": 113.0, \"death\": 19.0, \"total\": 5898, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 5898, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 341.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 598.0, \"ratio\": 0.14835537470328924, \"sinceDay0\": 2}, {\"index\": 7, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalized\": 125.0, \"death\": 21.0, \"total\": 6637, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6637, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 3}, {\"index\": 346, \"date\": \"2020-03-20T00:00:00\", \"state\": \"FL\", \"positive\": 520.0, \"negative\": 1870.0, \"pending\": 1026.0, \"hospitalized\": null, \"death\": 10.0, \"total\": 3416, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2390, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 337.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.1522248243559719, \"sinceDay0\": 0}, {\"index\": 290, \"date\": \"2020-03-21T00:00:00\", \"state\": \"FL\", \"positive\": 658.0, \"negative\": 6579.0, \"pending\": 1002.0, \"hospitalized\": 158.0, \"death\": 12.0, \"total\": 8239, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 7237, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 4709.0, \"positiveIncrease\": 138.0, \"totalTestResultsIncrease\": 4847.0, \"ratio\": 0.07986406117247238, \"sinceDay0\": 1}, {\"index\": 234, \"date\": \"2020-03-22T00:00:00\", \"state\": \"FL\", \"positive\": 830.0, \"negative\": 7990.0, \"pending\": 963.0, \"hospitalized\": 185.0, \"death\": 13.0, \"total\": 9783, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 8820, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 1411.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1583.0, \"ratio\": 0.08484105080241235, \"sinceDay0\": 2}, {\"index\": 178, \"date\": \"2020-03-23T00:00:00\", \"state\": \"FL\", \"positive\": 1171.0, \"negative\": 11063.0, \"pending\": 860.0, \"hospitalized\": 217.0, \"death\": 14.0, \"total\": 13094, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 12234, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 3073.0, \"positiveIncrease\": 341.0, \"totalTestResultsIncrease\": 3414.0, \"ratio\": 0.08943027340766764, \"sinceDay0\": 3}, {\"index\": 122, \"date\": \"2020-03-24T00:00:00\", \"state\": \"FL\", \"positive\": 1412.0, \"negative\": 13127.0, \"pending\": 1008.0, \"hospitalized\": 259.0, \"death\": 18.0, \"total\": 15547, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 14539, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 2064.0, \"positiveIncrease\": 241.0, \"totalTestResultsIncrease\": 2305.0, \"ratio\": 0.09082138033061041, \"sinceDay0\": 4}, {\"index\": 66, \"date\": \"2020-03-25T00:00:00\", \"state\": \"FL\", \"positive\": 1682.0, \"negative\": 15374.0, \"pending\": 1233.0, \"hospitalized\": 316.0, \"death\": 22.0, \"total\": 18289, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 17056, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 57.0, \"negativeIncrease\": 2247.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2517.0, \"ratio\": 0.09196784952703811, \"sinceDay0\": 5}, {\"index\": 10, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalized\": 406.0, \"death\": 28.0, \"total\": 27539, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 26096, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 6}, {\"index\": 403, \"date\": \"2020-03-19T00:00:00\", \"state\": \"GA\", \"positive\": 287.0, \"negative\": 1544.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 1831, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 1831, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 233.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 323.0, \"ratio\": 0.1567449481157837, \"sinceDay0\": 0}, {\"index\": 347, \"date\": \"2020-03-20T00:00:00\", \"state\": \"GA\", \"positive\": 420.0, \"negative\": 1966.0, \"pending\": null, \"hospitalized\": null, \"death\": 13.0, \"total\": 2386, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2386, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 133.0, \"totalTestResultsIncrease\": 555.0, \"ratio\": 0.1760268231349539, \"sinceDay0\": 1}, {\"index\": 291, \"date\": \"2020-03-21T00:00:00\", \"state\": \"GA\", \"positive\": 507.0, \"negative\": 2557.0, \"pending\": null, \"hospitalized\": null, \"death\": 14.0, \"total\": 3064, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 3064, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 591.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 678.0, \"ratio\": 0.16546997389033943, \"sinceDay0\": 2}, {\"index\": 235, \"date\": \"2020-03-22T00:00:00\", \"state\": \"GA\", \"positive\": 600.0, \"negative\": 3420.0, \"pending\": null, \"hospitalized\": null, \"death\": 23.0, \"total\": 4020, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 4020, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 863.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 956.0, \"ratio\": 0.14925373134328357, \"sinceDay0\": 3}, {\"index\": 179, \"date\": \"2020-03-23T00:00:00\", \"state\": \"GA\", \"positive\": 772.0, \"negative\": 4297.0, \"pending\": null, \"hospitalized\": null, \"death\": 25.0, \"total\": 5069, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5069, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 877.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.152298283685145, \"sinceDay0\": 4}, {\"index\": 123, \"date\": \"2020-03-24T00:00:00\", \"state\": \"GA\", \"positive\": 1026.0, \"negative\": 4458.0, \"pending\": null, \"hospitalized\": null, \"death\": 32.0, \"total\": 5484, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5484, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 161.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 415.0, \"ratio\": 0.18708971553610504, \"sinceDay0\": 5}, {\"index\": 67, \"date\": \"2020-03-25T00:00:00\", \"state\": \"GA\", \"positive\": 1247.0, \"negative\": 4932.0, \"pending\": null, \"hospitalized\": 394.0, \"death\": 40.0, \"total\": 6179, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 6179, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 394.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 695.0, \"ratio\": 0.20181259103414792, \"sinceDay0\": 6}, {\"index\": 11, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalized\": 473.0, \"death\": 48.0, \"total\": 8926, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8926, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 7}, {\"index\": 184, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IL\", \"positive\": 1273.0, \"negative\": 8583.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 9856, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 9856, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1312.0, \"positiveIncrease\": 224.0, \"totalTestResultsIncrease\": 1536.0, \"ratio\": 0.1291599025974026, \"sinceDay0\": 0}, {\"index\": 128, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IL\", \"positive\": 1535.0, \"negative\": 9934.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 11469, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 11469, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 1613.0, \"ratio\": 0.13383904438050398, \"sinceDay0\": 1}, {\"index\": 72, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IL\", \"positive\": 1865.0, \"negative\": 12344.0, \"pending\": null, \"hospitalized\": null, \"death\": 19.0, \"total\": 14209, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14209, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2410.0, \"positiveIncrease\": 330.0, \"totalTestResultsIncrease\": 2740.0, \"ratio\": 0.13125483848265185, \"sinceDay0\": 2}, {\"index\": 16, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalized\": null, \"death\": 26.0, \"total\": 16631, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 16631, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 3}, {\"index\": 129, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IN\", \"positive\": 365.0, \"negative\": 2566.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 12.0, \"total\": 2931, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 2931, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 865.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 971.0, \"ratio\": 0.1245308768338451, \"sinceDay0\": 0}, {\"index\": 73, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IN\", \"positive\": 477.0, \"negative\": 2879.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 14.0, \"total\": 3356, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 3356, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 313.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 425.0, \"ratio\": 0.14213349225268176, \"sinceDay0\": 1}, {\"index\": 17, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalized\": null, \"death\": 17.0, \"total\": 4651, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4651, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 2}, {\"index\": 356, \"date\": \"2020-03-20T00:00:00\", \"state\": \"LA\", \"positive\": 479.0, \"negative\": 568.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 1047, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 1047, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 110.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 242.0, \"ratio\": 0.4574976122254059, \"sinceDay0\": 0}, {\"index\": 300, \"date\": \"2020-03-21T00:00:00\", \"state\": \"LA\", \"positive\": 585.0, \"negative\": 2180.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 2765, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2765, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1612.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1718.0, \"ratio\": 0.2115732368896926, \"sinceDay0\": 1}, {\"index\": 244, \"date\": \"2020-03-22T00:00:00\", \"state\": \"LA\", \"positive\": 837.0, \"negative\": 2661.0, \"pending\": null, \"hospitalized\": null, \"death\": 20.0, \"total\": 3498, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3498, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 481.0, \"positiveIncrease\": 252.0, \"totalTestResultsIncrease\": 733.0, \"ratio\": 0.23927958833619212, \"sinceDay0\": 2}, {\"index\": 188, \"date\": \"2020-03-23T00:00:00\", \"state\": \"LA\", \"positive\": 1172.0, \"negative\": 4776.0, \"pending\": null, \"hospitalized\": null, \"death\": 34.0, \"total\": 5948, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5948, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2115.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2450.0, \"ratio\": 0.19704102219233355, \"sinceDay0\": 3}, {\"index\": 132, \"date\": \"2020-03-24T00:00:00\", \"state\": \"LA\", \"positive\": 1388.0, \"negative\": 7215.0, \"pending\": null, \"hospitalized\": 271.0, \"death\": 46.0, \"total\": 8603, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 8603, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 271.0, \"negativeIncrease\": 2439.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 2655.0, \"ratio\": 0.161339067767058, \"sinceDay0\": 4}, {\"index\": 76, \"date\": \"2020-03-25T00:00:00\", \"state\": \"LA\", \"positive\": 1795.0, \"negative\": 9656.0, \"pending\": null, \"hospitalized\": 491.0, \"death\": 65.0, \"total\": 11451, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 11451, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 220.0, \"negativeIncrease\": 2441.0, \"positiveIncrease\": 407.0, \"totalTestResultsIncrease\": 2848.0, \"ratio\": 0.15675486857043053, \"sinceDay0\": 5}, {\"index\": 20, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalized\": 676.0, \"death\": 83.0, \"total\": 18029, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18029, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 6}, {\"index\": 133, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MA\", \"positive\": 1159.0, \"negative\": 12590.0, \"pending\": null, \"hospitalized\": 94.0, \"death\": 11.0, \"total\": 13749, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 13749, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 382.0, \"totalTestResultsIncrease\": 4827.0, \"ratio\": 0.08429703978471162, \"sinceDay0\": 0}, {\"index\": 77, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MA\", \"positive\": 1838.0, \"negative\": 17956.0, \"pending\": null, \"hospitalized\": 103.0, \"death\": 15.0, \"total\": 19794, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 19794, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 5366.0, \"positiveIncrease\": 679.0, \"totalTestResultsIncrease\": 6045.0, \"ratio\": 0.0928564211377185, \"sinceDay0\": 1}, {\"index\": 21, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalized\": 219.0, \"death\": 25.0, \"total\": 23621, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 23621, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 2}, {\"index\": 192, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MI\", \"positive\": 1328.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 15.0, \"total\": 3397, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3397, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 293.0, \"totalTestResultsIncrease\": 293.0, \"ratio\": 0.3909331763320577, \"sinceDay0\": 0}, {\"index\": 136, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MI\", \"positive\": 1791.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 3860, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 3860, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 463.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.4639896373056995, \"sinceDay0\": 1}, {\"index\": 80, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MI\", \"positive\": 2294.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 43.0, \"total\": 4363, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 4363, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 503.0, \"totalTestResultsIncrease\": 503.0, \"ratio\": 0.5257850103140042, \"sinceDay0\": 2}, {\"index\": 24, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalized\": null, \"death\": 60.0, \"total\": 9406, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 9406, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 3}, {\"index\": 370, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NJ\", \"positive\": 890.0, \"negative\": 264.0, \"pending\": 86.0, \"hospitalized\": null, \"death\": 11.0, \"total\": 1240, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 1154, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 54.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 202.0, \"ratio\": 0.717741935483871, \"sinceDay0\": 0}, {\"index\": 314, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NJ\", \"positive\": 1327.0, \"negative\": 294.0, \"pending\": 40.0, \"hospitalized\": null, \"death\": 16.0, \"total\": 1661, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 1621, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 30.0, \"positiveIncrease\": 437.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.7989163154726069, \"sinceDay0\": 1}, {\"index\": 258, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NJ\", \"positive\": 1914.0, \"negative\": 327.0, \"pending\": 49.0, \"hospitalized\": null, \"death\": 20.0, \"total\": 2290, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 2241, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 33.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 620.0, \"ratio\": 0.8358078602620087, \"sinceDay0\": 2}, {\"index\": 202, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NJ\", \"positive\": 2844.0, \"negative\": 359.0, \"pending\": 94.0, \"hospitalized\": null, \"death\": 27.0, \"total\": 3297, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3203, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 930.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.8626023657870792, \"sinceDay0\": 3}, {\"index\": 146, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NJ\", \"positive\": 3675.0, \"negative\": 8325.0, \"pending\": 45.0, \"hospitalized\": null, \"death\": 44.0, \"total\": 12045, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 12000, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7966.0, \"positiveIncrease\": 831.0, \"totalTestResultsIncrease\": 8797.0, \"ratio\": 0.30510585305105853, \"sinceDay0\": 4}, {\"index\": 90, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NJ\", \"positive\": 4402.0, \"negative\": 10452.0, \"pending\": null, \"hospitalized\": null, \"death\": 62.0, \"total\": 14854, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14854, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2127.0, \"positiveIncrease\": 727.0, \"totalTestResultsIncrease\": 2854.0, \"ratio\": 0.2963511512050626, \"sinceDay0\": 5}, {\"index\": 34, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalized\": null, \"death\": 81.0, \"total\": 20537, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20537, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 6}, {\"index\": 36, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 5117, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 5117, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 0}, {\"index\": 485, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NY\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 14597, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14597, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"sinceDay0\": 0}, {\"index\": 429, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NY\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 22284, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 22284, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"sinceDay0\": 1}, {\"index\": 373, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NY\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalized\": null, \"death\": 35.0, \"total\": 32427, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 32427, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"sinceDay0\": 2}, {\"index\": 317, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NY\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalized\": 1603.0, \"death\": 44.0, \"total\": 45437, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 45437, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"sinceDay0\": 3}, {\"index\": 261, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NY\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalized\": 1974.0, \"death\": 114.0, \"total\": 61401, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 61401, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"sinceDay0\": 4}, {\"index\": 205, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NY\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalized\": 2635.0, \"death\": 114.0, \"total\": 78289, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 78289, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"sinceDay0\": 5}, {\"index\": 149, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NY\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalized\": 3234.0, \"death\": 210.0, \"total\": 91270, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 91270, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"sinceDay0\": 6}, {\"index\": 93, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NY\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalized\": 3805.0, \"death\": 285.0, \"total\": 103479, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 103479, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"sinceDay0\": 7}, {\"index\": 37, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalized\": 6844.0, \"death\": 385.0, \"total\": 122104, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 122104, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 8}, {\"index\": 94, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OH\", \"positive\": 704.0, \"negative\": 14060.0, \"pending\": null, \"hospitalized\": 182.0, \"death\": 10.0, \"total\": 14764, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14764, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 13920.0, \"positiveIncrease\": 140.0, \"totalTestResultsIncrease\": 14060.0, \"ratio\": 0.047683554592251425, \"sinceDay0\": 0}, {\"index\": 38, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalized\": 223.0, \"death\": 15.0, \"total\": 17316, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 17316, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 1}, {\"index\": 40, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalized\": 90.0, \"death\": 11.0, \"total\": 7280, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7280, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 0}, {\"index\": 97, \"date\": \"2020-03-25T00:00:00\", \"state\": \"PA\", \"positive\": 1127.0, \"negative\": 11193.0, \"pending\": null, \"hospitalized\": null, \"death\": 11.0, \"total\": 12320, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 12320, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2550.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2826.0, \"ratio\": 0.09147727272727273, \"sinceDay0\": 0}, {\"index\": 41, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 18128, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18128, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 1}, {\"index\": 103, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TX\", \"positive\": 974.0, \"negative\": 12520.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 13494, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 13494, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1763.0, \"positiveIncrease\": 564.0, \"totalTestResultsIncrease\": 2327.0, \"ratio\": 0.07218022824959242, \"sinceDay0\": 0}, {\"index\": 47, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 21424, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 21424, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 1}, {\"index\": 49, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalized\": 65.0, \"death\": 13.0, \"total\": 6189, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6189, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 0}, {\"index\": 867, \"date\": \"2020-03-11T00:00:00\", \"state\": \"WA\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 2442, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 2442, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"sinceDay0\": 0}, {\"index\": 816, \"date\": \"2020-03-12T00:00:00\", \"state\": \"WA\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalized\": null, \"death\": 29.0, \"total\": 3374, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 3374, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"sinceDay0\": 1}, {\"index\": 765, \"date\": \"2020-03-13T00:00:00\", \"state\": \"WA\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalized\": null, \"death\": 31.0, \"total\": 4807, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 4807, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"sinceDay0\": 2}, {\"index\": 714, \"date\": \"2020-03-14T00:00:00\", \"state\": \"WA\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalized\": null, \"death\": 37.0, \"total\": 6569, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 6569, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"sinceDay0\": 3}, {\"index\": 663, \"date\": \"2020-03-15T00:00:00\", \"state\": \"WA\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalized\": null, \"death\": 40.0, \"total\": 7764, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 7764, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"sinceDay0\": 4}, {\"index\": 612, \"date\": \"2020-03-16T00:00:00\", \"state\": \"WA\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalized\": null, \"death\": 42.0, \"total\": 10220, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 10220, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"sinceDay0\": 5}, {\"index\": 556, \"date\": \"2020-03-17T00:00:00\", \"state\": \"WA\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalized\": null, \"death\": 48.0, \"total\": 12486, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 12486, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"sinceDay0\": 6}, {\"index\": 500, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WA\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalized\": null, \"death\": 52.0, \"total\": 14129, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14129, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"sinceDay0\": 7}, {\"index\": 444, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WA\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalized\": null, \"death\": 66.0, \"total\": 17105, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 17105, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"sinceDay0\": 8}, {\"index\": 388, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WA\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalized\": null, \"death\": 74.0, \"total\": 20712, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 20712, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"sinceDay0\": 9}, {\"index\": 332, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WA\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalized\": null, \"death\": 83.0, \"total\": 23243, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 23243, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"sinceDay0\": 10}, {\"index\": 276, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WA\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalized\": null, \"death\": 94.0, \"total\": 27121, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 27121, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"sinceDay0\": 11}, {\"index\": 220, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WA\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalized\": null, \"death\": 95.0, \"total\": 30875, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 30875, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"sinceDay0\": 12}, {\"index\": 164, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WA\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 110.0, \"total\": 33933, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 33933, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"sinceDay0\": 13}, {\"index\": 108, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WA\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 123.0, \"total\": 34181, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 34181, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"sinceDay0\": 14}, {\"index\": 52, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 132.0, \"total\": 34292, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 34292, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 15}, {\"index\": 7, \"date\": \"2020-03-11T00:00:00\", \"state\": \"All US\", \"positive\": 1053.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalized\": 0.0, \"death\": 27.0, \"total\": 7686, \"dateChecked\": null, \"totalTestResults\": 7123, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 275.0, \"totalTestResultsIncrease\": 2538.0, \"ratio\": 10.908795556696404, \"sinceDay0\": 0}, {\"index\": 8, \"date\": \"2020-03-12T00:00:00\", \"state\": \"All US\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalized\": 0.0, \"death\": 36.0, \"total\": 10029, \"dateChecked\": null, \"totalTestResults\": 9356, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 2233.0, \"ratio\": 9.756655510469434, \"sinceDay0\": 1}, {\"index\": 9, \"date\": \"2020-03-13T00:00:00\", \"state\": \"All US\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalized\": 0.0, \"death\": 39.0, \"total\": 16665, \"dateChecked\": null, \"totalTestResults\": 15535, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"sinceDay0\": 2}, {\"index\": 10, \"date\": \"2020-03-14T00:00:00\", \"state\": \"All US\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalized\": 0.0, \"death\": 49.0, \"total\": 20788, \"dateChecked\": null, \"totalTestResults\": 19552, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"sinceDay0\": 3}, {\"index\": 11, \"date\": \"2020-03-15T00:00:00\", \"state\": \"All US\", \"positive\": 3173.0, \"negative\": 22548.0, \"pending\": 2242.0, \"hospitalized\": 0.0, \"death\": 60.0, \"total\": 27963, \"dateChecked\": null, \"totalTestResults\": 25721, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5446.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6169.0, \"ratio\": 9.136862838236842, \"sinceDay0\": 4}, {\"index\": 12, \"date\": \"2020-03-16T00:00:00\", \"state\": \"All US\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalized\": 0.0, \"death\": 71.0, \"total\": 41814, \"dateChecked\": null, \"totalTestResults\": 40123, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13524.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14361.0, \"ratio\": 10.964166847366664, \"sinceDay0\": 5}, {\"index\": 13, \"date\": \"2020-03-17T00:00:00\", \"state\": \"All US\", \"positive\": 5723.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalized\": 0.0, \"death\": 90.0, \"total\": 55014, \"dateChecked\": null, \"totalTestResults\": 53327, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1704.0, \"totalTestResultsIncrease\": 13204.0, \"ratio\": 9.739987531671058, \"sinceDay0\": 6}, {\"index\": 14, \"date\": \"2020-03-18T00:00:00\", \"state\": \"All US\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2538.0, \"hospitalized\": 0.0, \"death\": 112.0, \"total\": 76493, \"dateChecked\": null, \"totalTestResults\": 73955, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2007.0, \"totalTestResultsIncrease\": 20628.0, \"ratio\": 8.606150771718424, \"sinceDay0\": 7}, {\"index\": 15, \"date\": \"2020-03-19T00:00:00\", \"state\": \"All US\", \"positive\": 11719.0, \"negative\": 89119.0, \"pending\": 3025.0, \"hospitalized\": 0.0, \"death\": 160.0, \"total\": 103863, \"dateChecked\": null, \"totalTestResults\": 100838, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22894.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26883.0, \"ratio\": 8.455627941743812, \"sinceDay0\": 8}, {\"index\": 16, \"date\": \"2020-03-20T00:00:00\", \"state\": \"All US\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3336.0, \"hospitalized\": 0.0, \"death\": 219.0, \"total\": 138516, \"dateChecked\": null, \"totalTestResults\": 135180, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29028.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34342.0, \"ratio\": 8.864709945630347, \"sinceDay0\": 9}, {\"index\": 17, \"date\": \"2020-03-21T00:00:00\", \"state\": \"All US\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3477.0, \"hospitalized\": 1964.0, \"death\": 272.0, \"total\": 182583, \"dateChecked\": null, \"totalTestResults\": 179106, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.859323100114171, \"sinceDay0\": 10}, {\"index\": 18, \"date\": \"2020-03-22T00:00:00\", \"state\": \"All US\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalized\": 2554.0, \"death\": 398.0, \"total\": 228184, \"dateChecked\": null, \"totalTestResults\": 225342, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"sinceDay0\": 11}, {\"index\": 19, \"date\": \"2020-03-23T00:00:00\", \"state\": \"All US\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalized\": 3325.0, \"death\": 471.0, \"total\": 294044, \"dateChecked\": null, \"totalTestResults\": 279473, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"sinceDay0\": 12}, {\"index\": 20, \"date\": \"2020-03-24T00:00:00\", \"state\": \"All US\", \"positive\": 51954.0, \"negative\": 292758.0, \"pending\": 14433.0, \"hospitalized\": 4468.0, \"death\": 675.0, \"total\": 359145, \"dateChecked\": null, \"totalTestResults\": 344712, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55437.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65239.0, \"ratio\": 8.656619247575962, \"sinceDay0\": 13}, {\"index\": 21, \"date\": \"2020-03-25T00:00:00\", \"state\": \"All US\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalized\": 6136.0, \"death\": 900.0, \"total\": 472767, \"dateChecked\": null, \"totalTestResults\": 421532, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64846.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76820.0, \"ratio\": 7.660441721334681, \"sinceDay0\": 14}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalized\": 10131.0, \"death\": 1163.0, \"total\": 579589, \"dateChecked\": null, \"totalTestResults\": 519338, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 15}], \"data-3899ae2c1decc8431266557b3b26d71d\": [{\"index\": 0, \"day\": 1, \"case\": 10.0, \"doubling period\": \"every day\"}, {\"index\": 1, \"day\": 2, \"case\": 20.0, \"doubling period\": \"every day\"}, {\"index\": 2, \"day\": 3, \"case\": 40.0, \"doubling period\": \"every day\"}, {\"index\": 3, \"day\": 4, \"case\": 80.0, \"doubling period\": \"every day\"}, {\"index\": 4, \"day\": 5, \"case\": 160.0, \"doubling period\": \"every day\"}, {\"index\": 5, \"day\": 10, \"case\": 5120.0, \"doubling period\": \"every day\"}, {\"index\": 6, \"day\": 15, \"case\": 163840.0, \"doubling period\": \"every day\"}, {\"index\": 7, \"day\": 20, \"case\": 5242880.0, \"doubling period\": \"every day\"}, {\"index\": 8, \"day\": 50, \"case\": 5629499534213120.0, \"doubling period\": \"every day\"}, {\"index\": 9, \"day\": 100, \"case\": 0.0, \"doubling period\": \"every day\"}, {\"index\": 0, \"day\": 1, \"case\": 10.0, \"doubling period\": \"three days\"}, {\"index\": 1, \"day\": 2, \"case\": 12.599210498948732, \"doubling period\": \"three days\"}, {\"index\": 2, \"day\": 3, \"case\": 15.874010519681994, \"doubling period\": \"three days\"}, {\"index\": 3, \"day\": 4, \"case\": 20.0, \"doubling period\": \"three days\"}, {\"index\": 4, \"day\": 5, \"case\": 25.198420997897465, \"doubling period\": \"three days\"}, {\"index\": 5, \"day\": 10, \"case\": 80.0, \"doubling period\": \"three days\"}, {\"index\": 6, \"day\": 15, \"case\": 253.98416831491198, \"doubling period\": \"three days\"}, {\"index\": 7, \"day\": 20, \"case\": 806.3494719327186, \"doubling period\": \"three days\"}, {\"index\": 8, \"day\": 50, \"case\": 825701.8592591034, \"doubling period\": \"three days\"}, {\"index\": 9, \"day\": 100, \"case\": 85899345920.0, \"doubling period\": \"three days\"}, {\"index\": 0, \"day\": 1, \"case\": 10.0, \"doubling period\": \"every week\"}, {\"index\": 1, \"day\": 2, \"case\": 11.040895136738122, \"doubling period\": \"every week\"}, {\"index\": 2, \"day\": 3, \"case\": 12.190136542044755, \"doubling period\": \"every week\"}, {\"index\": 3, \"day\": 4, \"case\": 13.459001926323563, \"doubling period\": \"every week\"}, {\"index\": 4, \"day\": 5, \"case\": 14.859942891369485, \"doubling period\": \"every week\"}, {\"index\": 5, \"day\": 10, \"case\": 24.380273084089513, \"doubling period\": \"every week\"}, {\"index\": 6, \"day\": 15, \"case\": 40.0, \"doubling period\": \"every week\"}, {\"index\": 7, \"day\": 20, \"case\": 65.62682848061104, \"doubling period\": \"every week\"}, {\"index\": 8, \"day\": 50, \"case\": 1280.0, \"doubling period\": \"every week\"}, {\"index\": 9, \"day\": 100, \"case\": 180894.02592031736, \"doubling period\": \"every week\"}], \"data-fbb77d4fa425f433be0b6da01b0cd6e7\": [{\"index\": 5, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalized\": null, \"death\": 65.0, \"total\": 77786, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20386, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 9}, {\"index\": 6, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalized\": 148.0, \"death\": 19.0, \"total\": 8064, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8064, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 1}, {\"index\": 7, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalized\": 125.0, \"death\": 21.0, \"total\": 6637, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6637, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 3}, {\"index\": 10, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalized\": 406.0, \"death\": 28.0, \"total\": 27539, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 26096, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 6}, {\"index\": 11, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalized\": 473.0, \"death\": 48.0, \"total\": 8926, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8926, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 7}, {\"index\": 16, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalized\": null, \"death\": 26.0, \"total\": 16631, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 16631, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 3}, {\"index\": 17, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalized\": null, \"death\": 17.0, \"total\": 4651, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4651, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 2}, {\"index\": 20, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalized\": 676.0, \"death\": 83.0, \"total\": 18029, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18029, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 6}, {\"index\": 21, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalized\": 219.0, \"death\": 25.0, \"total\": 23621, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 23621, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 2}, {\"index\": 24, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalized\": null, \"death\": 60.0, \"total\": 9406, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 9406, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 3}, {\"index\": 34, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalized\": null, \"death\": 81.0, \"total\": 20537, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20537, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 6}, {\"index\": 36, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 5117, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 5117, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 0}, {\"index\": 37, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalized\": 6844.0, \"death\": 385.0, \"total\": 122104, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 122104, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 8}, {\"index\": 38, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalized\": 223.0, \"death\": 15.0, \"total\": 17316, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 17316, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 1}, {\"index\": 40, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalized\": 90.0, \"death\": 11.0, \"total\": 7280, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7280, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 0}, {\"index\": 41, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 18128, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18128, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 1}, {\"index\": 47, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 21424, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 21424, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 1}, {\"index\": 49, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalized\": 65.0, \"death\": 13.0, \"total\": 6189, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6189, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 0}, {\"index\": 52, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 132.0, \"total\": 34292, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 34292, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 15}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalized\": 10131.0, \"death\": 1163.0, \"total\": 579589, \"dateChecked\": null, \"totalTestResults\": 519338, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 15}], \"data-e4b5b6965c8c823b5ce3cb31b8c7f248\": [{\"labelX\": 10, \"labelY\": 6000, \"labelText\": \"doubles every day\"}, {\"labelX\": 19, \"labelY\": 700, \"labelText\": \"doubles every 3 days\"}, {\"labelX\": 23, \"labelY\": 50, \"labelText\": \"doubles every week\"}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.LayerChart(...)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# make dataframe for text labels on chart - hand edit these label locations\n",
    "textLabels_df = pd.DataFrame(\n",
    "    [[10,6000,'doubles every day'],\n",
    "     [19,700,'doubles every 3 days'],\n",
    "     [23,50, 'doubles every week']],\n",
    "    columns =['labelX', 'labelY','labelText']\n",
    ")\n",
    "\n",
    "# make dataframe of states with points >=10 deaths\n",
    "death10_df = data_df.loc[data_df['death']>=10]\n",
    "\n",
    "# group death10 dataframe by state and then increasing order of date\n",
    "death10_df = death10_df.sort_values(by=['state','date'])\n",
    "\n",
    "# add US to that dataframe\n",
    "nationdeath10_df = nation_df.loc[nation_df['death']>=10]\n",
    "death10_df= pd.concat ([death10_df,nationdeath10_df])\n",
    "\n",
    "death10_df = death10_df.reset_index()\n",
    "\n",
    "# make a list of the states with 10 or more deaths\n",
    "state_list = list(set(death10_df['state']))\n",
    "\n",
    "# add a column for the number of days since the 10th death for each state\n",
    "for state, df in death10_df.groupby('state'):\n",
    "    death10_df.loc[df.index,'sinceDay0'] = range(0, len(df))\n",
    "death10_df = death10_df.astype({'sinceDay0': 'int32'})\n",
    "\n",
    "#Now create plotlines for each state since 10 deaths\n",
    "lineChart = alt.Chart(death10_df,title='US States: Cumulative Deaths Since 10th Death').mark_line(interpolate='basis').encode(\n",
    "    alt.X('sinceDay0:Q', axis=alt.Axis(title='Days Since 10th Death')),\n",
    "    alt.Y('death:Q',\n",
    "         axis = alt.Axis(title='Cumulative Deaths'),\n",
    "         scale=alt.Scale(type='log')),\n",
    "    tooltip=['state', 'sinceDay0', 'death', 'positive'],\n",
    "    color = 'state'\n",
    ")\n",
    "\n",
    "#Create a layer with the lines for doubling every day and doubling every week\n",
    "ruleChart = alt.Chart(logRules_df).mark_line(opacity=0.2,clip=True).encode(\n",
    "    alt.X('day:Q',\n",
    "            scale=alt.Scale(domain=[1,23])),\n",
    "    alt.Y('case', scale=alt.Scale(type='log',domain=[10,10000]),\n",
    "         ),\n",
    "    color = 'doubling period',\n",
    "    tooltip = ['doubling period'])        \n",
    "\n",
    "# create a layer for the state labels\n",
    "# 1) make dataframe with each state's max days\n",
    "# 2) make a chart layer with text of state name to right of each state's rightmost point\n",
    "stateLabels_df = death10_df[death10_df['sinceDay0'] == death10_df.groupby(['state'])['sinceDay0'].transform(max)]\n",
    "labelChart = alt.Chart(stateLabels_df).mark_text(align='left', baseline='middle', dx=10).encode(\n",
    "    x='sinceDay0',\n",
    "    y='death',\n",
    "    text='state',\n",
    "    color='state')\n",
    "\n",
    "#now put the text labels layer on top of state labels Chart\n",
    "labelChart = labelChart + alt.Chart(textLabels_df).mark_text(align='right', baseline='bottom', dx=0, size=18,opacity=0.5).encode(\n",
    "    x='labelX',\n",
    "    y='labelY',\n",
    "    text='labelText')\n",
    "\n",
    "\n",
    "## Create some tooltip behavior - show Y values on mouseover\n",
    "# Step 1: Selection that chooses nearest point based on value on x-axis\n",
    "nearest = alt.selection(type='single', nearest=True, on='mouseover',\n",
    "                            fields=['sinceDay0'])\n",
    "\n",
    "# Step 2: Transparent selectors across the chart. This is what tells us\n",
    "# the x-value of the cursor\n",
    "selectors = alt.Chart().mark_point().encode(\n",
    "    x=\"sinceDay0:Q\",\n",
    "    opacity=alt.value(0),\n",
    ").add_selection(\n",
    "    nearest\n",
    ")\n",
    "\n",
    "# Step 3: Add text, show values in column when it's the nearest point to \n",
    "# mouseover, else show blank\n",
    "text = lineChart.mark_text(align='center', dx=3, dy=-20).encode(\n",
    "    text=alt.condition(nearest, 'death', alt.value(' '))\n",
    ")\n",
    "\n",
    "\n",
    "#Finally, lets show the chart!\n",
    "\n",
    "chart = alt.layer(lineChart, ruleChart, labelChart, selectors, text, data=death10_df)\n",
    "#chart = alt.layer(lineChart, ruleChart, labelChart)\n",
    "chart.properties(width=800,height=600)\n",
    "\n",
    "display(chart)\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 41,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-821c26db5ee1411688198eda793a8e05\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-821c26db5ee1411688198eda793a8e05\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-4868ed539491c342ea822b0d418131e6\"}, \"mark\": {\"type\": \"line\", \"interpolate\": \"basis\"}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days since 100th case\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative positive cases\"}, \"field\": \"positive\", \"scale\": {\"type\": \"log\"}}}, \"title\": \"US States: total cases since 100th case\"}, {\"data\": {\"name\": \"data-e99f1b5c9a7c3f6418e92cbe4224be4a\"}, \"mark\": {\"type\": \"line\", \"clip\": true, \"opacity\": 0.2}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"doubling period\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"day\", \"scale\": {\"domain\": [1, 30]}}, \"y\": {\"type\": \"quantitative\", \"field\": \"case\", \"scale\": {\"domain\": [100, 100000], \"type\": \"log\"}}}}, {\"layer\": [{\"data\": {\"name\": \"data-1dfdacab44ea1f68407f4b705005959d\"}, \"mark\": {\"type\": \"text\", \"align\": \"left\", \"baseline\": \"middle\", \"dx\": 10}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"type\": \"nominal\", \"field\": \"state\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive\"}}}, {\"data\": {\"name\": \"data-fd6452152b33a51e350c04c156674fe8\"}, \"mark\": {\"type\": \"text\", \"align\": \"right\", \"baseline\": \"bottom\", \"dx\": 0, \"opacity\": 0.5, \"size\": 18}, \"encoding\": {\"text\": {\"type\": \"nominal\", \"field\": \"labelText\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"labelX\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"labelY\"}}}]}, {\"mark\": \"point\", \"encoding\": {\"opacity\": {\"value\": 0}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}}, \"selection\": {\"selector010\": {\"type\": \"single\", \"nearest\": true, \"on\": \"mouseover\", \"fields\": [\"sinceDay0\"]}}}, {\"data\": {\"name\": \"data-4868ed539491c342ea822b0d418131e6\"}, \"mark\": {\"type\": \"text\", \"align\": \"center\", \"dx\": 3, \"dy\": -20}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"condition\": {\"type\": \"quantitative\", \"field\": \"positive\", \"selection\": \"selector010\"}, \"value\": \" \"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days since 100th case\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative positive cases\"}, \"field\": \"positive\", \"scale\": {\"type\": \"log\"}}}, \"title\": \"US States: total cases since 100th case\"}], \"data\": {\"name\": \"data-15948fdb2a4e51b91f6431e48e7e0363\"}, \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-15948fdb2a4e51b91f6431e48e7e0363\": [{\"index\": 509, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CA\", \"positive\": 483.0, \"negative\": 7981.0, \"pending\": null, \"hospitalized\": null, \"death\": 11.0, \"total\": 8464, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 8464, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 148.0, \"ratio\": 0.057065217391304345, \"sinceDay0\": 0}, {\"index\": 453, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CA\", \"positive\": 611.0, \"negative\": 7981.0, \"pending\": null, \"hospitalized\": null, \"death\": 13.0, \"total\": 8592, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 8592, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.07111266294227188, \"sinceDay0\": 1}, {\"index\": 397, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CA\", \"positive\": 924.0, \"negative\": 8787.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 9711, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 9711, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 313.0, \"totalTestResultsIncrease\": 1119.0, \"ratio\": 0.09514983008958913, \"sinceDay0\": 2}, {\"index\": 341, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CA\", \"positive\": 1063.0, \"negative\": 10424.0, \"pending\": null, \"hospitalized\": null, \"death\": 20.0, \"total\": 11487, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 11487, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1637.0, \"positiveIncrease\": 139.0, \"totalTestResultsIncrease\": 1776.0, \"ratio\": 0.092539392356577, \"sinceDay0\": 3}, {\"index\": 285, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CA\", \"positive\": 1279.0, \"negative\": 11249.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 12528, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 12528, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 825.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 1041.0, \"ratio\": 0.10209131545338442, \"sinceDay0\": 4}, {\"index\": 229, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CA\", \"positive\": 1536.0, \"negative\": 11304.0, \"pending\": null, \"hospitalized\": null, \"death\": 27.0, \"total\": 12840, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 12840, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 55.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 312.0, \"ratio\": 0.11962616822429907, \"sinceDay0\": 5}, {\"index\": 173, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CA\", \"positive\": 1733.0, \"negative\": 12567.0, \"pending\": 12100.0, \"hospitalized\": null, \"death\": 27.0, \"total\": 26400, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 14300, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 197.0, \"totalTestResultsIncrease\": 1460.0, \"ratio\": 0.0656439393939394, \"sinceDay0\": 6}, {\"index\": 117, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CA\", \"positive\": 2102.0, \"negative\": 13452.0, \"pending\": 12100.0, \"hospitalized\": null, \"death\": 40.0, \"total\": 27654, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 15554, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 885.0, \"positiveIncrease\": 369.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.0760107036956679, \"sinceDay0\": 7}, {\"index\": 61, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CA\", \"positive\": 2355.0, \"negative\": 15921.0, \"pending\": 48600.0, \"hospitalized\": null, \"death\": 53.0, \"total\": 66876, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 18276, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2722.0, \"ratio\": 0.03521442670016149, \"sinceDay0\": 8}, {\"index\": 5, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalized\": null, \"death\": 65.0, \"total\": 77786, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20386, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 9}, {\"index\": 62, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CO\", \"positive\": 912.0, \"negative\": 6789.0, \"pending\": null, \"hospitalized\": 84.0, \"death\": 11.0, \"total\": 7701, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 7701, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1285.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1477.0, \"ratio\": 0.11842617841838722, \"sinceDay0\": 0}, {\"index\": 6, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalized\": 148.0, \"death\": 19.0, \"total\": 8064, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8064, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 1}, {\"index\": 175, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CT\", \"positive\": 415.0, \"negative\": 4085.0, \"pending\": null, \"hospitalized\": 54.0, \"death\": 10.0, \"total\": 4500, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 4500, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1208.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1400.0, \"ratio\": 0.09222222222222222, \"sinceDay0\": 0}, {\"index\": 119, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CT\", \"positive\": 618.0, \"negative\": 4682.0, \"pending\": null, \"hospitalized\": 71.0, \"death\": 12.0, \"total\": 5300, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5300, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 597.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.11660377358490566, \"sinceDay0\": 1}, {\"index\": 63, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CT\", \"positive\": 875.0, \"negative\": 5023.0, \"pending\": null, \"hospitalized\": 113.0, \"death\": 19.0, \"total\": 5898, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 5898, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 341.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 598.0, \"ratio\": 0.14835537470328924, \"sinceDay0\": 2}, {\"index\": 7, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalized\": 125.0, \"death\": 21.0, \"total\": 6637, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6637, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 3}, {\"index\": 346, \"date\": \"2020-03-20T00:00:00\", \"state\": \"FL\", \"positive\": 520.0, \"negative\": 1870.0, \"pending\": 1026.0, \"hospitalized\": null, \"death\": 10.0, \"total\": 3416, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2390, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 337.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.1522248243559719, \"sinceDay0\": 0}, {\"index\": 290, \"date\": \"2020-03-21T00:00:00\", \"state\": \"FL\", \"positive\": 658.0, \"negative\": 6579.0, \"pending\": 1002.0, \"hospitalized\": 158.0, \"death\": 12.0, \"total\": 8239, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 7237, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 4709.0, \"positiveIncrease\": 138.0, \"totalTestResultsIncrease\": 4847.0, \"ratio\": 0.07986406117247238, \"sinceDay0\": 1}, {\"index\": 234, \"date\": \"2020-03-22T00:00:00\", \"state\": \"FL\", \"positive\": 830.0, \"negative\": 7990.0, \"pending\": 963.0, \"hospitalized\": 185.0, \"death\": 13.0, \"total\": 9783, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 8820, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 1411.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1583.0, \"ratio\": 0.08484105080241235, \"sinceDay0\": 2}, {\"index\": 178, \"date\": \"2020-03-23T00:00:00\", \"state\": \"FL\", \"positive\": 1171.0, \"negative\": 11063.0, \"pending\": 860.0, \"hospitalized\": 217.0, \"death\": 14.0, \"total\": 13094, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 12234, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 3073.0, \"positiveIncrease\": 341.0, \"totalTestResultsIncrease\": 3414.0, \"ratio\": 0.08943027340766764, \"sinceDay0\": 3}, {\"index\": 122, \"date\": \"2020-03-24T00:00:00\", \"state\": \"FL\", \"positive\": 1412.0, \"negative\": 13127.0, \"pending\": 1008.0, \"hospitalized\": 259.0, \"death\": 18.0, \"total\": 15547, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 14539, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 2064.0, \"positiveIncrease\": 241.0, \"totalTestResultsIncrease\": 2305.0, \"ratio\": 0.09082138033061041, \"sinceDay0\": 4}, {\"index\": 66, \"date\": \"2020-03-25T00:00:00\", \"state\": \"FL\", \"positive\": 1682.0, \"negative\": 15374.0, \"pending\": 1233.0, \"hospitalized\": 316.0, \"death\": 22.0, \"total\": 18289, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 17056, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 57.0, \"negativeIncrease\": 2247.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2517.0, \"ratio\": 0.09196784952703811, \"sinceDay0\": 5}, {\"index\": 10, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalized\": 406.0, \"death\": 28.0, \"total\": 27539, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 26096, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 6}, {\"index\": 403, \"date\": \"2020-03-19T00:00:00\", \"state\": \"GA\", \"positive\": 287.0, \"negative\": 1544.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 1831, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 1831, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 233.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 323.0, \"ratio\": 0.1567449481157837, \"sinceDay0\": 0}, {\"index\": 347, \"date\": \"2020-03-20T00:00:00\", \"state\": \"GA\", \"positive\": 420.0, \"negative\": 1966.0, \"pending\": null, \"hospitalized\": null, \"death\": 13.0, \"total\": 2386, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2386, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 133.0, \"totalTestResultsIncrease\": 555.0, \"ratio\": 0.1760268231349539, \"sinceDay0\": 1}, {\"index\": 291, \"date\": \"2020-03-21T00:00:00\", \"state\": \"GA\", \"positive\": 507.0, \"negative\": 2557.0, \"pending\": null, \"hospitalized\": null, \"death\": 14.0, \"total\": 3064, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 3064, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 591.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 678.0, \"ratio\": 0.16546997389033943, \"sinceDay0\": 2}, {\"index\": 235, \"date\": \"2020-03-22T00:00:00\", \"state\": \"GA\", \"positive\": 600.0, \"negative\": 3420.0, \"pending\": null, \"hospitalized\": null, \"death\": 23.0, \"total\": 4020, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 4020, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 863.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 956.0, \"ratio\": 0.14925373134328357, \"sinceDay0\": 3}, {\"index\": 179, \"date\": \"2020-03-23T00:00:00\", \"state\": \"GA\", \"positive\": 772.0, \"negative\": 4297.0, \"pending\": null, \"hospitalized\": null, \"death\": 25.0, \"total\": 5069, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5069, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 877.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.152298283685145, \"sinceDay0\": 4}, {\"index\": 123, \"date\": \"2020-03-24T00:00:00\", \"state\": \"GA\", \"positive\": 1026.0, \"negative\": 4458.0, \"pending\": null, \"hospitalized\": null, \"death\": 32.0, \"total\": 5484, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5484, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 161.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 415.0, \"ratio\": 0.18708971553610504, \"sinceDay0\": 5}, {\"index\": 67, \"date\": \"2020-03-25T00:00:00\", \"state\": \"GA\", \"positive\": 1247.0, \"negative\": 4932.0, \"pending\": null, \"hospitalized\": 394.0, \"death\": 40.0, \"total\": 6179, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 6179, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 394.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 695.0, \"ratio\": 0.20181259103414792, \"sinceDay0\": 6}, {\"index\": 11, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalized\": 473.0, \"death\": 48.0, \"total\": 8926, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8926, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 7}, {\"index\": 184, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IL\", \"positive\": 1273.0, \"negative\": 8583.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 9856, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 9856, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1312.0, \"positiveIncrease\": 224.0, \"totalTestResultsIncrease\": 1536.0, \"ratio\": 0.1291599025974026, \"sinceDay0\": 0}, {\"index\": 128, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IL\", \"positive\": 1535.0, \"negative\": 9934.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 11469, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 11469, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 1613.0, \"ratio\": 0.13383904438050398, \"sinceDay0\": 1}, {\"index\": 72, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IL\", \"positive\": 1865.0, \"negative\": 12344.0, \"pending\": null, \"hospitalized\": null, \"death\": 19.0, \"total\": 14209, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14209, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2410.0, \"positiveIncrease\": 330.0, \"totalTestResultsIncrease\": 2740.0, \"ratio\": 0.13125483848265185, \"sinceDay0\": 2}, {\"index\": 16, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalized\": null, \"death\": 26.0, \"total\": 16631, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 16631, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 3}, {\"index\": 129, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IN\", \"positive\": 365.0, \"negative\": 2566.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 12.0, \"total\": 2931, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 2931, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 865.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 971.0, \"ratio\": 0.1245308768338451, \"sinceDay0\": 0}, {\"index\": 73, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IN\", \"positive\": 477.0, \"negative\": 2879.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 14.0, \"total\": 3356, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 3356, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 313.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 425.0, \"ratio\": 0.14213349225268176, \"sinceDay0\": 1}, {\"index\": 17, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalized\": null, \"death\": 17.0, \"total\": 4651, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4651, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 2}, {\"index\": 356, \"date\": \"2020-03-20T00:00:00\", \"state\": \"LA\", \"positive\": 479.0, \"negative\": 568.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 1047, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 1047, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 110.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 242.0, \"ratio\": 0.4574976122254059, \"sinceDay0\": 0}, {\"index\": 300, \"date\": \"2020-03-21T00:00:00\", \"state\": \"LA\", \"positive\": 585.0, \"negative\": 2180.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 2765, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2765, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1612.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1718.0, \"ratio\": 0.2115732368896926, \"sinceDay0\": 1}, {\"index\": 244, \"date\": \"2020-03-22T00:00:00\", \"state\": \"LA\", \"positive\": 837.0, \"negative\": 2661.0, \"pending\": null, \"hospitalized\": null, \"death\": 20.0, \"total\": 3498, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3498, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 481.0, \"positiveIncrease\": 252.0, \"totalTestResultsIncrease\": 733.0, \"ratio\": 0.23927958833619212, \"sinceDay0\": 2}, {\"index\": 188, \"date\": \"2020-03-23T00:00:00\", \"state\": \"LA\", \"positive\": 1172.0, \"negative\": 4776.0, \"pending\": null, \"hospitalized\": null, \"death\": 34.0, \"total\": 5948, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5948, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2115.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2450.0, \"ratio\": 0.19704102219233355, \"sinceDay0\": 3}, {\"index\": 132, \"date\": \"2020-03-24T00:00:00\", \"state\": \"LA\", \"positive\": 1388.0, \"negative\": 7215.0, \"pending\": null, \"hospitalized\": 271.0, \"death\": 46.0, \"total\": 8603, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 8603, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 271.0, \"negativeIncrease\": 2439.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 2655.0, \"ratio\": 0.161339067767058, \"sinceDay0\": 4}, {\"index\": 76, \"date\": \"2020-03-25T00:00:00\", \"state\": \"LA\", \"positive\": 1795.0, \"negative\": 9656.0, \"pending\": null, \"hospitalized\": 491.0, \"death\": 65.0, \"total\": 11451, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 11451, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 220.0, \"negativeIncrease\": 2441.0, \"positiveIncrease\": 407.0, \"totalTestResultsIncrease\": 2848.0, \"ratio\": 0.15675486857043053, \"sinceDay0\": 5}, {\"index\": 20, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalized\": 676.0, \"death\": 83.0, \"total\": 18029, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18029, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 6}, {\"index\": 133, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MA\", \"positive\": 1159.0, \"negative\": 12590.0, \"pending\": null, \"hospitalized\": 94.0, \"death\": 11.0, \"total\": 13749, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 13749, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 382.0, \"totalTestResultsIncrease\": 4827.0, \"ratio\": 0.08429703978471162, \"sinceDay0\": 0}, {\"index\": 77, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MA\", \"positive\": 1838.0, \"negative\": 17956.0, \"pending\": null, \"hospitalized\": 103.0, \"death\": 15.0, \"total\": 19794, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 19794, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 5366.0, \"positiveIncrease\": 679.0, \"totalTestResultsIncrease\": 6045.0, \"ratio\": 0.0928564211377185, \"sinceDay0\": 1}, {\"index\": 21, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalized\": 219.0, \"death\": 25.0, \"total\": 23621, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 23621, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 2}, {\"index\": 192, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MI\", \"positive\": 1328.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 15.0, \"total\": 3397, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3397, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 293.0, \"totalTestResultsIncrease\": 293.0, \"ratio\": 0.3909331763320577, \"sinceDay0\": 0}, {\"index\": 136, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MI\", \"positive\": 1791.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 3860, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 3860, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 463.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.4639896373056995, \"sinceDay0\": 1}, {\"index\": 80, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MI\", \"positive\": 2294.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 43.0, \"total\": 4363, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 4363, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 503.0, \"totalTestResultsIncrease\": 503.0, \"ratio\": 0.5257850103140042, \"sinceDay0\": 2}, {\"index\": 24, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalized\": null, \"death\": 60.0, \"total\": 9406, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 9406, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 3}, {\"index\": 370, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NJ\", \"positive\": 890.0, \"negative\": 264.0, \"pending\": 86.0, \"hospitalized\": null, \"death\": 11.0, \"total\": 1240, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 1154, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 54.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 202.0, \"ratio\": 0.717741935483871, \"sinceDay0\": 0}, {\"index\": 314, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NJ\", \"positive\": 1327.0, \"negative\": 294.0, \"pending\": 40.0, \"hospitalized\": null, \"death\": 16.0, \"total\": 1661, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 1621, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 30.0, \"positiveIncrease\": 437.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.7989163154726069, \"sinceDay0\": 1}, {\"index\": 258, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NJ\", \"positive\": 1914.0, \"negative\": 327.0, \"pending\": 49.0, \"hospitalized\": null, \"death\": 20.0, \"total\": 2290, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 2241, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 33.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 620.0, \"ratio\": 0.8358078602620087, \"sinceDay0\": 2}, {\"index\": 202, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NJ\", \"positive\": 2844.0, \"negative\": 359.0, \"pending\": 94.0, \"hospitalized\": null, \"death\": 27.0, \"total\": 3297, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3203, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 930.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.8626023657870792, \"sinceDay0\": 3}, {\"index\": 146, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NJ\", \"positive\": 3675.0, \"negative\": 8325.0, \"pending\": 45.0, \"hospitalized\": null, \"death\": 44.0, \"total\": 12045, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 12000, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7966.0, \"positiveIncrease\": 831.0, \"totalTestResultsIncrease\": 8797.0, \"ratio\": 0.30510585305105853, \"sinceDay0\": 4}, {\"index\": 90, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NJ\", \"positive\": 4402.0, \"negative\": 10452.0, \"pending\": null, \"hospitalized\": null, \"death\": 62.0, \"total\": 14854, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14854, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2127.0, \"positiveIncrease\": 727.0, \"totalTestResultsIncrease\": 2854.0, \"ratio\": 0.2963511512050626, \"sinceDay0\": 5}, {\"index\": 34, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalized\": null, \"death\": 81.0, \"total\": 20537, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20537, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 6}, {\"index\": 36, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 5117, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 5117, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 0}, {\"index\": 485, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NY\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 14597, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14597, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"sinceDay0\": 0}, {\"index\": 429, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NY\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 22284, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 22284, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"sinceDay0\": 1}, {\"index\": 373, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NY\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalized\": null, \"death\": 35.0, \"total\": 32427, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 32427, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"sinceDay0\": 2}, {\"index\": 317, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NY\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalized\": 1603.0, \"death\": 44.0, \"total\": 45437, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 45437, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"sinceDay0\": 3}, {\"index\": 261, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NY\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalized\": 1974.0, \"death\": 114.0, \"total\": 61401, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 61401, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"sinceDay0\": 4}, {\"index\": 205, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NY\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalized\": 2635.0, \"death\": 114.0, \"total\": 78289, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 78289, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"sinceDay0\": 5}, {\"index\": 149, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NY\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalized\": 3234.0, \"death\": 210.0, \"total\": 91270, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 91270, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"sinceDay0\": 6}, {\"index\": 93, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NY\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalized\": 3805.0, \"death\": 285.0, \"total\": 103479, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 103479, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"sinceDay0\": 7}, {\"index\": 37, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalized\": 6844.0, \"death\": 385.0, \"total\": 122104, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 122104, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 8}, {\"index\": 94, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OH\", \"positive\": 704.0, \"negative\": 14060.0, \"pending\": null, \"hospitalized\": 182.0, \"death\": 10.0, \"total\": 14764, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14764, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 13920.0, \"positiveIncrease\": 140.0, \"totalTestResultsIncrease\": 14060.0, \"ratio\": 0.047683554592251425, \"sinceDay0\": 0}, {\"index\": 38, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalized\": 223.0, \"death\": 15.0, \"total\": 17316, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 17316, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 1}, {\"index\": 40, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalized\": 90.0, \"death\": 11.0, \"total\": 7280, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7280, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 0}, {\"index\": 97, \"date\": \"2020-03-25T00:00:00\", \"state\": \"PA\", \"positive\": 1127.0, \"negative\": 11193.0, \"pending\": null, \"hospitalized\": null, \"death\": 11.0, \"total\": 12320, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 12320, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2550.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2826.0, \"ratio\": 0.09147727272727273, \"sinceDay0\": 0}, {\"index\": 41, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 18128, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18128, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 1}, {\"index\": 103, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TX\", \"positive\": 974.0, \"negative\": 12520.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 13494, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 13494, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1763.0, \"positiveIncrease\": 564.0, \"totalTestResultsIncrease\": 2327.0, \"ratio\": 0.07218022824959242, \"sinceDay0\": 0}, {\"index\": 47, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 21424, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 21424, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 1}, {\"index\": 49, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalized\": 65.0, \"death\": 13.0, \"total\": 6189, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6189, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 0}, {\"index\": 867, \"date\": \"2020-03-11T00:00:00\", \"state\": \"WA\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 2442, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 2442, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"sinceDay0\": 0}, {\"index\": 816, \"date\": \"2020-03-12T00:00:00\", \"state\": \"WA\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalized\": null, \"death\": 29.0, \"total\": 3374, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 3374, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"sinceDay0\": 1}, {\"index\": 765, \"date\": \"2020-03-13T00:00:00\", \"state\": \"WA\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalized\": null, \"death\": 31.0, \"total\": 4807, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 4807, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"sinceDay0\": 2}, {\"index\": 714, \"date\": \"2020-03-14T00:00:00\", \"state\": \"WA\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalized\": null, \"death\": 37.0, \"total\": 6569, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 6569, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"sinceDay0\": 3}, {\"index\": 663, \"date\": \"2020-03-15T00:00:00\", \"state\": \"WA\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalized\": null, \"death\": 40.0, \"total\": 7764, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 7764, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"sinceDay0\": 4}, {\"index\": 612, \"date\": \"2020-03-16T00:00:00\", \"state\": \"WA\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalized\": null, \"death\": 42.0, \"total\": 10220, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 10220, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"sinceDay0\": 5}, {\"index\": 556, \"date\": \"2020-03-17T00:00:00\", \"state\": \"WA\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalized\": null, \"death\": 48.0, \"total\": 12486, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 12486, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"sinceDay0\": 6}, {\"index\": 500, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WA\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalized\": null, \"death\": 52.0, \"total\": 14129, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14129, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"sinceDay0\": 7}, {\"index\": 444, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WA\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalized\": null, \"death\": 66.0, \"total\": 17105, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 17105, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"sinceDay0\": 8}, {\"index\": 388, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WA\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalized\": null, \"death\": 74.0, \"total\": 20712, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 20712, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"sinceDay0\": 9}, {\"index\": 332, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WA\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalized\": null, \"death\": 83.0, \"total\": 23243, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 23243, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"sinceDay0\": 10}, {\"index\": 276, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WA\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalized\": null, \"death\": 94.0, \"total\": 27121, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 27121, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"sinceDay0\": 11}, {\"index\": 220, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WA\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalized\": null, \"death\": 95.0, \"total\": 30875, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 30875, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"sinceDay0\": 12}, {\"index\": 164, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WA\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 110.0, \"total\": 33933, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 33933, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"sinceDay0\": 13}, {\"index\": 108, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WA\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 123.0, \"total\": 34181, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 34181, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"sinceDay0\": 14}, {\"index\": 52, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 132.0, \"total\": 34292, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 34292, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 15}, {\"index\": 7, \"date\": \"2020-03-11T00:00:00\", \"state\": \"All US\", \"positive\": 1053.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalized\": 0.0, \"death\": 27.0, \"total\": 7686, \"dateChecked\": null, \"totalTestResults\": 7123, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 275.0, \"totalTestResultsIncrease\": 2538.0, \"ratio\": 10.908795556696404, \"sinceDay0\": 0}, {\"index\": 8, \"date\": \"2020-03-12T00:00:00\", \"state\": \"All US\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalized\": 0.0, \"death\": 36.0, \"total\": 10029, \"dateChecked\": null, \"totalTestResults\": 9356, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 2233.0, \"ratio\": 9.756655510469434, \"sinceDay0\": 1}, {\"index\": 9, \"date\": \"2020-03-13T00:00:00\", \"state\": \"All US\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalized\": 0.0, \"death\": 39.0, \"total\": 16665, \"dateChecked\": null, \"totalTestResults\": 15535, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"sinceDay0\": 2}, {\"index\": 10, \"date\": \"2020-03-14T00:00:00\", \"state\": \"All US\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalized\": 0.0, \"death\": 49.0, \"total\": 20788, \"dateChecked\": null, \"totalTestResults\": 19552, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"sinceDay0\": 3}, {\"index\": 11, \"date\": \"2020-03-15T00:00:00\", \"state\": \"All US\", \"positive\": 3173.0, \"negative\": 22548.0, \"pending\": 2242.0, \"hospitalized\": 0.0, \"death\": 60.0, \"total\": 27963, \"dateChecked\": null, \"totalTestResults\": 25721, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5446.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6169.0, \"ratio\": 9.136862838236842, \"sinceDay0\": 4}, {\"index\": 12, \"date\": \"2020-03-16T00:00:00\", \"state\": \"All US\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalized\": 0.0, \"death\": 71.0, \"total\": 41814, \"dateChecked\": null, \"totalTestResults\": 40123, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13524.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14361.0, \"ratio\": 10.964166847366664, \"sinceDay0\": 5}, {\"index\": 13, \"date\": \"2020-03-17T00:00:00\", \"state\": \"All US\", \"positive\": 5723.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalized\": 0.0, \"death\": 90.0, \"total\": 55014, \"dateChecked\": null, \"totalTestResults\": 53327, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1704.0, \"totalTestResultsIncrease\": 13204.0, \"ratio\": 9.739987531671058, \"sinceDay0\": 6}, {\"index\": 14, \"date\": \"2020-03-18T00:00:00\", \"state\": \"All US\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2538.0, \"hospitalized\": 0.0, \"death\": 112.0, \"total\": 76493, \"dateChecked\": null, \"totalTestResults\": 73955, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2007.0, \"totalTestResultsIncrease\": 20628.0, \"ratio\": 8.606150771718424, \"sinceDay0\": 7}, {\"index\": 15, \"date\": \"2020-03-19T00:00:00\", \"state\": \"All US\", \"positive\": 11719.0, \"negative\": 89119.0, \"pending\": 3025.0, \"hospitalized\": 0.0, \"death\": 160.0, \"total\": 103863, \"dateChecked\": null, \"totalTestResults\": 100838, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22894.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26883.0, \"ratio\": 8.455627941743812, \"sinceDay0\": 8}, {\"index\": 16, \"date\": \"2020-03-20T00:00:00\", \"state\": \"All US\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3336.0, \"hospitalized\": 0.0, \"death\": 219.0, \"total\": 138516, \"dateChecked\": null, \"totalTestResults\": 135180, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29028.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34342.0, \"ratio\": 8.864709945630347, \"sinceDay0\": 9}, {\"index\": 17, \"date\": \"2020-03-21T00:00:00\", \"state\": \"All US\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3477.0, \"hospitalized\": 1964.0, \"death\": 272.0, \"total\": 182583, \"dateChecked\": null, \"totalTestResults\": 179106, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.859323100114171, \"sinceDay0\": 10}, {\"index\": 18, \"date\": \"2020-03-22T00:00:00\", \"state\": \"All US\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalized\": 2554.0, \"death\": 398.0, \"total\": 228184, \"dateChecked\": null, \"totalTestResults\": 225342, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"sinceDay0\": 11}, {\"index\": 19, \"date\": \"2020-03-23T00:00:00\", \"state\": \"All US\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalized\": 3325.0, \"death\": 471.0, \"total\": 294044, \"dateChecked\": null, \"totalTestResults\": 279473, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"sinceDay0\": 12}, {\"index\": 20, \"date\": \"2020-03-24T00:00:00\", \"state\": \"All US\", \"positive\": 51954.0, \"negative\": 292758.0, \"pending\": 14433.0, \"hospitalized\": 4468.0, \"death\": 675.0, \"total\": 359145, \"dateChecked\": null, \"totalTestResults\": 344712, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55437.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65239.0, \"ratio\": 8.656619247575962, \"sinceDay0\": 13}, {\"index\": 21, \"date\": \"2020-03-25T00:00:00\", \"state\": \"All US\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalized\": 6136.0, \"death\": 900.0, \"total\": 472767, \"dateChecked\": null, \"totalTestResults\": 421532, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64846.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76820.0, \"ratio\": 7.660441721334681, \"sinceDay0\": 14}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalized\": 10131.0, \"death\": 1163.0, \"total\": 579589, \"dateChecked\": null, \"totalTestResults\": 519338, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 15}], \"data-4868ed539491c342ea822b0d418131e6\": [{\"index\": 281, \"date\": \"2020-03-21T00:00:00\", \"state\": \"AL\", \"positive\": 124.0, \"negative\": 28.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 152, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 152, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.8157894736842105, \"sinceDay0\": 0}, {\"index\": 225, \"date\": \"2020-03-22T00:00:00\", \"state\": \"AL\", \"positive\": 138.0, \"negative\": 1464.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 1602, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 1602, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1436.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 1450.0, \"ratio\": 0.08614232209737828, \"sinceDay0\": 1}, {\"index\": 169, \"date\": \"2020-03-23T00:00:00\", \"state\": \"AL\", \"positive\": 167.0, \"negative\": 1665.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 1832, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1832, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 201.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 230.0, \"ratio\": 0.09115720524017468, \"sinceDay0\": 2}, {\"index\": 113, \"date\": \"2020-03-24T00:00:00\", \"state\": \"AL\", \"positive\": 215.0, \"negative\": 2106.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 2321, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 2321, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 441.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 489.0, \"ratio\": 0.0926324859974149, \"sinceDay0\": 3}, {\"index\": 57, \"date\": \"2020-03-25T00:00:00\", \"state\": \"AL\", \"positive\": 283.0, \"negative\": 2529.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 2812, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 2812, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 423.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 491.0, \"ratio\": 0.10064011379800854, \"sinceDay0\": 4}, {\"index\": 1, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AL\", \"positive\": 506.0, \"negative\": 3593.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 4099, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4099, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1064.0, \"positiveIncrease\": 223.0, \"totalTestResultsIncrease\": 1287.0, \"ratio\": 0.12344474262015126, \"sinceDay0\": 5}, {\"index\": 282, \"date\": \"2020-03-21T00:00:00\", \"state\": \"AR\", \"positive\": 118.0, \"negative\": 567.0, \"pending\": 154.0, \"hospitalized\": null, \"death\": null, \"total\": 839, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 685, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 216.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 238.0, \"ratio\": 0.14064362336114422, \"sinceDay0\": 0}, {\"index\": 226, \"date\": \"2020-03-22T00:00:00\", \"state\": \"AR\", \"positive\": 165.0, \"negative\": 711.0, \"pending\": 119.0, \"hospitalized\": 13.0, \"death\": 0.0, \"total\": 995, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 876, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 144.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 191.0, \"ratio\": 0.1658291457286432, \"sinceDay0\": 1}, {\"index\": 170, \"date\": \"2020-03-23T00:00:00\", \"state\": \"AR\", \"positive\": 174.0, \"negative\": 906.0, \"pending\": 0.0, \"hospitalized\": 13.0, \"death\": 0.0, \"total\": 1080, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1080, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 195.0, \"positiveIncrease\": 9.0, \"totalTestResultsIncrease\": 204.0, \"ratio\": 0.16111111111111112, \"sinceDay0\": 2}, {\"index\": 114, \"date\": \"2020-03-24T00:00:00\", \"state\": \"AR\", \"positive\": 218.0, \"negative\": 947.0, \"pending\": 0.0, \"hospitalized\": 22.0, \"death\": 0.0, \"total\": 1165, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 1165, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 41.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 85.0, \"ratio\": 0.1871244635193133, \"sinceDay0\": 3}, {\"index\": 58, \"date\": \"2020-03-25T00:00:00\", \"state\": \"AR\", \"positive\": 280.0, \"negative\": 1437.0, \"pending\": 0.0, \"hospitalized\": 22.0, \"death\": 2.0, \"total\": 1717, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 1717, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 490.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 552.0, \"ratio\": 0.163075131042516, \"sinceDay0\": 4}, {\"index\": 2, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AR\", \"positive\": 335.0, \"negative\": 1504.0, \"pending\": 0.0, \"hospitalized\": 41.0, \"death\": 3.0, \"total\": 1839, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1839, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 67.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 122.0, \"ratio\": 0.1821642196846112, \"sinceDay0\": 5}, {\"index\": 284, \"date\": \"2020-03-21T00:00:00\", \"state\": \"AZ\", \"positive\": 104.0, \"negative\": 240.0, \"pending\": 122.0, \"hospitalized\": null, \"death\": 1.0, \"total\": 466, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 344, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29.0, \"positiveIncrease\": 39.0, \"totalTestResultsIncrease\": 68.0, \"ratio\": 0.22317596566523606, \"sinceDay0\": 0}, {\"index\": 228, \"date\": \"2020-03-22T00:00:00\", \"state\": \"AZ\", \"positive\": 152.0, \"negative\": 282.0, \"pending\": 87.0, \"hospitalized\": null, \"death\": 2.0, \"total\": 521, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 434, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 42.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 90.0, \"ratio\": 0.29174664107485604, \"sinceDay0\": 1}, {\"index\": 172, \"date\": \"2020-03-23T00:00:00\", \"state\": \"AZ\", \"positive\": 265.0, \"negative\": 309.0, \"pending\": 6.0, \"hospitalized\": null, \"death\": 2.0, \"total\": 580, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 574, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 27.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 140.0, \"ratio\": 0.45689655172413796, \"sinceDay0\": 2}, {\"index\": 116, \"date\": \"2020-03-24T00:00:00\", \"state\": \"AZ\", \"positive\": 357.0, \"negative\": 313.0, \"pending\": 22.0, \"hospitalized\": 8.0, \"death\": 5.0, \"total\": 692, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 670, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 8.0, \"negativeIncrease\": 4.0, \"positiveIncrease\": 92.0, \"totalTestResultsIncrease\": 96.0, \"ratio\": 0.5158959537572254, \"sinceDay0\": 3}, {\"index\": 60, \"date\": \"2020-03-25T00:00:00\", \"state\": \"AZ\", \"positive\": 450.0, \"negative\": 323.0, \"pending\": 53.0, \"hospitalized\": 8.0, \"death\": 6.0, \"total\": 826, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 773, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 10.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.5447941888619855, \"sinceDay0\": 4}, {\"index\": 4, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AZ\", \"positive\": 577.0, \"negative\": 347.0, \"pending\": 33.0, \"hospitalized\": 66.0, \"death\": 8.0, \"total\": 957, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 924, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 24.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 151.0, \"ratio\": 0.6029258098223615, \"sinceDay0\": 5}, {\"index\": 0, \"date\": \"2020-03-04T00:00:00\", \"state\": \"All US\", \"positive\": 118.0, \"negative\": 748.0, \"pending\": 103.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 969, \"dateChecked\": null, \"totalTestResults\": 866, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 5.515809423282292, \"sinceDay0\": 0}, {\"index\": 1, \"date\": \"2020-03-05T00:00:00\", \"state\": \"All US\", \"positive\": 176.0, \"negative\": 953.0, \"pending\": 197.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 1326, \"dateChecked\": null, \"totalTestResults\": 1129, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 99.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 154.0, \"ratio\": 7.691963187672735, \"sinceDay0\": 1}, {\"index\": 2, \"date\": \"2020-03-06T00:00:00\", \"state\": \"All US\", \"positive\": 223.0, \"negative\": 1571.0, \"pending\": 458.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 2252, \"dateChecked\": null, \"totalTestResults\": 1794, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 507.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 8.84189813481705, \"sinceDay0\": 2}, {\"index\": 3, \"date\": \"2020-03-07T00:00:00\", \"state\": \"All US\", \"positive\": 341.0, \"negative\": 1809.0, \"pending\": 602.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 2752, \"dateChecked\": null, \"totalTestResults\": 2150, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 194.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 307.0, \"ratio\": 13.209662158531827, \"sinceDay0\": 3}, {\"index\": 4, \"date\": \"2020-03-08T00:00:00\", \"state\": \"All US\", \"positive\": 417.0, \"negative\": 2335.0, \"pending\": 347.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 3099, \"dateChecked\": null, \"totalTestResults\": 2752, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 602.0, \"ratio\": 12.32417291309689, \"sinceDay0\": 4}, {\"index\": 5, \"date\": \"2020-03-09T00:00:00\", \"state\": \"All US\", \"positive\": 584.0, \"negative\": 3367.0, \"pending\": 313.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 4264, \"dateChecked\": null, \"totalTestResults\": 3951, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1032.0, \"positiveIncrease\": 167.0, \"totalTestResultsIncrease\": 1199.0, \"ratio\": 12.85071660526928, \"sinceDay0\": 5}, {\"index\": 6, \"date\": \"2020-03-10T00:00:00\", \"state\": \"All US\", \"positive\": 778.0, \"negative\": 3807.0, \"pending\": 469.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 5054, \"dateChecked\": null, \"totalTestResults\": 4585, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 440.0, \"positiveIncrease\": 195.0, \"totalTestResultsIncrease\": 634.0, \"ratio\": 12.154127882707202, \"sinceDay0\": 6}, {\"index\": 7, \"date\": \"2020-03-11T00:00:00\", \"state\": \"All US\", \"positive\": 1053.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalized\": 0.0, \"death\": 27.0, \"total\": 7686, \"dateChecked\": null, \"totalTestResults\": 7123, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 275.0, \"totalTestResultsIncrease\": 2538.0, \"ratio\": 10.908795556696404, \"sinceDay0\": 7}, {\"index\": 8, \"date\": \"2020-03-12T00:00:00\", \"state\": \"All US\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalized\": 0.0, \"death\": 36.0, \"total\": 10029, \"dateChecked\": null, \"totalTestResults\": 9356, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 2233.0, \"ratio\": 9.756655510469434, \"sinceDay0\": 8}, {\"index\": 9, \"date\": \"2020-03-13T00:00:00\", \"state\": \"All US\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalized\": 0.0, \"death\": 39.0, \"total\": 16665, \"dateChecked\": null, \"totalTestResults\": 15535, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"sinceDay0\": 9}, {\"index\": 10, \"date\": \"2020-03-14T00:00:00\", \"state\": \"All US\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalized\": 0.0, \"death\": 49.0, \"total\": 20788, \"dateChecked\": null, \"totalTestResults\": 19552, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"sinceDay0\": 10}, {\"index\": 11, \"date\": \"2020-03-15T00:00:00\", \"state\": \"All US\", \"positive\": 3173.0, \"negative\": 22548.0, \"pending\": 2242.0, \"hospitalized\": 0.0, \"death\": 60.0, \"total\": 27963, \"dateChecked\": null, \"totalTestResults\": 25721, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5446.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6169.0, \"ratio\": 9.136862838236842, \"sinceDay0\": 11}, {\"index\": 12, \"date\": \"2020-03-16T00:00:00\", \"state\": \"All US\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalized\": 0.0, \"death\": 71.0, \"total\": 41814, \"dateChecked\": null, \"totalTestResults\": 40123, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13524.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14361.0, \"ratio\": 10.964166847366664, \"sinceDay0\": 12}, {\"index\": 13, \"date\": \"2020-03-17T00:00:00\", \"state\": \"All US\", \"positive\": 5723.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalized\": 0.0, \"death\": 90.0, \"total\": 55014, \"dateChecked\": null, \"totalTestResults\": 53327, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1704.0, \"totalTestResultsIncrease\": 13204.0, \"ratio\": 9.739987531671058, \"sinceDay0\": 13}, {\"index\": 14, \"date\": \"2020-03-18T00:00:00\", \"state\": \"All US\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2538.0, \"hospitalized\": 0.0, \"death\": 112.0, \"total\": 76493, \"dateChecked\": null, \"totalTestResults\": 73955, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2007.0, \"totalTestResultsIncrease\": 20628.0, \"ratio\": 8.606150771718424, \"sinceDay0\": 14}, {\"index\": 15, \"date\": \"2020-03-19T00:00:00\", \"state\": \"All US\", \"positive\": 11719.0, \"negative\": 89119.0, \"pending\": 3025.0, \"hospitalized\": 0.0, \"death\": 160.0, \"total\": 103863, \"dateChecked\": null, \"totalTestResults\": 100838, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22894.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26883.0, \"ratio\": 8.455627941743812, \"sinceDay0\": 15}, {\"index\": 16, \"date\": \"2020-03-20T00:00:00\", \"state\": \"All US\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3336.0, \"hospitalized\": 0.0, \"death\": 219.0, \"total\": 138516, \"dateChecked\": null, \"totalTestResults\": 135180, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29028.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34342.0, \"ratio\": 8.864709945630347, \"sinceDay0\": 16}, {\"index\": 17, \"date\": \"2020-03-21T00:00:00\", \"state\": \"All US\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3477.0, \"hospitalized\": 1964.0, \"death\": 272.0, \"total\": 182583, \"dateChecked\": null, \"totalTestResults\": 179106, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.859323100114171, \"sinceDay0\": 17}, {\"index\": 18, \"date\": \"2020-03-22T00:00:00\", \"state\": \"All US\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalized\": 2554.0, \"death\": 398.0, \"total\": 228184, \"dateChecked\": null, \"totalTestResults\": 225342, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"sinceDay0\": 18}, {\"index\": 19, \"date\": \"2020-03-23T00:00:00\", \"state\": \"All US\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalized\": 3325.0, \"death\": 471.0, \"total\": 294044, \"dateChecked\": null, \"totalTestResults\": 279473, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"sinceDay0\": 19}, {\"index\": 20, \"date\": \"2020-03-24T00:00:00\", \"state\": \"All US\", \"positive\": 51954.0, \"negative\": 292758.0, \"pending\": 14433.0, \"hospitalized\": 4468.0, \"death\": 675.0, \"total\": 359145, \"dateChecked\": null, \"totalTestResults\": 344712, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55437.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65239.0, \"ratio\": 8.656619247575962, \"sinceDay0\": 20}, {\"index\": 21, \"date\": \"2020-03-25T00:00:00\", \"state\": \"All US\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalized\": 6136.0, \"death\": 900.0, \"total\": 472767, \"dateChecked\": null, \"totalTestResults\": 421532, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64846.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76820.0, \"ratio\": 7.660441721334681, \"sinceDay0\": 21}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalized\": 10131.0, \"death\": 1163.0, \"total\": 579589, \"dateChecked\": null, \"totalTestResults\": 519338, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 22}, {\"index\": 926, \"date\": \"2020-03-09T00:00:00\", \"state\": \"CA\", \"positive\": 114.0, \"negative\": 690.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 804, \"dateChecked\": \"2020-03-09T20:00:00Z\", \"totalTestResults\": 804, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 228.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 254.0, \"ratio\": 0.1417910447761194, \"sinceDay0\": 0}, {\"index\": 875, \"date\": \"2020-03-10T00:00:00\", \"state\": \"CA\", \"positive\": 133.0, \"negative\": 690.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 823, \"dateChecked\": \"2020-03-10T20:00:00Z\", \"totalTestResults\": 823, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 19.0, \"totalTestResultsIncrease\": 19.0, \"ratio\": 0.16160388821385177, \"sinceDay0\": 1}, {\"index\": 824, \"date\": \"2020-03-11T00:00:00\", \"state\": \"CA\", \"positive\": 157.0, \"negative\": 916.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1073, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 1073, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 226.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 250.0, \"ratio\": 0.14631873252562907, \"sinceDay0\": 2}, {\"index\": 773, \"date\": \"2020-03-12T00:00:00\", \"state\": \"CA\", \"positive\": 202.0, \"negative\": 916.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 1118, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 1118, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 45.0, \"totalTestResultsIncrease\": 45.0, \"ratio\": 0.1806797853309481, \"sinceDay0\": 3}, {\"index\": 722, \"date\": \"2020-03-13T00:00:00\", \"state\": \"CA\", \"positive\": 202.0, \"negative\": 916.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 1118, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 1118, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.1806797853309481, \"sinceDay0\": 4}, {\"index\": 671, \"date\": \"2020-03-14T00:00:00\", \"state\": \"CA\", \"positive\": 252.0, \"negative\": 916.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 1168, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 1168, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 50.0, \"ratio\": 0.21575342465753425, \"sinceDay0\": 5}, {\"index\": 620, \"date\": \"2020-03-15T00:00:00\", \"state\": \"CA\", \"positive\": 293.0, \"negative\": 916.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 1209, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 1209, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 41.0, \"ratio\": 0.24234904880066171, \"sinceDay0\": 6}, {\"index\": 565, \"date\": \"2020-03-16T00:00:00\", \"state\": \"CA\", \"positive\": 335.0, \"negative\": 7981.0, \"pending\": null, \"hospitalized\": null, \"death\": 6.0, \"total\": 8316, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 8316, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7065.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 7107.0, \"ratio\": 0.04028379028379028, \"sinceDay0\": 7}, {\"index\": 509, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CA\", \"positive\": 483.0, \"negative\": 7981.0, \"pending\": null, \"hospitalized\": null, \"death\": 11.0, \"total\": 8464, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 8464, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 148.0, \"ratio\": 0.057065217391304345, \"sinceDay0\": 8}, {\"index\": 453, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CA\", \"positive\": 611.0, \"negative\": 7981.0, \"pending\": null, \"hospitalized\": null, \"death\": 13.0, \"total\": 8592, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 8592, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.07111266294227188, \"sinceDay0\": 9}, {\"index\": 397, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CA\", \"positive\": 924.0, \"negative\": 8787.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 9711, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 9711, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 313.0, \"totalTestResultsIncrease\": 1119.0, \"ratio\": 0.09514983008958913, \"sinceDay0\": 10}, {\"index\": 341, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CA\", \"positive\": 1063.0, \"negative\": 10424.0, \"pending\": null, \"hospitalized\": null, \"death\": 20.0, \"total\": 11487, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 11487, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1637.0, \"positiveIncrease\": 139.0, \"totalTestResultsIncrease\": 1776.0, \"ratio\": 0.092539392356577, \"sinceDay0\": 11}, {\"index\": 285, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CA\", \"positive\": 1279.0, \"negative\": 11249.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 12528, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 12528, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 825.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 1041.0, \"ratio\": 0.10209131545338442, \"sinceDay0\": 12}, {\"index\": 229, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CA\", \"positive\": 1536.0, \"negative\": 11304.0, \"pending\": null, \"hospitalized\": null, \"death\": 27.0, \"total\": 12840, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 12840, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 55.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 312.0, \"ratio\": 0.11962616822429907, \"sinceDay0\": 13}, {\"index\": 173, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CA\", \"positive\": 1733.0, \"negative\": 12567.0, \"pending\": 12100.0, \"hospitalized\": null, \"death\": 27.0, \"total\": 26400, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 14300, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 197.0, \"totalTestResultsIncrease\": 1460.0, \"ratio\": 0.0656439393939394, \"sinceDay0\": 14}, {\"index\": 117, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CA\", \"positive\": 2102.0, \"negative\": 13452.0, \"pending\": 12100.0, \"hospitalized\": null, \"death\": 40.0, \"total\": 27654, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 15554, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 885.0, \"positiveIncrease\": 369.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.0760107036956679, \"sinceDay0\": 15}, {\"index\": 61, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CA\", \"positive\": 2355.0, \"negative\": 15921.0, \"pending\": 48600.0, \"hospitalized\": null, \"death\": 53.0, \"total\": 66876, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 18276, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2722.0, \"ratio\": 0.03521442670016149, \"sinceDay0\": 16}, {\"index\": 5, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalized\": null, \"death\": 65.0, \"total\": 77786, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20386, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 17}, {\"index\": 672, \"date\": \"2020-03-14T00:00:00\", \"state\": \"CO\", \"positive\": 101.0, \"negative\": 610.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 711, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 711, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 86.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 115.0, \"ratio\": 0.1420534458509142, \"sinceDay0\": 0}, {\"index\": 621, \"date\": \"2020-03-15T00:00:00\", \"state\": \"CO\", \"positive\": 131.0, \"negative\": 627.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 758, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 758, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 17.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 47.0, \"ratio\": 0.17282321899736147, \"sinceDay0\": 1}, {\"index\": 566, \"date\": \"2020-03-16T00:00:00\", \"state\": \"CO\", \"positive\": 131.0, \"negative\": 627.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 758, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 758, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.17282321899736147, \"sinceDay0\": 2}, {\"index\": 510, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CO\", \"positive\": 160.0, \"negative\": 1056.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 1216, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 1216, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 458.0, \"ratio\": 0.13157894736842105, \"sinceDay0\": 3}, {\"index\": 454, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CO\", \"positive\": 183.0, \"negative\": 1617.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 1800, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 1800, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 561.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 584.0, \"ratio\": 0.10166666666666667, \"sinceDay0\": 4}, {\"index\": 398, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CO\", \"positive\": 216.0, \"negative\": 2112.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 2328, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 2328, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 495.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 528.0, \"ratio\": 0.09278350515463918, \"sinceDay0\": 5}, {\"index\": 342, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CO\", \"positive\": 277.0, \"negative\": 2675.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 2952, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2952, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 563.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 624.0, \"ratio\": 0.09383468834688347, \"sinceDay0\": 6}, {\"index\": 286, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CO\", \"positive\": 363.0, \"negative\": 3317.0, \"pending\": null, \"hospitalized\": 44.0, \"death\": 4.0, \"total\": 3680, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 3680, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 44.0, \"negativeIncrease\": 642.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 728.0, \"ratio\": 0.09864130434782609, \"sinceDay0\": 7}, {\"index\": 230, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CO\", \"positive\": 475.0, \"negative\": 4075.0, \"pending\": null, \"hospitalized\": 49.0, \"death\": 5.0, \"total\": 4550, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 4550, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 758.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 870.0, \"ratio\": 0.1043956043956044, \"sinceDay0\": 8}, {\"index\": 174, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CO\", \"positive\": 591.0, \"negative\": 4845.0, \"pending\": null, \"hospitalized\": 58.0, \"death\": 6.0, \"total\": 5436, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5436, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 770.0, \"positiveIncrease\": 116.0, \"totalTestResultsIncrease\": 886.0, \"ratio\": 0.108719646799117, \"sinceDay0\": 9}, {\"index\": 118, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CO\", \"positive\": 720.0, \"negative\": 5504.0, \"pending\": null, \"hospitalized\": 72.0, \"death\": 7.0, \"total\": 6224, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 6224, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 659.0, \"positiveIncrease\": 129.0, \"totalTestResultsIncrease\": 788.0, \"ratio\": 0.11568123393316196, \"sinceDay0\": 10}, {\"index\": 62, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CO\", \"positive\": 912.0, \"negative\": 6789.0, \"pending\": null, \"hospitalized\": 84.0, \"death\": 11.0, \"total\": 7701, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 7701, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1285.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1477.0, \"ratio\": 0.11842617841838722, \"sinceDay0\": 11}, {\"index\": 6, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalized\": 148.0, \"death\": 19.0, \"total\": 8064, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8064, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 12}, {\"index\": 343, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CT\", \"positive\": 194.0, \"negative\": 604.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 798, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 798, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 98.0, \"totalTestResultsIncrease\": 98.0, \"ratio\": 0.24310776942355888, \"sinceDay0\": 0}, {\"index\": 287, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CT\", \"positive\": 194.0, \"negative\": 2106.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 2300, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2300, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1502.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 1502.0, \"ratio\": 0.08434782608695653, \"sinceDay0\": 1}, {\"index\": 231, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CT\", \"positive\": 223.0, \"negative\": 2877.0, \"pending\": null, \"hospitalized\": 43.0, \"death\": 5.0, \"total\": 3100, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3100, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 43.0, \"negativeIncrease\": 771.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.07193548387096774, \"sinceDay0\": 2}, {\"index\": 175, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CT\", \"positive\": 415.0, \"negative\": 4085.0, \"pending\": null, \"hospitalized\": 54.0, \"death\": 10.0, \"total\": 4500, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 4500, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1208.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1400.0, \"ratio\": 0.09222222222222222, \"sinceDay0\": 3}, {\"index\": 119, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CT\", \"positive\": 618.0, \"negative\": 4682.0, \"pending\": null, \"hospitalized\": 71.0, \"death\": 12.0, \"total\": 5300, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5300, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 597.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.11660377358490566, \"sinceDay0\": 4}, {\"index\": 63, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CT\", \"positive\": 875.0, \"negative\": 5023.0, \"pending\": null, \"hospitalized\": 113.0, \"death\": 19.0, \"total\": 5898, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 5898, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 341.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 598.0, \"ratio\": 0.14835537470328924, \"sinceDay0\": 5}, {\"index\": 7, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalized\": 125.0, \"death\": 21.0, \"total\": 6637, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6637, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 6}, {\"index\": 176, \"date\": \"2020-03-23T00:00:00\", \"state\": \"DC\", \"positive\": 116.0, \"negative\": 1113.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 1229, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1229, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 156.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 174.0, \"ratio\": 0.09438567941415785, \"sinceDay0\": 0}, {\"index\": 120, \"date\": \"2020-03-24T00:00:00\", \"state\": \"DC\", \"positive\": 137.0, \"negative\": 1195.0, \"pending\": 2.0, \"hospitalized\": null, \"death\": 2.0, \"total\": 1334, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 1332, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 82.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.10269865067466268, \"sinceDay0\": 1}, {\"index\": 64, \"date\": \"2020-03-25T00:00:00\", \"state\": \"DC\", \"positive\": 183.0, \"negative\": 1423.0, \"pending\": 3.0, \"hospitalized\": null, \"death\": 2.0, \"total\": 1609, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 1606, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 228.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 274.0, \"ratio\": 0.11373523927905531, \"sinceDay0\": 2}, {\"index\": 8, \"date\": \"2020-03-26T00:00:00\", \"state\": \"DC\", \"positive\": 231.0, \"negative\": 1626.0, \"pending\": 1.0, \"hospitalized\": null, \"death\": 3.0, \"total\": 1858, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1857, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 203.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 251.0, \"ratio\": 0.12432723358449946, \"sinceDay0\": 3}, {\"index\": 65, \"date\": \"2020-03-25T00:00:00\", \"state\": \"DE\", \"positive\": 115.0, \"negative\": 36.0, \"pending\": null, \"hospitalized\": 11.0, \"death\": 0.0, \"total\": 151, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 151, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 24.0, \"ratio\": 0.7615894039735099, \"sinceDay0\": 0}, {\"index\": 9, \"date\": \"2020-03-26T00:00:00\", \"state\": \"DE\", \"positive\": 130.0, \"negative\": 36.0, \"pending\": null, \"hospitalized\": 13.0, \"death\": 1.0, \"total\": 166, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 166, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 15.0, \"ratio\": 0.7831325301204819, \"sinceDay0\": 1}, {\"index\": 625, \"date\": \"2020-03-15T00:00:00\", \"state\": \"FL\", \"positive\": 116.0, \"negative\": 678.0, \"pending\": 454.0, \"hospitalized\": null, \"death\": 4.0, \"total\": 1248, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 794, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 200.0, \"positiveIncrease\": 39.0, \"totalTestResultsIncrease\": 239.0, \"ratio\": 0.09294871794871795, \"sinceDay0\": 0}, {\"index\": 570, \"date\": \"2020-03-16T00:00:00\", \"state\": \"FL\", \"positive\": 141.0, \"negative\": 684.0, \"pending\": 514.0, \"hospitalized\": null, \"death\": 4.0, \"total\": 1339, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 825, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.1053024645257655, \"sinceDay0\": 1}, {\"index\": 514, \"date\": \"2020-03-17T00:00:00\", \"state\": \"FL\", \"positive\": 186.0, \"negative\": 940.0, \"pending\": 872.0, \"hospitalized\": null, \"death\": 6.0, \"total\": 1998, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 1126, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 256.0, \"positiveIncrease\": 45.0, \"totalTestResultsIncrease\": 301.0, \"ratio\": 0.09309309309309309, \"sinceDay0\": 2}, {\"index\": 458, \"date\": \"2020-03-18T00:00:00\", \"state\": \"FL\", \"positive\": 314.0, \"negative\": 1225.0, \"pending\": 954.0, \"hospitalized\": null, \"death\": 7.0, \"total\": 2493, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 1539, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 285.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 413.0, \"ratio\": 0.12595266746891295, \"sinceDay0\": 3}, {\"index\": 402, \"date\": \"2020-03-19T00:00:00\", \"state\": \"FL\", \"positive\": 390.0, \"negative\": 1533.0, \"pending\": 1019.0, \"hospitalized\": null, \"death\": 8.0, \"total\": 2942, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 1923, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 308.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 384.0, \"ratio\": 0.13256288239293, \"sinceDay0\": 4}, {\"index\": 346, \"date\": \"2020-03-20T00:00:00\", \"state\": \"FL\", \"positive\": 520.0, \"negative\": 1870.0, \"pending\": 1026.0, \"hospitalized\": null, \"death\": 10.0, \"total\": 3416, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2390, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 337.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.1522248243559719, \"sinceDay0\": 5}, {\"index\": 290, \"date\": \"2020-03-21T00:00:00\", \"state\": \"FL\", \"positive\": 658.0, \"negative\": 6579.0, \"pending\": 1002.0, \"hospitalized\": 158.0, \"death\": 12.0, \"total\": 8239, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 7237, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 4709.0, \"positiveIncrease\": 138.0, \"totalTestResultsIncrease\": 4847.0, \"ratio\": 0.07986406117247238, \"sinceDay0\": 6}, {\"index\": 234, \"date\": \"2020-03-22T00:00:00\", \"state\": \"FL\", \"positive\": 830.0, \"negative\": 7990.0, \"pending\": 963.0, \"hospitalized\": 185.0, \"death\": 13.0, \"total\": 9783, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 8820, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 1411.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1583.0, \"ratio\": 0.08484105080241235, \"sinceDay0\": 7}, {\"index\": 178, \"date\": \"2020-03-23T00:00:00\", \"state\": \"FL\", \"positive\": 1171.0, \"negative\": 11063.0, \"pending\": 860.0, \"hospitalized\": 217.0, \"death\": 14.0, \"total\": 13094, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 12234, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 3073.0, \"positiveIncrease\": 341.0, \"totalTestResultsIncrease\": 3414.0, \"ratio\": 0.08943027340766764, \"sinceDay0\": 8}, {\"index\": 122, \"date\": \"2020-03-24T00:00:00\", \"state\": \"FL\", \"positive\": 1412.0, \"negative\": 13127.0, \"pending\": 1008.0, \"hospitalized\": 259.0, \"death\": 18.0, \"total\": 15547, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 14539, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 2064.0, \"positiveIncrease\": 241.0, \"totalTestResultsIncrease\": 2305.0, \"ratio\": 0.09082138033061041, \"sinceDay0\": 9}, {\"index\": 66, \"date\": \"2020-03-25T00:00:00\", \"state\": \"FL\", \"positive\": 1682.0, \"negative\": 15374.0, \"pending\": 1233.0, \"hospitalized\": 316.0, \"death\": 22.0, \"total\": 18289, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 17056, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 57.0, \"negativeIncrease\": 2247.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2517.0, \"ratio\": 0.09196784952703811, \"sinceDay0\": 10}, {\"index\": 10, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalized\": 406.0, \"death\": 28.0, \"total\": 27539, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 26096, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 11}, {\"index\": 571, \"date\": \"2020-03-16T00:00:00\", \"state\": \"GA\", \"positive\": 121.0, \"negative\": null, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 121, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 121, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 22.0, \"ratio\": 1.0, \"sinceDay0\": 0}, {\"index\": 515, \"date\": \"2020-03-17T00:00:00\", \"state\": \"GA\", \"positive\": 146.0, \"negative\": null, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 146, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 146, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 25.0, \"ratio\": 1.0, \"sinceDay0\": 1}, {\"index\": 459, \"date\": \"2020-03-18T00:00:00\", \"state\": \"GA\", \"positive\": 197.0, \"negative\": 1311.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 1508, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 1508, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1311.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 1362.0, \"ratio\": 0.1306366047745358, \"sinceDay0\": 2}, {\"index\": 403, \"date\": \"2020-03-19T00:00:00\", \"state\": \"GA\", \"positive\": 287.0, \"negative\": 1544.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 1831, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 1831, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 233.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 323.0, \"ratio\": 0.1567449481157837, \"sinceDay0\": 3}, {\"index\": 347, \"date\": \"2020-03-20T00:00:00\", \"state\": \"GA\", \"positive\": 420.0, \"negative\": 1966.0, \"pending\": null, \"hospitalized\": null, \"death\": 13.0, \"total\": 2386, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2386, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 133.0, \"totalTestResultsIncrease\": 555.0, \"ratio\": 0.1760268231349539, \"sinceDay0\": 4}, {\"index\": 291, \"date\": \"2020-03-21T00:00:00\", \"state\": \"GA\", \"positive\": 507.0, \"negative\": 2557.0, \"pending\": null, \"hospitalized\": null, \"death\": 14.0, \"total\": 3064, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 3064, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 591.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 678.0, \"ratio\": 0.16546997389033943, \"sinceDay0\": 5}, {\"index\": 235, \"date\": \"2020-03-22T00:00:00\", \"state\": \"GA\", \"positive\": 600.0, \"negative\": 3420.0, \"pending\": null, \"hospitalized\": null, \"death\": 23.0, \"total\": 4020, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 4020, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 863.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 956.0, \"ratio\": 0.14925373134328357, \"sinceDay0\": 6}, {\"index\": 179, \"date\": \"2020-03-23T00:00:00\", \"state\": \"GA\", \"positive\": 772.0, \"negative\": 4297.0, \"pending\": null, \"hospitalized\": null, \"death\": 25.0, \"total\": 5069, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5069, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 877.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.152298283685145, \"sinceDay0\": 7}, {\"index\": 123, \"date\": \"2020-03-24T00:00:00\", \"state\": \"GA\", \"positive\": 1026.0, \"negative\": 4458.0, \"pending\": null, \"hospitalized\": null, \"death\": 32.0, \"total\": 5484, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5484, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 161.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 415.0, \"ratio\": 0.18708971553610504, \"sinceDay0\": 8}, {\"index\": 67, \"date\": \"2020-03-25T00:00:00\", \"state\": \"GA\", \"positive\": 1247.0, \"negative\": 4932.0, \"pending\": null, \"hospitalized\": 394.0, \"death\": 40.0, \"total\": 6179, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 6179, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 394.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 695.0, \"ratio\": 0.20181259103414792, \"sinceDay0\": 9}, {\"index\": 11, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalized\": 473.0, \"death\": 48.0, \"total\": 8926, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8926, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 10}, {\"index\": 182, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IA\", \"positive\": 105.0, \"negative\": 2043.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 2148, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 2148, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 828.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 843.0, \"ratio\": 0.04888268156424581, \"sinceDay0\": 0}, {\"index\": 126, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IA\", \"positive\": 124.0, \"negative\": 2315.0, \"pending\": null, \"hospitalized\": 27.0, \"death\": null, \"total\": 2439, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 2439, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 272.0, \"positiveIncrease\": 19.0, \"totalTestResultsIncrease\": 291.0, \"ratio\": 0.05084050840508405, \"sinceDay0\": 1}, {\"index\": 70, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IA\", \"positive\": 145.0, \"negative\": 2578.0, \"pending\": null, \"hospitalized\": 36.0, \"death\": 1.0, \"total\": 2723, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 2723, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 263.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 284.0, \"ratio\": 0.05325009181050312, \"sinceDay0\": 2}, {\"index\": 14, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IA\", \"positive\": 179.0, \"negative\": 2578.0, \"pending\": null, \"hospitalized\": 46.0, \"death\": 1.0, \"total\": 2757, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2757, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 34.0, \"ratio\": 0.06492564381574174, \"sinceDay0\": 3}, {\"index\": 15, \"date\": \"2020-03-26T00:00:00\", \"state\": \"ID\", \"positive\": 123.0, \"negative\": 2065.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 2188, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2188, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 178.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 228.0, \"ratio\": 0.05621572212065813, \"sinceDay0\": 0}, {\"index\": 520, \"date\": \"2020-03-17T00:00:00\", \"state\": \"IL\", \"positive\": 160.0, \"negative\": 1340.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 1500, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 1500, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 408.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 475.0, \"ratio\": 0.10666666666666667, \"sinceDay0\": 0}, {\"index\": 464, \"date\": \"2020-03-18T00:00:00\", \"state\": \"IL\", \"positive\": 288.0, \"negative\": 1763.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 2051, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 2051, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 423.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 0.14041930765480254, \"sinceDay0\": 1}, {\"index\": 408, \"date\": \"2020-03-19T00:00:00\", \"state\": \"IL\", \"positive\": 422.0, \"negative\": 2725.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 3147, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 3147, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 962.0, \"positiveIncrease\": 134.0, \"totalTestResultsIncrease\": 1096.0, \"ratio\": 0.13409596441054972, \"sinceDay0\": 2}, {\"index\": 352, \"date\": \"2020-03-20T00:00:00\", \"state\": \"IL\", \"positive\": 585.0, \"negative\": 3696.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 4281, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 4281, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 971.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 1134.0, \"ratio\": 0.13665031534688157, \"sinceDay0\": 3}, {\"index\": 296, \"date\": \"2020-03-21T00:00:00\", \"state\": \"IL\", \"positive\": 753.0, \"negative\": 5488.0, \"pending\": null, \"hospitalized\": null, \"death\": 6.0, \"total\": 6241, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 6241, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1792.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1960.0, \"ratio\": 0.12065374138759814, \"sinceDay0\": 4}, {\"index\": 240, \"date\": \"2020-03-22T00:00:00\", \"state\": \"IL\", \"positive\": 1049.0, \"negative\": 7271.0, \"pending\": null, \"hospitalized\": null, \"death\": 9.0, \"total\": 8320, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 8320, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1783.0, \"positiveIncrease\": 296.0, \"totalTestResultsIncrease\": 2079.0, \"ratio\": 0.12608173076923077, \"sinceDay0\": 5}, {\"index\": 184, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IL\", \"positive\": 1273.0, \"negative\": 8583.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 9856, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 9856, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1312.0, \"positiveIncrease\": 224.0, \"totalTestResultsIncrease\": 1536.0, \"ratio\": 0.1291599025974026, \"sinceDay0\": 6}, {\"index\": 128, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IL\", \"positive\": 1535.0, \"negative\": 9934.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 11469, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 11469, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 1613.0, \"ratio\": 0.13383904438050398, \"sinceDay0\": 7}, {\"index\": 72, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IL\", \"positive\": 1865.0, \"negative\": 12344.0, \"pending\": null, \"hospitalized\": null, \"death\": 19.0, \"total\": 14209, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14209, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2410.0, \"positiveIncrease\": 330.0, \"totalTestResultsIncrease\": 2740.0, \"ratio\": 0.13125483848265185, \"sinceDay0\": 8}, {\"index\": 16, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalized\": null, \"death\": 26.0, \"total\": 16631, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 16631, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 9}, {\"index\": 297, \"date\": \"2020-03-21T00:00:00\", \"state\": \"IN\", \"positive\": 126.0, \"negative\": 707.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 4.0, \"total\": 833, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 833, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 232.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 279.0, \"ratio\": 0.15126050420168066, \"sinceDay0\": 0}, {\"index\": 241, \"date\": \"2020-03-22T00:00:00\", \"state\": \"IN\", \"positive\": 201.0, \"negative\": 1293.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 6.0, \"total\": 1494, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 1494, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 586.0, \"positiveIncrease\": 75.0, \"totalTestResultsIncrease\": 661.0, \"ratio\": 0.13453815261044177, \"sinceDay0\": 1}, {\"index\": 185, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IN\", \"positive\": 259.0, \"negative\": 1701.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 7.0, \"total\": 1960, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1960, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 408.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 466.0, \"ratio\": 0.13214285714285715, \"sinceDay0\": 2}, {\"index\": 129, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IN\", \"positive\": 365.0, \"negative\": 2566.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 12.0, \"total\": 2931, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 2931, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 865.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 971.0, \"ratio\": 0.1245308768338451, \"sinceDay0\": 3}, {\"index\": 73, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IN\", \"positive\": 477.0, \"negative\": 2879.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": 14.0, \"total\": 3356, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 3356, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 313.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 425.0, \"ratio\": 0.14213349225268176, \"sinceDay0\": 4}, {\"index\": 17, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalized\": null, \"death\": 17.0, \"total\": 4651, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4651, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 5}, {\"index\": 74, \"date\": \"2020-03-25T00:00:00\", \"state\": \"KS\", \"positive\": 126.0, \"negative\": 2360.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 2486, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 2486, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 274.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 302.0, \"ratio\": 0.050683829444891394, \"sinceDay0\": 0}, {\"index\": 18, \"date\": \"2020-03-26T00:00:00\", \"state\": \"KS\", \"positive\": 168.0, \"negative\": 2869.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 3037, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3037, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 509.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 0.05531774777741192, \"sinceDay0\": 1}, {\"index\": 187, \"date\": \"2020-03-23T00:00:00\", \"state\": \"KY\", \"positive\": 104.0, \"negative\": 1762.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 1866, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1866, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 290.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 295.0, \"ratio\": 0.055734190782422297, \"sinceDay0\": 0}, {\"index\": 131, \"date\": \"2020-03-24T00:00:00\", \"state\": \"KY\", \"positive\": 124.0, \"negative\": 1742.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 1866, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 1866, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": -20.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.06645230439442658, \"sinceDay0\": 1}, {\"index\": 75, \"date\": \"2020-03-25T00:00:00\", \"state\": \"KY\", \"positive\": 157.0, \"negative\": 2865.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 3022, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 3022, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1123.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 1156.0, \"ratio\": 0.051952349437458634, \"sinceDay0\": 2}, {\"index\": 19, \"date\": \"2020-03-26T00:00:00\", \"state\": \"KY\", \"positive\": 198.0, \"negative\": 3102.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 3300, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3300, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 237.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 278.0, \"ratio\": 0.06, \"sinceDay0\": 3}, {\"index\": 580, \"date\": \"2020-03-16T00:00:00\", \"state\": \"LA\", \"positive\": 114.0, \"negative\": 188.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 302, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 302, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 55.0, \"ratio\": 0.37748344370860926, \"sinceDay0\": 0}, {\"index\": 524, \"date\": \"2020-03-17T00:00:00\", \"state\": \"LA\", \"positive\": 171.0, \"negative\": 286.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 457, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 457, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 98.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 155.0, \"ratio\": 0.3741794310722101, \"sinceDay0\": 1}, {\"index\": 468, \"date\": \"2020-03-18T00:00:00\", \"state\": \"LA\", \"positive\": 240.0, \"negative\": 335.0, \"pending\": null, \"hospitalized\": null, \"death\": 6.0, \"total\": 575, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 575, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 49.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 118.0, \"ratio\": 0.41739130434782606, \"sinceDay0\": 2}, {\"index\": 412, \"date\": \"2020-03-19T00:00:00\", \"state\": \"LA\", \"positive\": 347.0, \"negative\": 458.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 805, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 805, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 123.0, \"positiveIncrease\": 107.0, \"totalTestResultsIncrease\": 230.0, \"ratio\": 0.43105590062111804, \"sinceDay0\": 3}, {\"index\": 356, \"date\": \"2020-03-20T00:00:00\", \"state\": \"LA\", \"positive\": 479.0, \"negative\": 568.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 1047, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 1047, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 110.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 242.0, \"ratio\": 0.4574976122254059, \"sinceDay0\": 4}, {\"index\": 300, \"date\": \"2020-03-21T00:00:00\", \"state\": \"LA\", \"positive\": 585.0, \"negative\": 2180.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 2765, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2765, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1612.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1718.0, \"ratio\": 0.2115732368896926, \"sinceDay0\": 5}, {\"index\": 244, \"date\": \"2020-03-22T00:00:00\", \"state\": \"LA\", \"positive\": 837.0, \"negative\": 2661.0, \"pending\": null, \"hospitalized\": null, \"death\": 20.0, \"total\": 3498, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3498, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 481.0, \"positiveIncrease\": 252.0, \"totalTestResultsIncrease\": 733.0, \"ratio\": 0.23927958833619212, \"sinceDay0\": 6}, {\"index\": 188, \"date\": \"2020-03-23T00:00:00\", \"state\": \"LA\", \"positive\": 1172.0, \"negative\": 4776.0, \"pending\": null, \"hospitalized\": null, \"death\": 34.0, \"total\": 5948, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5948, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2115.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2450.0, \"ratio\": 0.19704102219233355, \"sinceDay0\": 7}, {\"index\": 132, \"date\": \"2020-03-24T00:00:00\", \"state\": \"LA\", \"positive\": 1388.0, \"negative\": 7215.0, \"pending\": null, \"hospitalized\": 271.0, \"death\": 46.0, \"total\": 8603, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 8603, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 271.0, \"negativeIncrease\": 2439.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 2655.0, \"ratio\": 0.161339067767058, \"sinceDay0\": 8}, {\"index\": 76, \"date\": \"2020-03-25T00:00:00\", \"state\": \"LA\", \"positive\": 1795.0, \"negative\": 9656.0, \"pending\": null, \"hospitalized\": 491.0, \"death\": 65.0, \"total\": 11451, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 11451, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 220.0, \"negativeIncrease\": 2441.0, \"positiveIncrease\": 407.0, \"totalTestResultsIncrease\": 2848.0, \"ratio\": 0.15675486857043053, \"sinceDay0\": 9}, {\"index\": 20, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalized\": 676.0, \"death\": 83.0, \"total\": 18029, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18029, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 10}, {\"index\": 737, \"date\": \"2020-03-13T00:00:00\", \"state\": \"MA\", \"positive\": 123.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 215, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 215, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 92.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 120.0, \"ratio\": 0.5720930232558139, \"sinceDay0\": 0}, {\"index\": 686, \"date\": \"2020-03-14T00:00:00\", \"state\": \"MA\", \"positive\": 138.0, \"negative\": 352.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 490, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 490, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 260.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 275.0, \"ratio\": 0.2816326530612245, \"sinceDay0\": 1}, {\"index\": 635, \"date\": \"2020-03-15T00:00:00\", \"state\": \"MA\", \"positive\": 138.0, \"negative\": 352.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 490, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 490, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.2816326530612245, \"sinceDay0\": 2}, {\"index\": 581, \"date\": \"2020-03-16T00:00:00\", \"state\": \"MA\", \"positive\": 164.0, \"negative\": 352.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 516, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 516, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.3178294573643411, \"sinceDay0\": 3}, {\"index\": 525, \"date\": \"2020-03-17T00:00:00\", \"state\": \"MA\", \"positive\": 218.0, \"negative\": 1541.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1759, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 1759, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1189.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 1243.0, \"ratio\": 0.12393405343945424, \"sinceDay0\": 4}, {\"index\": 469, \"date\": \"2020-03-18T00:00:00\", \"state\": \"MA\", \"positive\": 256.0, \"negative\": 2015.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 2271, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 2271, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 512.0, \"ratio\": 0.11272567151034786, \"sinceDay0\": 5}, {\"index\": 413, \"date\": \"2020-03-19T00:00:00\", \"state\": \"MA\", \"positive\": 328.0, \"negative\": 2804.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3132, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 3132, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 789.0, \"positiveIncrease\": 72.0, \"totalTestResultsIncrease\": 861.0, \"ratio\": 0.10472541507024266, \"sinceDay0\": 6}, {\"index\": 357, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MA\", \"positive\": 413.0, \"negative\": 3678.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 4091, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 4091, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 874.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 959.0, \"ratio\": 0.10095331214861893, \"sinceDay0\": 7}, {\"index\": 301, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MA\", \"positive\": 525.0, \"negative\": 4752.0, \"pending\": null, \"hospitalized\": 61.0, \"death\": 1.0, \"total\": 5277, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 5277, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 61.0, \"negativeIncrease\": 1074.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 1186.0, \"ratio\": 0.09948834565093803, \"sinceDay0\": 8}, {\"index\": 245, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MA\", \"positive\": 646.0, \"negative\": 5459.0, \"pending\": null, \"hospitalized\": 71.0, \"death\": 5.0, \"total\": 6105, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 6105, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 707.0, \"positiveIncrease\": 121.0, \"totalTestResultsIncrease\": 828.0, \"ratio\": 0.10581490581490581, \"sinceDay0\": 9}, {\"index\": 189, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MA\", \"positive\": 777.0, \"negative\": 8145.0, \"pending\": null, \"hospitalized\": 79.0, \"death\": 9.0, \"total\": 8922, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 8922, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 8.0, \"negativeIncrease\": 2686.0, \"positiveIncrease\": 131.0, \"totalTestResultsIncrease\": 2817.0, \"ratio\": 0.08708809683927371, \"sinceDay0\": 10}, {\"index\": 133, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MA\", \"positive\": 1159.0, \"negative\": 12590.0, \"pending\": null, \"hospitalized\": 94.0, \"death\": 11.0, \"total\": 13749, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 13749, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 382.0, \"totalTestResultsIncrease\": 4827.0, \"ratio\": 0.08429703978471162, \"sinceDay0\": 11}, {\"index\": 77, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MA\", \"positive\": 1838.0, \"negative\": 17956.0, \"pending\": null, \"hospitalized\": 103.0, \"death\": 15.0, \"total\": 19794, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 19794, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 5366.0, \"positiveIncrease\": 679.0, \"totalTestResultsIncrease\": 6045.0, \"ratio\": 0.0928564211377185, \"sinceDay0\": 12}, {\"index\": 21, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalized\": 219.0, \"death\": 25.0, \"total\": 23621, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 23621, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 13}, {\"index\": 414, \"date\": \"2020-03-19T00:00:00\", \"state\": \"MD\", \"positive\": 107.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 201, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 201, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 22.0, \"ratio\": 0.5323383084577115, \"sinceDay0\": 0}, {\"index\": 358, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MD\", \"positive\": 149.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 243, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 243, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 42.0, \"ratio\": 0.6131687242798354, \"sinceDay0\": 1}, {\"index\": 302, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MD\", \"positive\": 190.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 284, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 284, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 41.0, \"ratio\": 0.6690140845070423, \"sinceDay0\": 2}, {\"index\": 246, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MD\", \"positive\": 244.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 338, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 338, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.7218934911242604, \"sinceDay0\": 3}, {\"index\": 190, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MD\", \"positive\": 288.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 382, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 382, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 44.0, \"ratio\": 0.7539267015706806, \"sinceDay0\": 4}, {\"index\": 134, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MD\", \"positive\": 349.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 443, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 443, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 61.0, \"ratio\": 0.7878103837471784, \"sinceDay0\": 5}, {\"index\": 78, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MD\", \"positive\": 423.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 517, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 517, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 74.0, \"ratio\": 0.8181818181818182, \"sinceDay0\": 6}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MD\", \"positive\": 580.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": 132.0, \"death\": 4.0, \"total\": 674, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 674, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 132.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 157.0, \"totalTestResultsIncrease\": 157.0, \"ratio\": 0.8605341246290801, \"sinceDay0\": 7}, {\"index\": 191, \"date\": \"2020-03-23T00:00:00\", \"state\": \"ME\", \"positive\": 107.0, \"negative\": 2791.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 2898, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 2898, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 527.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.03692201518288475, \"sinceDay0\": 0}, {\"index\": 135, \"date\": \"2020-03-24T00:00:00\", \"state\": \"ME\", \"positive\": 125.0, \"negative\": 3014.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3139, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 3139, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 223.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 241.0, \"ratio\": 0.039821599235425297, \"sinceDay0\": 1}, {\"index\": 79, \"date\": \"2020-03-25T00:00:00\", \"state\": \"ME\", \"positive\": 149.0, \"negative\": 3177.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3326, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 3326, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 163.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 187.0, \"ratio\": 0.04479855682501503, \"sinceDay0\": 2}, {\"index\": 23, \"date\": \"2020-03-26T00:00:00\", \"state\": \"ME\", \"positive\": 155.0, \"negative\": 3394.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3549, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3549, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 217.0, \"positiveIncrease\": 6.0, \"totalTestResultsIncrease\": 223.0, \"ratio\": 0.04367427444350521, \"sinceDay0\": 3}, {\"index\": 416, \"date\": \"2020-03-19T00:00:00\", \"state\": \"MI\", \"positive\": 336.0, \"negative\": 2113.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 2449, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 2449, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1841.0, \"positiveIncrease\": 256.0, \"totalTestResultsIncrease\": 2097.0, \"ratio\": 0.13719885667619436, \"sinceDay0\": 0}, {\"index\": 360, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MI\", \"positive\": 549.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 2618, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2618, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": -44.0, \"positiveIncrease\": 213.0, \"totalTestResultsIncrease\": 169.0, \"ratio\": 0.20970206264323912, \"sinceDay0\": 1}, {\"index\": 304, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MI\", \"positive\": 787.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 2856, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2856, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 238.0, \"totalTestResultsIncrease\": 238.0, \"ratio\": 0.2755602240896359, \"sinceDay0\": 2}, {\"index\": 248, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MI\", \"positive\": 1035.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 3104, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3104, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.3334407216494845, \"sinceDay0\": 3}, {\"index\": 192, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MI\", \"positive\": 1328.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 15.0, \"total\": 3397, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3397, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 293.0, \"totalTestResultsIncrease\": 293.0, \"ratio\": 0.3909331763320577, \"sinceDay0\": 4}, {\"index\": 136, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MI\", \"positive\": 1791.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 3860, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 3860, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 463.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.4639896373056995, \"sinceDay0\": 5}, {\"index\": 80, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MI\", \"positive\": 2294.0, \"negative\": 2069.0, \"pending\": null, \"hospitalized\": null, \"death\": 43.0, \"total\": 4363, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 4363, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 503.0, \"totalTestResultsIncrease\": 503.0, \"ratio\": 0.5257850103140042, \"sinceDay0\": 6}, {\"index\": 24, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalized\": null, \"death\": 60.0, \"total\": 9406, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 9406, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 7}, {\"index\": 361, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MN\", \"positive\": 115.0, \"negative\": 3741.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3856, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 3856, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 792.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 818.0, \"ratio\": 0.02982365145228216, \"sinceDay0\": 0}, {\"index\": 305, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MN\", \"positive\": 138.0, \"negative\": 3952.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 4090, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 4090, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 211.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 234.0, \"ratio\": 0.03374083129584352, \"sinceDay0\": 1}, {\"index\": 249, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MN\", \"positive\": 169.0, \"negative\": 4511.0, \"pending\": null, \"hospitalized\": 12.0, \"death\": 1.0, \"total\": 4680, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 4680, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 559.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 590.0, \"ratio\": 0.03611111111111111, \"sinceDay0\": 2}, {\"index\": 193, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MN\", \"positive\": 235.0, \"negative\": 4511.0, \"pending\": null, \"hospitalized\": 17.0, \"death\": 1.0, \"total\": 4746, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 4746, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 66.0, \"totalTestResultsIncrease\": 66.0, \"ratio\": 0.049515381373788456, \"sinceDay0\": 3}, {\"index\": 137, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MN\", \"positive\": 262.0, \"negative\": 5550.0, \"pending\": null, \"hospitalized\": 21.0, \"death\": 1.0, \"total\": 5812, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5812, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 1039.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 1066.0, \"ratio\": 0.045079146593255334, \"sinceDay0\": 4}, {\"index\": 81, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MN\", \"positive\": 287.0, \"negative\": 11188.0, \"pending\": null, \"hospitalized\": 35.0, \"death\": 1.0, \"total\": 11475, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 11475, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 5638.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 5663.0, \"ratio\": 0.025010893246187365, \"sinceDay0\": 5}, {\"index\": 25, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MN\", \"positive\": 346.0, \"negative\": 12604.0, \"pending\": null, \"hospitalized\": 41.0, \"death\": 2.0, \"total\": 12950, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12950, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 1416.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 1475.0, \"ratio\": 0.026718146718146717, \"sinceDay0\": 6}, {\"index\": 194, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MO\", \"positive\": 183.0, \"negative\": 369.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 552, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 552, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 93.0, \"ratio\": 0.33152173913043476, \"sinceDay0\": 0}, {\"index\": 138, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MO\", \"positive\": 183.0, \"negative\": 369.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 552, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 552, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.33152173913043476, \"sinceDay0\": 1}, {\"index\": 82, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MO\", \"positive\": 356.0, \"negative\": 369.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 725, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 725, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 173.0, \"totalTestResultsIncrease\": 173.0, \"ratio\": 0.4910344827586207, \"sinceDay0\": 2}, {\"index\": 26, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MO\", \"positive\": 502.0, \"negative\": 369.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 871, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 871, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 146.0, \"totalTestResultsIncrease\": 146.0, \"ratio\": 0.5763490241102182, \"sinceDay0\": 3}, {\"index\": 308, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MS\", \"positive\": 140.0, \"negative\": 695.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 835, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 835, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 60.0, \"ratio\": 0.16766467065868262, \"sinceDay0\": 0}, {\"index\": 252, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MS\", \"positive\": 207.0, \"negative\": 1114.0, \"pending\": null, \"hospitalized\": 33.0, \"death\": 1.0, \"total\": 1321, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 1321, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 419.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.1566994700984103, \"sinceDay0\": 1}, {\"index\": 196, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MS\", \"positive\": 249.0, \"negative\": 1143.0, \"pending\": null, \"hospitalized\": 33.0, \"death\": 1.0, \"total\": 1392, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1392, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 71.0, \"ratio\": 0.1788793103448276, \"sinceDay0\": 2}, {\"index\": 140, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MS\", \"positive\": 320.0, \"negative\": 1552.0, \"pending\": null, \"hospitalized\": 86.0, \"death\": 1.0, \"total\": 1872, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 1872, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 409.0, \"positiveIncrease\": 71.0, \"totalTestResultsIncrease\": 480.0, \"ratio\": 0.17094017094017094, \"sinceDay0\": 3}, {\"index\": 84, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MS\", \"positive\": 377.0, \"negative\": 1566.0, \"pending\": null, \"hospitalized\": 117.0, \"death\": 2.0, \"total\": 1943, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 1943, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 31.0, \"negativeIncrease\": 14.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 71.0, \"ratio\": 0.19402985074626866, \"sinceDay0\": 4}, {\"index\": 28, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MS\", \"positive\": 485.0, \"negative\": 2291.0, \"pending\": null, \"hospitalized\": 150.0, \"death\": 6.0, \"total\": 2776, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2776, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 725.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 833.0, \"ratio\": 0.17471181556195967, \"sinceDay0\": 5}, {\"index\": 366, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NC\", \"positive\": 137.0, \"negative\": 3096.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 3233, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 3233, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 688.0, \"positiveIncrease\": 40.0, \"totalTestResultsIncrease\": 728.0, \"ratio\": 0.04237550262913702, \"sinceDay0\": 0}, {\"index\": 310, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NC\", \"positive\": 184.0, \"negative\": 5092.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 5276, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 5276, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1996.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 2043.0, \"ratio\": 0.034874905231235785, \"sinceDay0\": 1}, {\"index\": 254, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NC\", \"positive\": 255.0, \"negative\": 6183.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 6438, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 6438, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1091.0, \"positiveIncrease\": 71.0, \"totalTestResultsIncrease\": 1162.0, \"ratio\": 0.03960857409133271, \"sinceDay0\": 2}, {\"index\": 198, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NC\", \"positive\": 297.0, \"negative\": 8141.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 8438, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 8438, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1958.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 2000.0, \"ratio\": 0.03519791419767718, \"sinceDay0\": 3}, {\"index\": 142, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NC\", \"positive\": 398.0, \"negative\": 8141.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 8539, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 8539, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 101.0, \"totalTestResultsIncrease\": 101.0, \"ratio\": 0.046609673263848225, \"sinceDay0\": 4}, {\"index\": 86, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NC\", \"positive\": 504.0, \"negative\": 9985.0, \"pending\": null, \"hospitalized\": 29.0, \"death\": 1.0, \"total\": 10489, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 10489, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 1844.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1950.0, \"ratio\": 0.04805033844980456, \"sinceDay0\": 5}, {\"index\": 30, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NC\", \"positive\": 636.0, \"negative\": 12274.0, \"pending\": null, \"hospitalized\": 29.0, \"death\": 2.0, \"total\": 12910, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12910, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2289.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 2421.0, \"ratio\": 0.04926413632842758, \"sinceDay0\": 6}, {\"index\": 145, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NH\", \"positive\": 101.0, \"negative\": 1447.0, \"pending\": 869.0, \"hospitalized\": 11.0, \"death\": 1.0, \"total\": 2417, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 1548, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 73.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 96.0, \"ratio\": 0.041787339677285894, \"sinceDay0\": 0}, {\"index\": 89, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NH\", \"positive\": 108.0, \"negative\": 2356.0, \"pending\": 804.0, \"hospitalized\": 13.0, \"death\": 1.0, \"total\": 3268, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 2464, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 909.0, \"positiveIncrease\": 7.0, \"totalTestResultsIncrease\": 916.0, \"ratio\": 0.033047735618115054, \"sinceDay0\": 1}, {\"index\": 33, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NH\", \"positive\": 137.0, \"negative\": 3001.0, \"pending\": 712.0, \"hospitalized\": 19.0, \"death\": 1.0, \"total\": 3850, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3138, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 645.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 674.0, \"ratio\": 0.03558441558441559, \"sinceDay0\": 2}, {\"index\": 594, \"date\": \"2020-03-16T00:00:00\", \"state\": \"NJ\", \"positive\": 178.0, \"negative\": 120.0, \"pending\": 20.0, \"hospitalized\": null, \"death\": 2.0, \"total\": 318, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 298, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 80.0, \"totalTestResultsIncrease\": 80.0, \"ratio\": 0.559748427672956, \"sinceDay0\": 0}, {\"index\": 538, \"date\": \"2020-03-17T00:00:00\", \"state\": \"NJ\", \"positive\": 267.0, \"negative\": 163.0, \"pending\": 55.0, \"hospitalized\": null, \"death\": 3.0, \"total\": 485, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 430, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 43.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 132.0, \"ratio\": 0.5505154639175258, \"sinceDay0\": 1}, {\"index\": 482, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NJ\", \"positive\": 427.0, \"negative\": 190.0, \"pending\": 21.0, \"hospitalized\": null, \"death\": 5.0, \"total\": 638, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 617, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 27.0, \"positiveIncrease\": 160.0, \"totalTestResultsIncrease\": 187.0, \"ratio\": 0.6692789968652038, \"sinceDay0\": 2}, {\"index\": 426, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NJ\", \"positive\": 742.0, \"negative\": 210.0, \"pending\": 74.0, \"hospitalized\": null, \"death\": 9.0, \"total\": 1026, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 952, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 20.0, \"positiveIncrease\": 315.0, \"totalTestResultsIncrease\": 335.0, \"ratio\": 0.723196881091618, \"sinceDay0\": 3}, {\"index\": 370, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NJ\", \"positive\": 890.0, \"negative\": 264.0, \"pending\": 86.0, \"hospitalized\": null, \"death\": 11.0, \"total\": 1240, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 1154, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 54.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 202.0, \"ratio\": 0.717741935483871, \"sinceDay0\": 4}, {\"index\": 314, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NJ\", \"positive\": 1327.0, \"negative\": 294.0, \"pending\": 40.0, \"hospitalized\": null, \"death\": 16.0, \"total\": 1661, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 1621, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 30.0, \"positiveIncrease\": 437.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.7989163154726069, \"sinceDay0\": 5}, {\"index\": 258, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NJ\", \"positive\": 1914.0, \"negative\": 327.0, \"pending\": 49.0, \"hospitalized\": null, \"death\": 20.0, \"total\": 2290, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 2241, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 33.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 620.0, \"ratio\": 0.8358078602620087, \"sinceDay0\": 6}, {\"index\": 202, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NJ\", \"positive\": 2844.0, \"negative\": 359.0, \"pending\": 94.0, \"hospitalized\": null, \"death\": 27.0, \"total\": 3297, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3203, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 930.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.8626023657870792, \"sinceDay0\": 7}, {\"index\": 146, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NJ\", \"positive\": 3675.0, \"negative\": 8325.0, \"pending\": 45.0, \"hospitalized\": null, \"death\": 44.0, \"total\": 12045, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 12000, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7966.0, \"positiveIncrease\": 831.0, \"totalTestResultsIncrease\": 8797.0, \"ratio\": 0.30510585305105853, \"sinceDay0\": 8}, {\"index\": 90, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NJ\", \"positive\": 4402.0, \"negative\": 10452.0, \"pending\": null, \"hospitalized\": null, \"death\": 62.0, \"total\": 14854, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14854, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2127.0, \"positiveIncrease\": 727.0, \"totalTestResultsIncrease\": 2854.0, \"ratio\": 0.2963511512050626, \"sinceDay0\": 9}, {\"index\": 34, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalized\": null, \"death\": 81.0, \"total\": 20537, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20537, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 10}, {\"index\": 91, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NM\", \"positive\": 100.0, \"negative\": 6742.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 6842, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 6842, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 852.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 869.0, \"ratio\": 0.014615609470914937, \"sinceDay0\": 0}, {\"index\": 35, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NM\", \"positive\": 112.0, \"negative\": 7681.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 7793, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7793, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 939.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 951.0, \"ratio\": 0.014371872192993712, \"sinceDay0\": 1}, {\"index\": 372, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NV\", \"positive\": 109.0, \"negative\": 1992.0, \"pending\": -3.0, \"hospitalized\": null, \"death\": 1.0, \"total\": 2098, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2101, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 366.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 380.0, \"ratio\": 0.051954242135367014, \"sinceDay0\": 0}, {\"index\": 316, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NV\", \"positive\": 124.0, \"negative\": 2384.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 2508, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2508, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 392.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 407.0, \"ratio\": 0.049441786283891544, \"sinceDay0\": 1}, {\"index\": 260, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NV\", \"positive\": 190.0, \"negative\": 2448.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 2638, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 2638, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 64.0, \"positiveIncrease\": 66.0, \"totalTestResultsIncrease\": 130.0, \"ratio\": 0.07202426080363912, \"sinceDay0\": 2}, {\"index\": 204, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NV\", \"positive\": 245.0, \"negative\": 3490.0, \"pending\": 0.0, \"hospitalized\": null, \"death\": 4.0, \"total\": 3735, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3735, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1042.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 1097.0, \"ratio\": 0.06559571619812583, \"sinceDay0\": 3}, {\"index\": 148, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NV\", \"positive\": 278.0, \"negative\": 3954.0, \"pending\": 0.0, \"hospitalized\": null, \"death\": 4.0, \"total\": 4232, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 4232, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 464.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 497.0, \"ratio\": 0.06568998109640832, \"sinceDay0\": 4}, {\"index\": 92, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NV\", \"positive\": 321.0, \"negative\": 4251.0, \"pending\": 0.0, \"hospitalized\": null, \"death\": 6.0, \"total\": 4572, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 4572, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 297.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 340.0, \"ratio\": 0.07020997375328084, \"sinceDay0\": 5}, {\"index\": 36, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 5117, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 5117, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 6}, {\"index\": 1007, \"date\": \"2020-03-08T00:00:00\", \"state\": \"NY\", \"positive\": 105.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 197, \"dateChecked\": \"2020-03-08T20:00:00Z\", \"totalTestResults\": 197, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 29.0, \"ratio\": 0.5329949238578681, \"sinceDay0\": 0}, {\"index\": 956, \"date\": \"2020-03-09T00:00:00\", \"state\": \"NY\", \"positive\": 142.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 234, \"dateChecked\": \"2020-03-09T20:00:00Z\", \"totalTestResults\": 234, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 37.0, \"ratio\": 0.6068376068376068, \"sinceDay0\": 1}, {\"index\": 905, \"date\": \"2020-03-10T00:00:00\", \"state\": \"NY\", \"positive\": 173.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 265, \"dateChecked\": \"2020-03-10T20:00:00Z\", \"totalTestResults\": 265, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.6528301886792452, \"sinceDay0\": 2}, {\"index\": 854, \"date\": \"2020-03-11T00:00:00\", \"state\": \"NY\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 308, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 308, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.7012987012987013, \"sinceDay0\": 3}, {\"index\": 803, \"date\": \"2020-03-12T00:00:00\", \"state\": \"NY\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 308, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 308, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.7012987012987013, \"sinceDay0\": 4}, {\"index\": 752, \"date\": \"2020-03-13T00:00:00\", \"state\": \"NY\", \"positive\": 421.0, \"negative\": 2779.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3200, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 3200, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2687.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 2892.0, \"ratio\": 0.1315625, \"sinceDay0\": 5}, {\"index\": 701, \"date\": \"2020-03-14T00:00:00\", \"state\": \"NY\", \"positive\": 524.0, \"negative\": 2779.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3303, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 3303, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 103.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.15864365728125945, \"sinceDay0\": 6}, {\"index\": 650, \"date\": \"2020-03-15T00:00:00\", \"state\": \"NY\", \"positive\": 729.0, \"negative\": 4543.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 5272, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 5272, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1764.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 1969.0, \"ratio\": 0.13827769347496208, \"sinceDay0\": 7}, {\"index\": 597, \"date\": \"2020-03-16T00:00:00\", \"state\": \"NY\", \"positive\": 950.0, \"negative\": 4543.0, \"pending\": null, \"hospitalized\": null, \"death\": 7.0, \"total\": 5493, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 5493, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 221.0, \"ratio\": 0.17294738758419806, \"sinceDay0\": 8}, {\"index\": 541, \"date\": \"2020-03-17T00:00:00\", \"state\": \"NY\", \"positive\": 1700.0, \"negative\": 5506.0, \"pending\": null, \"hospitalized\": null, \"death\": 7.0, \"total\": 7206, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 7206, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 963.0, \"positiveIncrease\": 750.0, \"totalTestResultsIncrease\": 1713.0, \"ratio\": 0.23591451568137664, \"sinceDay0\": 9}, {\"index\": 485, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NY\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 14597, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14597, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"sinceDay0\": 10}, {\"index\": 429, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NY\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 22284, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 22284, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"sinceDay0\": 11}, {\"index\": 373, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NY\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalized\": null, \"death\": 35.0, \"total\": 32427, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 32427, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"sinceDay0\": 12}, {\"index\": 317, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NY\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalized\": 1603.0, \"death\": 44.0, \"total\": 45437, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 45437, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"sinceDay0\": 13}, {\"index\": 261, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NY\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalized\": 1974.0, \"death\": 114.0, \"total\": 61401, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 61401, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"sinceDay0\": 14}, {\"index\": 205, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NY\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalized\": 2635.0, \"death\": 114.0, \"total\": 78289, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 78289, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"sinceDay0\": 15}, {\"index\": 149, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NY\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalized\": 3234.0, \"death\": 210.0, \"total\": 91270, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 91270, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"sinceDay0\": 16}, {\"index\": 93, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NY\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalized\": 3805.0, \"death\": 285.0, \"total\": 103479, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 103479, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"sinceDay0\": 17}, {\"index\": 37, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalized\": 6844.0, \"death\": 385.0, \"total\": 122104, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 122104, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 18}, {\"index\": 430, \"date\": \"2020-03-19T00:00:00\", \"state\": \"OH\", \"positive\": 119.0, \"negative\": 140.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 259, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 259, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.4594594594594595, \"sinceDay0\": 0}, {\"index\": 374, \"date\": \"2020-03-20T00:00:00\", \"state\": \"OH\", \"positive\": 169.0, \"negative\": 140.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 309, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 309, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 50.0, \"ratio\": 0.5469255663430421, \"sinceDay0\": 1}, {\"index\": 318, \"date\": \"2020-03-21T00:00:00\", \"state\": \"OH\", \"positive\": 247.0, \"negative\": 140.0, \"pending\": null, \"hospitalized\": 58.0, \"death\": 3.0, \"total\": 387, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 387, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 78.0, \"totalTestResultsIncrease\": 78.0, \"ratio\": 0.6382428940568475, \"sinceDay0\": 2}, {\"index\": 262, \"date\": \"2020-03-22T00:00:00\", \"state\": \"OH\", \"positive\": 351.0, \"negative\": 140.0, \"pending\": null, \"hospitalized\": 83.0, \"death\": 3.0, \"total\": 491, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 491, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 104.0, \"ratio\": 0.714867617107943, \"sinceDay0\": 3}, {\"index\": 206, \"date\": \"2020-03-23T00:00:00\", \"state\": \"OH\", \"positive\": 442.0, \"negative\": 140.0, \"pending\": null, \"hospitalized\": 104.0, \"death\": 6.0, \"total\": 582, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 582, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 91.0, \"ratio\": 0.7594501718213058, \"sinceDay0\": 4}, {\"index\": 150, \"date\": \"2020-03-24T00:00:00\", \"state\": \"OH\", \"positive\": 564.0, \"negative\": 140.0, \"pending\": null, \"hospitalized\": 145.0, \"death\": 8.0, \"total\": 704, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 704, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 122.0, \"ratio\": 0.8011363636363636, \"sinceDay0\": 5}, {\"index\": 94, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OH\", \"positive\": 704.0, \"negative\": 14060.0, \"pending\": null, \"hospitalized\": 182.0, \"death\": 10.0, \"total\": 14764, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 14764, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 13920.0, \"positiveIncrease\": 140.0, \"totalTestResultsIncrease\": 14060.0, \"ratio\": 0.047683554592251425, \"sinceDay0\": 6}, {\"index\": 38, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalized\": 223.0, \"death\": 15.0, \"total\": 17316, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 17316, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 7}, {\"index\": 151, \"date\": \"2020-03-24T00:00:00\", \"state\": \"OK\", \"positive\": 106.0, \"negative\": 735.0, \"pending\": null, \"hospitalized\": 25.0, \"death\": 3.0, \"total\": 841, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 841, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 41.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 66.0, \"ratio\": 0.12604042806183116, \"sinceDay0\": 0}, {\"index\": 95, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OK\", \"positive\": 164.0, \"negative\": 805.0, \"pending\": null, \"hospitalized\": 59.0, \"death\": 5.0, \"total\": 969, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 969, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 34.0, \"negativeIncrease\": 70.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.1692466460268318, \"sinceDay0\": 1}, {\"index\": 39, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OK\", \"positive\": 248.0, \"negative\": 958.0, \"pending\": null, \"hospitalized\": 86.0, \"death\": 7.0, \"total\": 1206, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1206, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 153.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.20563847429519072, \"sinceDay0\": 2}, {\"index\": 376, \"date\": \"2020-03-20T00:00:00\", \"state\": \"OR\", \"positive\": 114.0, \"negative\": 2003.0, \"pending\": 433.0, \"hospitalized\": null, \"death\": 3.0, \"total\": 2550, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2117, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 674.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 700.0, \"ratio\": 0.04470588235294118, \"sinceDay0\": 0}, {\"index\": 320, \"date\": \"2020-03-21T00:00:00\", \"state\": \"OR\", \"positive\": 114.0, \"negative\": 2003.0, \"pending\": 433.0, \"hospitalized\": null, \"death\": 3.0, \"total\": 2550, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2117, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.04470588235294118, \"sinceDay0\": 1}, {\"index\": 264, \"date\": \"2020-03-22T00:00:00\", \"state\": \"OR\", \"positive\": 161.0, \"negative\": 2864.0, \"pending\": null, \"hospitalized\": 43.0, \"death\": 4.0, \"total\": 3025, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3025, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 43.0, \"negativeIncrease\": 861.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 908.0, \"ratio\": 0.053223140495867766, \"sinceDay0\": 2}, {\"index\": 208, \"date\": \"2020-03-23T00:00:00\", \"state\": \"OR\", \"positive\": 191.0, \"negative\": 3649.0, \"pending\": null, \"hospitalized\": 56.0, \"death\": 5.0, \"total\": 3840, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3840, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 785.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 815.0, \"ratio\": 0.04973958333333333, \"sinceDay0\": 3}, {\"index\": 152, \"date\": \"2020-03-24T00:00:00\", \"state\": \"OR\", \"positive\": 209.0, \"negative\": 4350.0, \"pending\": null, \"hospitalized\": 61.0, \"death\": 8.0, \"total\": 4559, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 4559, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 701.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 719.0, \"ratio\": 0.04584338670761132, \"sinceDay0\": 4}, {\"index\": 96, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OR\", \"positive\": 209.0, \"negative\": 4350.0, \"pending\": null, \"hospitalized\": 61.0, \"death\": 8.0, \"total\": 4559, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 4559, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.04584338670761132, \"sinceDay0\": 5}, {\"index\": 40, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalized\": 90.0, \"death\": 11.0, \"total\": 7280, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7280, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 6}, {\"index\": 489, \"date\": \"2020-03-18T00:00:00\", \"state\": \"PA\", \"positive\": 133.0, \"negative\": 1187.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1320, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 1320, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 308.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 345.0, \"ratio\": 0.10075757575757575, \"sinceDay0\": 0}, {\"index\": 433, \"date\": \"2020-03-19T00:00:00\", \"state\": \"PA\", \"positive\": 185.0, \"negative\": 1608.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 1793, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 1793, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 421.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 473.0, \"ratio\": 0.10317902955939766, \"sinceDay0\": 1}, {\"index\": 377, \"date\": \"2020-03-20T00:00:00\", \"state\": \"PA\", \"positive\": 268.0, \"negative\": 2574.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 2842, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2842, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 966.0, \"positiveIncrease\": 83.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.09429978888106967, \"sinceDay0\": 2}, {\"index\": 321, \"date\": \"2020-03-21T00:00:00\", \"state\": \"PA\", \"positive\": 371.0, \"negative\": 3766.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 4137, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 4137, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1192.0, \"positiveIncrease\": 103.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.08967851099830795, \"sinceDay0\": 3}, {\"index\": 265, \"date\": \"2020-03-22T00:00:00\", \"state\": \"PA\", \"positive\": 479.0, \"negative\": 4964.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 5443, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 5443, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1198.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1306.0, \"ratio\": 0.08800293955539225, \"sinceDay0\": 4}, {\"index\": 209, \"date\": \"2020-03-23T00:00:00\", \"state\": \"PA\", \"positive\": 644.0, \"negative\": 6595.0, \"pending\": null, \"hospitalized\": null, \"death\": 6.0, \"total\": 7239, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 7239, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1631.0, \"positiveIncrease\": 165.0, \"totalTestResultsIncrease\": 1796.0, \"ratio\": 0.08896256389004006, \"sinceDay0\": 5}, {\"index\": 153, \"date\": \"2020-03-24T00:00:00\", \"state\": \"PA\", \"positive\": 851.0, \"negative\": 8643.0, \"pending\": null, \"hospitalized\": null, \"death\": 7.0, \"total\": 9494, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 9494, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2048.0, \"positiveIncrease\": 207.0, \"totalTestResultsIncrease\": 2255.0, \"ratio\": 0.08963555930061091, \"sinceDay0\": 6}, {\"index\": 97, \"date\": \"2020-03-25T00:00:00\", \"state\": \"PA\", \"positive\": 1127.0, \"negative\": 11193.0, \"pending\": null, \"hospitalized\": null, \"death\": 11.0, \"total\": 12320, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 12320, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2550.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2826.0, \"ratio\": 0.09147727272727273, \"sinceDay0\": 7}, {\"index\": 41, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 18128, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18128, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 8}, {\"index\": 211, \"date\": \"2020-03-23T00:00:00\", \"state\": \"RI\", \"positive\": 106.0, \"negative\": 932.0, \"pending\": 216.0, \"hospitalized\": null, \"death\": null, \"total\": 1254, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1038, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.08452950558213716, \"sinceDay0\": 0}, {\"index\": 155, \"date\": \"2020-03-24T00:00:00\", \"state\": \"RI\", \"positive\": 106.0, \"negative\": 1120.0, \"pending\": 77.0, \"hospitalized\": null, \"death\": null, \"total\": 1303, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 1226, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 188.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 188.0, \"ratio\": 0.08135072908672294, \"sinceDay0\": 1}, {\"index\": 99, \"date\": \"2020-03-25T00:00:00\", \"state\": \"RI\", \"positive\": 124.0, \"negative\": 1143.0, \"pending\": 196.0, \"hospitalized\": 16.0, \"death\": null, \"total\": 1463, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 1267, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 23.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 41.0, \"ratio\": 0.08475734791524266, \"sinceDay0\": 2}, {\"index\": 43, \"date\": \"2020-03-26T00:00:00\", \"state\": \"RI\", \"positive\": 165.0, \"negative\": 1339.0, \"pending\": 181.0, \"hospitalized\": 23.0, \"death\": null, \"total\": 1685, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1504, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 196.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.09792284866468842, \"sinceDay0\": 3}, {\"index\": 324, \"date\": \"2020-03-21T00:00:00\", \"state\": \"SC\", \"positive\": 152.0, \"negative\": 1255.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 1407, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 1407, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 71.0, \"totalTestResultsIncrease\": 493.0, \"ratio\": 0.10803127221037669, \"sinceDay0\": 0}, {\"index\": 268, \"date\": \"2020-03-22T00:00:00\", \"state\": \"SC\", \"positive\": 195.0, \"negative\": 1466.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 1661, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 1661, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 211.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 254.0, \"ratio\": 0.11739915713425647, \"sinceDay0\": 1}, {\"index\": 212, \"date\": \"2020-03-23T00:00:00\", \"state\": \"SC\", \"positive\": 299.0, \"negative\": 1466.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 1765, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 1765, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 104.0, \"ratio\": 0.16940509915014165, \"sinceDay0\": 2}, {\"index\": 156, \"date\": \"2020-03-24T00:00:00\", \"state\": \"SC\", \"positive\": 298.0, \"negative\": 2012.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 2310, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 2310, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 546.0, \"positiveIncrease\": -1.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.129004329004329, \"sinceDay0\": 3}, {\"index\": 100, \"date\": \"2020-03-25T00:00:00\", \"state\": \"SC\", \"positive\": 424.0, \"negative\": 2303.0, \"pending\": null, \"hospitalized\": 102.0, \"death\": 7.0, \"total\": 2727, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 2727, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 291.0, \"positiveIncrease\": 126.0, \"totalTestResultsIncrease\": 417.0, \"ratio\": 0.15548221488815547, \"sinceDay0\": 4}, {\"index\": 44, \"date\": \"2020-03-26T00:00:00\", \"state\": \"SC\", \"positive\": 456.0, \"negative\": 2307.0, \"pending\": null, \"hospitalized\": 109.0, \"death\": 9.0, \"total\": 2763, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2763, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 4.0, \"positiveIncrease\": 32.0, \"totalTestResultsIncrease\": 36.0, \"ratio\": 0.16503800217155265, \"sinceDay0\": 5}, {\"index\": 438, \"date\": \"2020-03-19T00:00:00\", \"state\": \"TN\", \"positive\": 154.0, \"negative\": 349.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 503, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 503, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 56.0, \"ratio\": 0.3061630218687873, \"sinceDay0\": 0}, {\"index\": 382, \"date\": \"2020-03-20T00:00:00\", \"state\": \"TN\", \"positive\": 228.0, \"negative\": 563.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 791, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 791, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 214.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 288.0, \"ratio\": 0.28824273072060685, \"sinceDay0\": 1}, {\"index\": 326, \"date\": \"2020-03-21T00:00:00\", \"state\": \"TN\", \"positive\": 371.0, \"negative\": 3272.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3643, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 3643, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2709.0, \"positiveIncrease\": 143.0, \"totalTestResultsIncrease\": 2852.0, \"ratio\": 0.10183914356299753, \"sinceDay0\": 2}, {\"index\": 270, \"date\": \"2020-03-22T00:00:00\", \"state\": \"TN\", \"positive\": 505.0, \"negative\": 3272.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3777, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3777, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 134.0, \"totalTestResultsIncrease\": 134.0, \"ratio\": 0.13370399788191686, \"sinceDay0\": 3}, {\"index\": 214, \"date\": \"2020-03-23T00:00:00\", \"state\": \"TN\", \"positive\": 615.0, \"negative\": 3272.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 3887, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3887, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 110.0, \"totalTestResultsIncrease\": 110.0, \"ratio\": 0.15821970671469, \"sinceDay0\": 4}, {\"index\": 158, \"date\": \"2020-03-24T00:00:00\", \"state\": \"TN\", \"positive\": 667.0, \"negative\": 10517.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 11184, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 11184, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7245.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 7297.0, \"ratio\": 0.05963876967095851, \"sinceDay0\": 5}, {\"index\": 102, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TN\", \"positive\": 784.0, \"negative\": 11012.0, \"pending\": null, \"hospitalized\": 53.0, \"death\": 3.0, \"total\": 11796, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 11796, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 495.0, \"positiveIncrease\": 117.0, \"totalTestResultsIncrease\": 612.0, \"ratio\": 0.06646320786707359, \"sinceDay0\": 6}, {\"index\": 46, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TN\", \"positive\": 957.0, \"negative\": 13952.0, \"pending\": null, \"hospitalized\": 76.0, \"death\": 3.0, \"total\": 14909, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 14909, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 23.0, \"negativeIncrease\": 2940.0, \"positiveIncrease\": 173.0, \"totalTestResultsIncrease\": 3113.0, \"ratio\": 0.06418941578912067, \"sinceDay0\": 7}, {\"index\": 439, \"date\": \"2020-03-19T00:00:00\", \"state\": \"TX\", \"positive\": 143.0, \"negative\": 2212.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 2355, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 2355, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 388.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 448.0, \"ratio\": 0.06072186836518047, \"sinceDay0\": 0}, {\"index\": 383, \"date\": \"2020-03-20T00:00:00\", \"state\": \"TX\", \"positive\": 194.0, \"negative\": 5083.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 5277, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 5277, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2871.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 2922.0, \"ratio\": 0.03676331248815615, \"sinceDay0\": 1}, {\"index\": 327, \"date\": \"2020-03-21T00:00:00\", \"state\": \"TX\", \"positive\": 304.0, \"negative\": 6218.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 6522, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 6522, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1135.0, \"positiveIncrease\": 110.0, \"totalTestResultsIncrease\": 1245.0, \"ratio\": 0.04661146887457835, \"sinceDay0\": 2}, {\"index\": 271, \"date\": \"2020-03-22T00:00:00\", \"state\": \"TX\", \"positive\": 334.0, \"negative\": 8422.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 8756, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 8756, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2204.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 2234.0, \"ratio\": 0.038145271813613525, \"sinceDay0\": 3}, {\"index\": 215, \"date\": \"2020-03-23T00:00:00\", \"state\": \"TX\", \"positive\": 352.0, \"negative\": 9703.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 10055, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 10055, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1281.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 1299.0, \"ratio\": 0.035007458975634016, \"sinceDay0\": 4}, {\"index\": 159, \"date\": \"2020-03-24T00:00:00\", \"state\": \"TX\", \"positive\": 410.0, \"negative\": 10757.0, \"pending\": null, \"hospitalized\": null, \"death\": 9.0, \"total\": 11167, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 11167, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1054.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 1112.0, \"ratio\": 0.03671532193068864, \"sinceDay0\": 5}, {\"index\": 103, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TX\", \"positive\": 974.0, \"negative\": 12520.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 13494, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 13494, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1763.0, \"positiveIncrease\": 564.0, \"totalTestResultsIncrease\": 2327.0, \"ratio\": 0.07218022824959242, \"sinceDay0\": 6}, {\"index\": 47, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 21424, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 21424, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 7}, {\"index\": 384, \"date\": \"2020-03-20T00:00:00\", \"state\": \"UT\", \"positive\": 112.0, \"negative\": 2035.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 2147, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2147, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 587.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 621.0, \"ratio\": 0.05216581276199348, \"sinceDay0\": 0}, {\"index\": 328, \"date\": \"2020-03-21T00:00:00\", \"state\": \"UT\", \"positive\": 136.0, \"negative\": 2424.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 2560, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2560, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 389.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 413.0, \"ratio\": 0.053125, \"sinceDay0\": 1}, {\"index\": 272, \"date\": \"2020-03-22T00:00:00\", \"state\": \"UT\", \"positive\": 181.0, \"negative\": 3508.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 3689, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3689, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1084.0, \"positiveIncrease\": 45.0, \"totalTestResultsIncrease\": 1129.0, \"ratio\": 0.049064787205204664, \"sinceDay0\": 2}, {\"index\": 216, \"date\": \"2020-03-23T00:00:00\", \"state\": \"UT\", \"positive\": 257.0, \"negative\": 4790.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 5047, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5047, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1282.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 1358.0, \"ratio\": 0.05092133940955023, \"sinceDay0\": 3}, {\"index\": 160, \"date\": \"2020-03-24T00:00:00\", \"state\": \"UT\", \"positive\": 299.0, \"negative\": 5524.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 5823, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5823, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 734.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 776.0, \"ratio\": 0.051348102352739136, \"sinceDay0\": 4}, {\"index\": 104, \"date\": \"2020-03-25T00:00:00\", \"state\": \"UT\", \"positive\": 346.0, \"negative\": 6491.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 6837, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 6837, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 967.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1014.0, \"ratio\": 0.05060699137048413, \"sinceDay0\": 5}, {\"index\": 48, \"date\": \"2020-03-26T00:00:00\", \"state\": \"UT\", \"positive\": 402.0, \"negative\": 7308.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 7710, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7710, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 817.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 873.0, \"ratio\": 0.052140077821011675, \"sinceDay0\": 6}, {\"index\": 385, \"date\": \"2020-03-20T00:00:00\", \"state\": \"VA\", \"positive\": 114.0, \"negative\": 2211.0, \"pending\": null, \"hospitalized\": null, \"death\": 2.0, \"total\": 2325, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 2325, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 382.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 402.0, \"ratio\": 0.04903225806451613, \"sinceDay0\": 0}, {\"index\": 329, \"date\": \"2020-03-21T00:00:00\", \"state\": \"VA\", \"positive\": 152.0, \"negative\": 2638.0, \"pending\": null, \"hospitalized\": 25.0, \"death\": 2.0, \"total\": 2790, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 2790, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 427.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 465.0, \"ratio\": 0.05448028673835126, \"sinceDay0\": 1}, {\"index\": 273, \"date\": \"2020-03-22T00:00:00\", \"state\": \"VA\", \"positive\": 219.0, \"negative\": 3118.0, \"pending\": null, \"hospitalized\": 32.0, \"death\": 3.0, \"total\": 3337, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 3337, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 480.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 547.0, \"ratio\": 0.06562780940964938, \"sinceDay0\": 2}, {\"index\": 217, \"date\": \"2020-03-23T00:00:00\", \"state\": \"VA\", \"positive\": 254.0, \"negative\": 3443.0, \"pending\": null, \"hospitalized\": 38.0, \"death\": 6.0, \"total\": 3697, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 3697, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 325.0, \"positiveIncrease\": 35.0, \"totalTestResultsIncrease\": 360.0, \"ratio\": 0.06870435488233703, \"sinceDay0\": 3}, {\"index\": 161, \"date\": \"2020-03-24T00:00:00\", \"state\": \"VA\", \"positive\": 290.0, \"negative\": 4180.0, \"pending\": null, \"hospitalized\": 45.0, \"death\": 7.0, \"total\": 4470, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 4470, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 737.0, \"positiveIncrease\": 36.0, \"totalTestResultsIncrease\": 773.0, \"ratio\": 0.06487695749440715, \"sinceDay0\": 4}, {\"index\": 105, \"date\": \"2020-03-25T00:00:00\", \"state\": \"VA\", \"positive\": 391.0, \"negative\": 4979.0, \"pending\": null, \"hospitalized\": 59.0, \"death\": 9.0, \"total\": 5370, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 5370, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 799.0, \"positiveIncrease\": 101.0, \"totalTestResultsIncrease\": 900.0, \"ratio\": 0.07281191806331472, \"sinceDay0\": 5}, {\"index\": 49, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalized\": 65.0, \"death\": 13.0, \"total\": 6189, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6189, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 6}, {\"index\": 107, \"date\": \"2020-03-25T00:00:00\", \"state\": \"VT\", \"positive\": 123.0, \"negative\": 1589.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 1712, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 1712, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 149.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 177.0, \"ratio\": 0.07184579439252337, \"sinceDay0\": 0}, {\"index\": 51, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VT\", \"positive\": 158.0, \"negative\": 1850.0, \"pending\": null, \"hospitalized\": null, \"death\": 9.0, \"total\": 2008, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2008, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 261.0, \"positiveIncrease\": 35.0, \"totalTestResultsIncrease\": 296.0, \"ratio\": 0.07868525896414343, \"sinceDay0\": 1}, {\"index\": 1071, \"date\": \"2020-03-07T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 370.0, \"pending\": 66.0, \"hospitalized\": null, \"death\": null, \"total\": 538, \"dateChecked\": \"2020-03-07T21:00:00Z\", \"totalTestResults\": 472, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.1895910780669145, \"sinceDay0\": 0}, {\"index\": 1020, \"date\": \"2020-03-08T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 640.0, \"pending\": 60.0, \"hospitalized\": null, \"death\": null, \"total\": 802, \"dateChecked\": \"2020-03-08T20:00:00Z\", \"totalTestResults\": 742, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 270.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 270.0, \"ratio\": 0.12718204488778054, \"sinceDay0\": 1}, {\"index\": 969, \"date\": \"2020-03-09T00:00:00\", \"state\": \"WA\", \"positive\": 136.0, \"negative\": 1110.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1246, \"dateChecked\": \"2020-03-09T20:00:00Z\", \"totalTestResults\": 1246, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 470.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 504.0, \"ratio\": 0.10914927768860354, \"sinceDay0\": 2}, {\"index\": 918, \"date\": \"2020-03-10T00:00:00\", \"state\": \"WA\", \"positive\": 162.0, \"negative\": 1110.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1272, \"dateChecked\": \"2020-03-10T20:00:00Z\", \"totalTestResults\": 1272, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.12735849056603774, \"sinceDay0\": 3}, {\"index\": 867, \"date\": \"2020-03-11T00:00:00\", \"state\": \"WA\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 2442, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 2442, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"sinceDay0\": 4}, {\"index\": 816, \"date\": \"2020-03-12T00:00:00\", \"state\": \"WA\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalized\": null, \"death\": 29.0, \"total\": 3374, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 3374, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"sinceDay0\": 5}, {\"index\": 765, \"date\": \"2020-03-13T00:00:00\", \"state\": \"WA\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalized\": null, \"death\": 31.0, \"total\": 4807, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 4807, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"sinceDay0\": 6}, {\"index\": 714, \"date\": \"2020-03-14T00:00:00\", \"state\": \"WA\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalized\": null, \"death\": 37.0, \"total\": 6569, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 6569, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"sinceDay0\": 7}, {\"index\": 663, \"date\": \"2020-03-15T00:00:00\", \"state\": \"WA\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalized\": null, \"death\": 40.0, \"total\": 7764, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 7764, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"sinceDay0\": 8}, {\"index\": 612, \"date\": \"2020-03-16T00:00:00\", \"state\": \"WA\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalized\": null, \"death\": 42.0, \"total\": 10220, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 10220, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"sinceDay0\": 9}, {\"index\": 556, \"date\": \"2020-03-17T00:00:00\", \"state\": \"WA\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalized\": null, \"death\": 48.0, \"total\": 12486, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 12486, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"sinceDay0\": 10}, {\"index\": 500, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WA\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalized\": null, \"death\": 52.0, \"total\": 14129, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14129, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"sinceDay0\": 11}, {\"index\": 444, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WA\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalized\": null, \"death\": 66.0, \"total\": 17105, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 17105, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"sinceDay0\": 12}, {\"index\": 388, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WA\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalized\": null, \"death\": 74.0, \"total\": 20712, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 20712, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"sinceDay0\": 13}, {\"index\": 332, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WA\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalized\": null, \"death\": 83.0, \"total\": 23243, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 23243, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"sinceDay0\": 14}, {\"index\": 276, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WA\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalized\": null, \"death\": 94.0, \"total\": 27121, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 27121, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"sinceDay0\": 15}, {\"index\": 220, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WA\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalized\": null, \"death\": 95.0, \"total\": 30875, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 30875, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"sinceDay0\": 16}, {\"index\": 164, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WA\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 110.0, \"total\": 33933, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 33933, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"sinceDay0\": 17}, {\"index\": 108, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WA\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 123.0, \"total\": 34181, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 34181, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"sinceDay0\": 18}, {\"index\": 52, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 132.0, \"total\": 34292, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 34292, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 19}, {\"index\": 501, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WI\", \"positive\": 106.0, \"negative\": 1577.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1683, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 1683, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 539.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 573.0, \"ratio\": 0.0629827688651218, \"sinceDay0\": 0}, {\"index\": 445, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WI\", \"positive\": 155.0, \"negative\": 2192.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 2347, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 2347, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 615.0, \"positiveIncrease\": 49.0, \"totalTestResultsIncrease\": 664.0, \"ratio\": 0.06604175543246697, \"sinceDay0\": 1}, {\"index\": 389, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WI\", \"positive\": 206.0, \"negative\": 3455.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 3661, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 3661, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 1314.0, \"ratio\": 0.056268779022125105, \"sinceDay0\": 2}, {\"index\": 333, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WI\", \"positive\": 281.0, \"negative\": 4628.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 4909, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 4909, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1173.0, \"positiveIncrease\": 75.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.05724180077408841, \"sinceDay0\": 3}, {\"index\": 277, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WI\", \"positive\": 385.0, \"negative\": 6230.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 6615, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 6615, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1602.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 1706.0, \"ratio\": 0.0582010582010582, \"sinceDay0\": 4}, {\"index\": 221, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WI\", \"positive\": 416.0, \"negative\": 7050.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 7466, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 7466, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 820.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 851.0, \"ratio\": 0.055719260648272165, \"sinceDay0\": 5}, {\"index\": 165, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WI\", \"positive\": 457.0, \"negative\": 8237.0, \"pending\": null, \"hospitalized\": null, \"death\": 5.0, \"total\": 8694, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 8694, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1187.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 1228.0, \"ratio\": 0.05256498734759604, \"sinceDay0\": 6}, {\"index\": 109, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WI\", \"positive\": 585.0, \"negative\": 10089.0, \"pending\": null, \"hospitalized\": null, \"death\": 7.0, \"total\": 10674, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 10674, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1852.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 1980.0, \"ratio\": 0.05480607082630692, \"sinceDay0\": 7}, {\"index\": 53, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WI\", \"positive\": 707.0, \"negative\": 11583.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 12290, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12290, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1494.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 1616.0, \"ratio\": 0.05752644426362897, \"sinceDay0\": 8}], \"data-e99f1b5c9a7c3f6418e92cbe4224be4a\": [{\"index\": 0, \"day\": 1, \"case\": 100.0, \"doubling period\": \"every day\"}, {\"index\": 1, \"day\": 2, \"case\": 200.0, \"doubling period\": \"every day\"}, {\"index\": 2, \"day\": 3, \"case\": 400.0, \"doubling period\": \"every day\"}, {\"index\": 3, \"day\": 4, \"case\": 800.0, \"doubling period\": \"every day\"}, {\"index\": 4, \"day\": 5, \"case\": 1600.0, \"doubling period\": \"every day\"}, {\"index\": 5, \"day\": 10, \"case\": 51200.0, \"doubling period\": \"every day\"}, {\"index\": 6, \"day\": 15, \"case\": 1638400.0, \"doubling period\": \"every day\"}, {\"index\": 7, \"day\": 20, \"case\": 52428800.0, \"doubling period\": \"every day\"}, {\"index\": 8, \"day\": 50, \"case\": 5.62949953421312e+16, \"doubling period\": \"every day\"}, {\"index\": 9, \"day\": 100, \"case\": 0.0, \"doubling period\": \"every day\"}, {\"index\": 0, \"day\": 1, \"case\": 100.0, \"doubling period\": \"three days\"}, {\"index\": 1, \"day\": 2, \"case\": 125.99210498948732, \"doubling period\": \"three days\"}, {\"index\": 2, \"day\": 3, \"case\": 158.74010519681994, \"doubling period\": \"three days\"}, {\"index\": 3, \"day\": 4, \"case\": 200.0, \"doubling period\": \"three days\"}, {\"index\": 4, \"day\": 5, \"case\": 251.98420997897463, \"doubling period\": \"three days\"}, {\"index\": 5, \"day\": 10, \"case\": 800.0, \"doubling period\": \"three days\"}, {\"index\": 6, \"day\": 15, \"case\": 2539.8416831491195, \"doubling period\": \"three days\"}, {\"index\": 7, \"day\": 20, \"case\": 8063.494719327187, \"doubling period\": \"three days\"}, {\"index\": 8, \"day\": 50, \"case\": 8257018.592591033, \"doubling period\": \"three days\"}, {\"index\": 9, \"day\": 100, \"case\": 858993459200.0, \"doubling period\": \"three days\"}, {\"index\": 0, \"day\": 1, \"case\": 100.0, \"doubling period\": \"every week\"}, {\"index\": 1, \"day\": 2, \"case\": 110.40895136738122, \"doubling period\": \"every week\"}, {\"index\": 2, \"day\": 3, \"case\": 121.90136542044753, \"doubling period\": \"every week\"}, {\"index\": 3, \"day\": 4, \"case\": 134.5900192632356, \"doubling period\": \"every week\"}, {\"index\": 4, \"day\": 5, \"case\": 148.59942891369485, \"doubling period\": \"every week\"}, {\"index\": 5, \"day\": 10, \"case\": 243.80273084089512, \"doubling period\": \"every week\"}, {\"index\": 6, \"day\": 15, \"case\": 400.0, \"doubling period\": \"every week\"}, {\"index\": 7, \"day\": 20, \"case\": 656.2682848061104, \"doubling period\": \"every week\"}, {\"index\": 8, \"day\": 50, \"case\": 12800.0, \"doubling period\": \"every week\"}, {\"index\": 9, \"day\": 100, \"case\": 1808940.2592031737, \"doubling period\": \"every week\"}], \"data-1dfdacab44ea1f68407f4b705005959d\": [{\"index\": 1, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AL\", \"positive\": 506.0, \"negative\": 3593.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 4099, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4099, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1064.0, \"positiveIncrease\": 223.0, \"totalTestResultsIncrease\": 1287.0, \"ratio\": 0.12344474262015126, \"sinceDay0\": 5}, {\"index\": 2, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AR\", \"positive\": 335.0, \"negative\": 1504.0, \"pending\": 0.0, \"hospitalized\": 41.0, \"death\": 3.0, \"total\": 1839, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1839, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 67.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 122.0, \"ratio\": 0.1821642196846112, \"sinceDay0\": 5}, {\"index\": 4, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AZ\", \"positive\": 577.0, \"negative\": 347.0, \"pending\": 33.0, \"hospitalized\": 66.0, \"death\": 8.0, \"total\": 957, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 924, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 24.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 151.0, \"ratio\": 0.6029258098223615, \"sinceDay0\": 5}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalized\": 10131.0, \"death\": 1163.0, \"total\": 579589, \"dateChecked\": null, \"totalTestResults\": 519338, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 22}, {\"index\": 5, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalized\": null, \"death\": 65.0, \"total\": 77786, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20386, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 17}, {\"index\": 6, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalized\": 148.0, \"death\": 19.0, \"total\": 8064, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8064, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 12}, {\"index\": 7, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalized\": 125.0, \"death\": 21.0, \"total\": 6637, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6637, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 6}, {\"index\": 8, \"date\": \"2020-03-26T00:00:00\", \"state\": \"DC\", \"positive\": 231.0, \"negative\": 1626.0, \"pending\": 1.0, \"hospitalized\": null, \"death\": 3.0, \"total\": 1858, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1857, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 203.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 251.0, \"ratio\": 0.12432723358449946, \"sinceDay0\": 3}, {\"index\": 9, \"date\": \"2020-03-26T00:00:00\", \"state\": \"DE\", \"positive\": 130.0, \"negative\": 36.0, \"pending\": null, \"hospitalized\": 13.0, \"death\": 1.0, \"total\": 166, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 166, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 15.0, \"ratio\": 0.7831325301204819, \"sinceDay0\": 1}, {\"index\": 10, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalized\": 406.0, \"death\": 28.0, \"total\": 27539, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 26096, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 11}, {\"index\": 11, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalized\": 473.0, \"death\": 48.0, \"total\": 8926, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8926, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 10}, {\"index\": 14, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IA\", \"positive\": 179.0, \"negative\": 2578.0, \"pending\": null, \"hospitalized\": 46.0, \"death\": 1.0, \"total\": 2757, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2757, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 34.0, \"ratio\": 0.06492564381574174, \"sinceDay0\": 3}, {\"index\": 15, \"date\": \"2020-03-26T00:00:00\", \"state\": \"ID\", \"positive\": 123.0, \"negative\": 2065.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 2188, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2188, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 178.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 228.0, \"ratio\": 0.05621572212065813, \"sinceDay0\": 0}, {\"index\": 16, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalized\": null, \"death\": 26.0, \"total\": 16631, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 16631, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 9}, {\"index\": 17, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalized\": null, \"death\": 17.0, \"total\": 4651, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4651, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 5}, {\"index\": 18, \"date\": \"2020-03-26T00:00:00\", \"state\": \"KS\", \"positive\": 168.0, \"negative\": 2869.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 3037, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3037, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 509.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 0.05531774777741192, \"sinceDay0\": 1}, {\"index\": 19, \"date\": \"2020-03-26T00:00:00\", \"state\": \"KY\", \"positive\": 198.0, \"negative\": 3102.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 3300, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3300, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 237.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 278.0, \"ratio\": 0.06, \"sinceDay0\": 3}, {\"index\": 20, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalized\": 676.0, \"death\": 83.0, \"total\": 18029, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18029, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 10}, {\"index\": 21, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalized\": 219.0, \"death\": 25.0, \"total\": 23621, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 23621, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 13}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MD\", \"positive\": 580.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": 132.0, \"death\": 4.0, \"total\": 674, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 674, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 132.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 157.0, \"totalTestResultsIncrease\": 157.0, \"ratio\": 0.8605341246290801, \"sinceDay0\": 7}, {\"index\": 23, \"date\": \"2020-03-26T00:00:00\", \"state\": \"ME\", \"positive\": 155.0, \"negative\": 3394.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3549, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3549, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 217.0, \"positiveIncrease\": 6.0, \"totalTestResultsIncrease\": 223.0, \"ratio\": 0.04367427444350521, \"sinceDay0\": 3}, {\"index\": 24, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalized\": null, \"death\": 60.0, \"total\": 9406, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 9406, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 7}, {\"index\": 25, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MN\", \"positive\": 346.0, \"negative\": 12604.0, \"pending\": null, \"hospitalized\": 41.0, \"death\": 2.0, \"total\": 12950, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12950, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 1416.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 1475.0, \"ratio\": 0.026718146718146717, \"sinceDay0\": 6}, {\"index\": 26, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MO\", \"positive\": 502.0, \"negative\": 369.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 871, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 871, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 146.0, \"totalTestResultsIncrease\": 146.0, \"ratio\": 0.5763490241102182, \"sinceDay0\": 3}, {\"index\": 28, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MS\", \"positive\": 485.0, \"negative\": 2291.0, \"pending\": null, \"hospitalized\": 150.0, \"death\": 6.0, \"total\": 2776, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2776, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 725.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 833.0, \"ratio\": 0.17471181556195967, \"sinceDay0\": 5}, {\"index\": 30, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NC\", \"positive\": 636.0, \"negative\": 12274.0, \"pending\": null, \"hospitalized\": 29.0, \"death\": 2.0, \"total\": 12910, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12910, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2289.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 2421.0, \"ratio\": 0.04926413632842758, \"sinceDay0\": 6}, {\"index\": 33, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NH\", \"positive\": 137.0, \"negative\": 3001.0, \"pending\": 712.0, \"hospitalized\": 19.0, \"death\": 1.0, \"total\": 3850, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3138, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 645.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 674.0, \"ratio\": 0.03558441558441559, \"sinceDay0\": 2}, {\"index\": 34, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalized\": null, \"death\": 81.0, \"total\": 20537, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20537, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 10}, {\"index\": 35, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NM\", \"positive\": 112.0, \"negative\": 7681.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 7793, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7793, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 939.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 951.0, \"ratio\": 0.014371872192993712, \"sinceDay0\": 1}, {\"index\": 36, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 5117, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 5117, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 6}, {\"index\": 37, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalized\": 6844.0, \"death\": 385.0, \"total\": 122104, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 122104, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 18}, {\"index\": 38, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalized\": 223.0, \"death\": 15.0, \"total\": 17316, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 17316, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 7}, {\"index\": 39, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OK\", \"positive\": 248.0, \"negative\": 958.0, \"pending\": null, \"hospitalized\": 86.0, \"death\": 7.0, \"total\": 1206, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1206, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 153.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.20563847429519072, \"sinceDay0\": 2}, {\"index\": 40, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalized\": 90.0, \"death\": 11.0, \"total\": 7280, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7280, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 6}, {\"index\": 41, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 18128, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18128, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 8}, {\"index\": 43, \"date\": \"2020-03-26T00:00:00\", \"state\": \"RI\", \"positive\": 165.0, \"negative\": 1339.0, \"pending\": 181.0, \"hospitalized\": 23.0, \"death\": null, \"total\": 1685, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1504, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 196.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.09792284866468842, \"sinceDay0\": 3}, {\"index\": 44, \"date\": \"2020-03-26T00:00:00\", \"state\": \"SC\", \"positive\": 456.0, \"negative\": 2307.0, \"pending\": null, \"hospitalized\": 109.0, \"death\": 9.0, \"total\": 2763, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2763, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 4.0, \"positiveIncrease\": 32.0, \"totalTestResultsIncrease\": 36.0, \"ratio\": 0.16503800217155265, \"sinceDay0\": 5}, {\"index\": 46, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TN\", \"positive\": 957.0, \"negative\": 13952.0, \"pending\": null, \"hospitalized\": 76.0, \"death\": 3.0, \"total\": 14909, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 14909, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 23.0, \"negativeIncrease\": 2940.0, \"positiveIncrease\": 173.0, \"totalTestResultsIncrease\": 3113.0, \"ratio\": 0.06418941578912067, \"sinceDay0\": 7}, {\"index\": 47, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 21424, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 21424, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 7}, {\"index\": 48, \"date\": \"2020-03-26T00:00:00\", \"state\": \"UT\", \"positive\": 402.0, \"negative\": 7308.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 7710, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7710, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 817.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 873.0, \"ratio\": 0.052140077821011675, \"sinceDay0\": 6}, {\"index\": 49, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalized\": 65.0, \"death\": 13.0, \"total\": 6189, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6189, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 6}, {\"index\": 51, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VT\", \"positive\": 158.0, \"negative\": 1850.0, \"pending\": null, \"hospitalized\": null, \"death\": 9.0, \"total\": 2008, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2008, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 261.0, \"positiveIncrease\": 35.0, \"totalTestResultsIncrease\": 296.0, \"ratio\": 0.07868525896414343, \"sinceDay0\": 1}, {\"index\": 52, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 132.0, \"total\": 34292, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 34292, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 19}, {\"index\": 53, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WI\", \"positive\": 707.0, \"negative\": 11583.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 12290, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12290, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1494.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 1616.0, \"ratio\": 0.05752644426362897, \"sinceDay0\": 8}], \"data-fd6452152b33a51e350c04c156674fe8\": [{\"labelX\": 9, \"labelY\": 30000, \"labelText\": \"doubles every day\"}, {\"labelX\": 28, \"labelY\": 31000, \"labelText\": \"doubles every 3 days\"}, {\"labelX\": 19, \"labelY\": 300, \"labelText\": \"doubles every week\"}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.LayerChart(...)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "#make dataframe with lines to indicate doubling every day, 3 days, week\n",
    "days = {'day':[1,2,3,4,5,10,15,20, 50, 100]}\n",
    "startCase = 100\n",
    "logRuleDay_df = pd.DataFrame (days, columns=['day'])\n",
    "logRuleDay_df['case']= startCase * pow(2,logRuleDay_df['day']-1)\n",
    "logRuleDay_df['doubling period']='every day'\n",
    "\n",
    "logRule3Days_df = pd.DataFrame (days, columns=['day'])\n",
    "logRule3Days_df['case']= startCase * pow(2,(logRule3Days_df['day']-1)/3)\n",
    "logRule3Days_df['doubling period']='three days'\n",
    "\n",
    "logRuleWeek_df = pd.DataFrame (days, columns=['day'])\n",
    "logRuleWeek_df['case']= startCase * pow(2,(logRuleWeek_df['day']-1)/7)\n",
    "logRuleWeek_df['doubling period']='every week'\n",
    "\n",
    "logRules_df = pd.concat([logRuleDay_df, logRule3Days_df, logRuleWeek_df])\n",
    "logRules_df = logRules_df.reset_index()\n",
    "\n",
    "#make dataframe for text labels on chart - hand edit these label locations\n",
    "textLabels_df = pd.DataFrame(\n",
    "    [[9,30000,'doubles every day'],\n",
    "     [28,31000,'doubles every 3 days'],\n",
    "     [19,300, 'doubles every week']],\n",
    "    columns =['labelX', 'labelY','labelText']\n",
    ")\n",
    "\n",
    "#make dataframe with only points >=100 positives\n",
    "positive100_df = data_df.loc[data_df['positive']>=100]\n",
    "\n",
    "##add US to that dataframe\n",
    "nationpos100_df = nation_df.loc[nation_df['positive']>=100]\n",
    "positive100_df= pd.concat ([positive100_df,nationpos100_df])\n",
    "\n",
    "#group positive100 dataframe by state and then increasing order of date\n",
    "positive100_df = positive100_df.sort_values(by=['state','date'])\n",
    "positive100_df = positive100_df.reset_index()\n",
    "\n",
    "#make a list of the states with 10 or more deaths (don't really need this)\n",
    "#state_list = list(set(positive100_df['state']))\n",
    "\n",
    "# add a column for the number of days since the 100th case for each state\n",
    "for state, df in positive100_df.groupby('state'):\n",
    "    positive100_df.loc[df.index,'sinceDay0'] = range(0, len(df))\n",
    "positive100_df = positive100_df.astype({'sinceDay0': 'int32'})\n",
    "\n",
    "    \n",
    "#Now create plotlines for each state since 10 deaths\n",
    "lineChart = alt.Chart(positive100_df, title=\"US States: total cases since 100th case\").mark_line(interpolate='basis').encode(\n",
    "    alt.X('sinceDay0:Q', axis=alt.Axis(title='Days since 100th case')),\n",
    "    alt.Y('positive:Q',\n",
    "          axis = alt.Axis(title='Cumulative positive cases'),\n",
    "          scale=alt.Scale(type='log')),\n",
    "    tooltip=['state', 'sinceDay0', 'death', 'positive'],\n",
    "    color = 'state'\n",
    ")\n",
    "\n",
    "#Create a layer with the lines for doubling every day and doubling every week\n",
    "\n",
    "ruleChart = alt.Chart(logRules_df).mark_line(opacity=0.2,clip=True).encode(\n",
    "    alt.X('day:Q',\n",
    "            scale=alt.Scale(domain=[1,30])),\n",
    "    alt.Y('case', scale=alt.Scale(domain=[100,100000], type='log'),\n",
    "         ),\n",
    "    color = 'doubling period')\n",
    "\n",
    "# create a layer for the state labels\n",
    "# 1) make dataframe with each state's max days\n",
    "# 2) make a chart layer with text of state name to right of each state's rightmost point\n",
    "stateLabels_df = positive100_df[positive100_df['sinceDay0'] == positive100_df.groupby(['state'])['sinceDay0'].transform(max)]\n",
    "labelChart = alt.Chart(stateLabels_df).mark_text(align='left', baseline='middle', dx=10).encode(\n",
    "    x='sinceDay0',\n",
    "    y='positive',\n",
    "    text='state',\n",
    "    color='state')\n",
    "\n",
    "#now put the text labels layer on top of state labels Chart\n",
    "labelChart = labelChart + alt.Chart(textLabels_df).mark_text(align='right', baseline='bottom', dx=0, size=18,opacity=0.5).encode(\n",
    "    x='labelX',\n",
    "    y='labelY',\n",
    "    text='labelText')\n",
    "\n",
    "#Create some tooltip behavior\n",
    "# Step 1: Selection that chooses nearest point based on value on x-axis\n",
    "nearest = alt.selection(type='single', nearest=True, on='mouseover',\n",
    "                            fields=['sinceDay0'])\n",
    "\n",
    "# Step 2: Transparent selectors across the chart. This is what tells us\n",
    "# the x-value of the cursor\n",
    "selectors = alt.Chart().mark_point().encode(\n",
    "    x=\"sinceDay0:Q\",\n",
    "    opacity=alt.value(0),\n",
    ").add_selection(\n",
    "    nearest\n",
    ")\n",
    "\n",
    "# Step 3: Add text, show values in Sex column when it's the nearest point to \n",
    "# mouseover, else show blank\n",
    "text = lineChart.mark_text(align='center', dx=3, dy=-20).encode(\n",
    "    text=alt.condition(nearest, 'positive', alt.value(' '))\n",
    ")\n",
    "\n",
    "\n",
    "#Finally, lets show the chart!\n",
    "\n",
    "chart = alt.layer(lineChart, ruleChart, labelChart, selectors, text, data=death10_df)\n",
    "#chart = alt.layer(lineChart, ruleChart, labelChart)\n",
    "chart.properties (width=800,height=600)\n",
    "display(chart)\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Daily Cumulative Totals\n",
    "\n",
    "Cumulative reported totals of positive cases and deaths. "
   ]
  },
  {
   "cell_type": "code",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-9526296bf26e4115bcff3cc667932664\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-9526296bf26e4115bcff3cc667932664\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}, \"title\": {\"anchor\": \"middle\"}}, \"vconcat\": [{\"hconcat\": [{\"mark\": {\"type\": \"bar\", \"size\": 15}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive\", \"title\": \"Cumulative cases\"}}}, {\"mark\": {\"type\": \"bar\", \"size\": 15}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive_diff\", \"title\": \"Daily cases\"}}}]}, {\"hconcat\": [{\"mark\": {\"type\": \"bar\", \"size\": 15}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"death\", \"title\": \"Cumulative deaths\"}}}, {\"mark\": {\"type\": \"bar\", \"size\": 15}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"death_diff\", \"title\": \"Daily deaths\"}}}]}], \"data\": {\"name\": \"data-0638c08874b1aeac002367dbfeeffd6d\"}, \"title\": \"Cumulative Covid-19 cases in the U.S.\", \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-0638c08874b1aeac002367dbfeeffd6d\": [{\"date\": \"2020-03-04T00:00:00\", \"positive\": 118.0, \"negative\": 748.0, \"pending\": 103.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 969, \"totalTestResults\": 866, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 5.515809423282292, \"positive_diff\": 0.0, \"negative_diff\": 0.0, \"death_diff\": 0.0, \"positive_diff_100k\": 0.0, \"death_diff_100k\": 0.0, \"total_10\": 96.9}, {\"date\": \"2020-03-05T00:00:00\", \"positive\": 176.0, \"negative\": 953.0, \"pending\": 197.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 1326, \"totalTestResults\": 1129, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 99.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 154.0, \"ratio\": 7.691963187672735, \"positive_diff\": 55.0, \"negative_diff\": 99.0, \"death_diff\": 0.0, \"positive_diff_100k\": 0.5298275537038083, \"death_diff_100k\": 0.0, \"total_10\": 132.59999999999997}, {\"date\": \"2020-03-06T00:00:00\", \"positive\": 223.0, \"negative\": 1571.0, \"pending\": 458.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 2252, \"totalTestResults\": 1794, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 507.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 8.84189813481705, \"positive_diff\": 44.0, \"negative_diff\": 137.0, \"death_diff\": 0.0, \"positive_diff_100k\": 0.4002079423948694, \"death_diff_100k\": 0.0, \"total_10\": 225.2}, {\"date\": \"2020-03-07T00:00:00\", \"positive\": 341.0, \"negative\": 1809.0, \"pending\": 602.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 2752, \"totalTestResults\": 2150, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 194.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 307.0, \"ratio\": 13.209662158531827, \"positive_diff\": 113.0, \"negative_diff\": 194.0, \"death_diff\": 0.0, \"positive_diff_100k\": 1.0879306092476013, \"death_diff_100k\": 0.0, \"total_10\": 275.2}, {\"date\": \"2020-03-08T00:00:00\", \"positive\": 417.0, \"negative\": 2335.0, \"pending\": 347.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 3099, \"totalTestResults\": 2752, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 602.0, \"ratio\": 12.32417291309689, \"positive_diff\": 76.0, \"negative_diff\": 423.0, \"death_diff\": 0.0, \"positive_diff_100k\": 1.114311671083663, \"death_diff_100k\": 0.0, \"total_10\": 309.9}, {\"date\": \"2020-03-09T00:00:00\", \"positive\": 584.0, \"negative\": 3367.0, \"pending\": 313.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 4264, \"totalTestResults\": 3951, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1032.0, \"positiveIncrease\": 167.0, \"totalTestResultsIncrease\": 1199.0, \"ratio\": 12.85071660526928, \"positive_diff\": 167.0, \"negative_diff\": 1032.0, \"death_diff\": 0.0, \"positive_diff_100k\": 1.8189942831236092, \"death_diff_100k\": 0.0, \"total_10\": 426.3999999999999}, {\"date\": \"2020-03-10T00:00:00\", \"positive\": 778.0, \"negative\": 3807.0, \"pending\": 469.0, \"hospitalized\": 0.0, \"death\": 0.0, \"total\": 5054, \"totalTestResults\": 4585, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 440.0, \"positiveIncrease\": 195.0, \"totalTestResultsIncrease\": 634.0, \"ratio\": 12.154127882707202, \"positive_diff\": 194.0, \"negative_diff\": 410.0, \"death_diff\": 0.0, \"positive_diff_100k\": 2.7039844813891034, \"death_diff_100k\": 0.0, \"total_10\": 505.4}, {\"date\": \"2020-03-11T00:00:00\", \"positive\": 1053.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalized\": 0.0, \"death\": 27.0, \"total\": 7686, \"totalTestResults\": 7123, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 275.0, \"totalTestResultsIncrease\": 2538.0, \"ratio\": 10.908795556696404, \"positive_diff\": 275.0, \"negative_diff\": 2105.0, \"death_diff\": 0.0, \"positive_diff_100k\": 4.019334743734134, \"death_diff_100k\": 0.0, \"total_10\": 768.6}, {\"date\": \"2020-03-12T00:00:00\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalized\": 0.0, \"death\": 36.0, \"total\": 10029, \"totalTestResults\": 9356, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 2233.0, \"ratio\": 9.756655510469434, \"positive_diff\": 262.0, \"negative_diff\": 1716.0, \"death_diff\": 5.0, \"positive_diff_100k\": 5.624305797598059, \"death_diff_100k\": 0.06566080442627362, \"total_10\": 1002.9}, {\"date\": \"2020-03-13T00:00:00\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalized\": 0.0, \"death\": 39.0, \"total\": 16665, \"totalTestResults\": 15535, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"positive_diff\": 607.0, \"negative_diff\": 5480.0, \"death_diff\": 2.0, \"positive_diff_100k\": 8.020087301519814, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 1666.5000000000005}, {\"date\": \"2020-03-14T00:00:00\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalized\": 0.0, \"death\": 49.0, \"total\": 20788, \"totalTestResults\": 19552, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"positive_diff\": 528.0, \"negative_diff\": 3489.0, \"death_diff\": 8.0, \"positive_diff_100k\": 7.522230821043739, \"death_diff_100k\": 0.08597981173139377, \"total_10\": 2078.8}, {\"date\": \"2020-03-15T00:00:00\", \"positive\": 3173.0, \"negative\": 22548.0, \"pending\": 2242.0, \"hospitalized\": 0.0, \"death\": 60.0, \"total\": 27963, \"totalTestResults\": 25721, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5446.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6169.0, \"ratio\": 9.136862838236842, \"positive_diff\": 723.0, \"negative_diff\": 5446.0, \"death_diff\": 5.0, \"positive_diff_100k\": 9.736170827916586, \"death_diff_100k\": 0.05531095133927636, \"total_10\": 2796.3}, {\"date\": \"2020-03-16T00:00:00\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalized\": 0.0, \"death\": 71.0, \"total\": 41814, \"totalTestResults\": 40123, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13524.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14361.0, \"ratio\": 10.964166847366664, \"positive_diff\": 837.0, \"negative_diff\": 13524.0, \"death_diff\": 8.0, \"positive_diff_100k\": 12.105280688881605, \"death_diff_100k\": 0.06421091573267143, \"total_10\": 4181.400000000001}, {\"date\": \"2020-03-17T00:00:00\", \"positive\": 5723.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalized\": 0.0, \"death\": 90.0, \"total\": 55014, \"totalTestResults\": 53327, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1704.0, \"totalTestResultsIncrease\": 13204.0, \"ratio\": 9.739987531671058, \"positive_diff\": 1704.0, \"negative_diff\": 10201.0, \"death_diff\": 17.0, \"positive_diff_100k\": 20.726028204722564, \"death_diff_100k\": 0.16989358409385108, \"total_10\": 5501.4}, {\"date\": \"2020-03-18T00:00:00\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2538.0, \"hospitalized\": 0.0, \"death\": 112.0, \"total\": 76493, \"totalTestResults\": 73955, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2007.0, \"totalTestResultsIncrease\": 20628.0, \"ratio\": 8.606150771718424, \"positive_diff\": 2007.0, \"negative_diff\": 17217.0, \"death_diff\": 18.0, \"positive_diff_100k\": 27.52218681129882, \"death_diff_100k\": 0.1743011549896832, \"total_10\": 7649.3}, {\"date\": \"2020-03-19T00:00:00\", \"positive\": 11719.0, \"negative\": 89119.0, \"pending\": 3025.0, \"hospitalized\": 0.0, \"death\": 160.0, \"total\": 103863, \"totalTestResults\": 100838, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22894.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26883.0, \"ratio\": 8.455627941743812, \"positive_diff\": 3989.0, \"negative_diff\": 22894.0, \"death_diff\": 41.0, \"positive_diff_100k\": 41.032245654529625, \"death_diff_100k\": 0.4291152914332691, \"total_10\": 10386.3}, {\"date\": \"2020-03-20T00:00:00\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3336.0, \"hospitalized\": 0.0, \"death\": 219.0, \"total\": 138516, \"totalTestResults\": 135180, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29028.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34342.0, \"ratio\": 8.864709945630347, \"positive_diff\": 5314.0, \"negative_diff\": 29028.0, \"death_diff\": 51.0, \"positive_diff_100k\": 59.0118447572064, \"death_diff_100k\": 0.6044213757021897, \"total_10\": 13851.600000000002}, {\"date\": \"2020-03-21T00:00:00\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3477.0, \"hospitalized\": 1964.0, \"death\": 272.0, \"total\": 182583, \"totalTestResults\": 179106, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.859323100114171, \"positive_diff\": 6164.0, \"negative_diff\": 37762.0, \"death_diff\": 52.0, \"positive_diff_100k\": 60.67771884300287, \"death_diff_100k\": 0.6328191310140254, \"total_10\": 18258.300000000003}, {\"date\": \"2020-03-22T00:00:00\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalized\": 2554.0, \"death\": 398.0, \"total\": 228184, \"totalTestResults\": 225342, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"positive_diff\": 8682.0, \"negative_diff\": 37554.0, \"death_diff\": 125.0, \"positive_diff_100k\": 90.81234272352934, \"death_diff_100k\": 1.1021669130972207, \"total_10\": 22818.399999999994}, {\"date\": \"2020-03-23T00:00:00\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalized\": 3325.0, \"death\": 471.0, \"total\": 294044, \"totalTestResults\": 279473, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"positive_diff\": 10273.0, \"negative_diff\": 43858.0, \"death_diff\": 69.0, \"positive_diff_100k\": 104.19599820021804, \"death_diff_100k\": 1.6099082141188321, \"total_10\": 29404.40000000001}, {\"date\": \"2020-03-24T00:00:00\", \"positive\": 51954.0, \"negative\": 292758.0, \"pending\": 14433.0, \"hospitalized\": 4468.0, \"death\": 675.0, \"total\": 359145, \"totalTestResults\": 344712, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55437.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65239.0, \"ratio\": 8.656619247575962, \"positive_diff\": 9802.0, \"negative_diff\": 55437.0, \"death_diff\": 202.0, \"positive_diff_100k\": 104.756732138267, \"death_diff_100k\": 2.0762435813455027, \"total_10\": 35914.50000000001}, {\"date\": \"2020-03-25T00:00:00\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalized\": 6136.0, \"death\": 900.0, \"total\": 472767, \"totalTestResults\": 421532, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64846.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76820.0, \"ratio\": 7.660441721334681, \"positive_diff\": 11974.0, \"negative_diff\": 64791.0, \"death_diff\": 222.0, \"positive_diff_100k\": 139.8860795679674, \"death_diff_100k\": 2.562649982546122, \"total_10\": 47276.70000000001}, {\"date\": \"2020-03-26T00:00:00\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalized\": 10131.0, \"death\": 1163.0, \"total\": 579589, \"totalTestResults\": 519338, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"positive_diff\": 16807.0, \"negative_diff\": 80999.0, \"death_diff\": 264.0, \"positive_diff_100k\": 188.31706349607987, \"death_diff_100k\": 3.0801997221433237, \"total_10\": 57958.90000000001}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.VConcatChart(...)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "base = alt.Chart(\n",
    "    daily_totals\n",
    ").mark_bar(size=15).encode(\n",
    "    alt.X('date', axis=alt.Axis(title='')\n",
    "    )\n",
    ")\n",
    "\n",
    "cumulative = base.encode(alt.Y('positive', title = 'Cumulative cases'))\n",
    "cumulative_deaths = base.encode(alt.Y('death', title = 'Cumulative deaths'))\n",
    "rates = base.encode(alt.Y('positive_diff', title='Daily cases'))\n",
    "rates_deaths = base.encode(alt.Y('death_diff', title='Daily deaths'))\n",
    "chart = alt.vconcat(\n",
    "    cumulative | rates, cumulative_deaths | rates_deaths,\n",
    "    title='Cumulative Covid-19 cases in the U.S.'\n",
    ").configure_title(\n",
    "    anchor='middle'\n",
    ")\n",
    "display(chart)\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Total tests and positives per 100k population"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Most recent test date 2020-03-26 00:00:00\n",
      "56 states/territories have data on this date.\n"
     ]
    }
   ],
   "source": [
    "most_recent_test_date = data_df['date'].max()\n",
    "most_recent_df = data_df[data_df['date'] == most_recent_test_date].set_index('state')\n",
    "print(\"Most recent test date\", most_recent_test_date)\n",
    "print(len(most_recent_df), \"states/territories have data on this date.\")\n",
    "\n",
    "most_recent_df['total/100k'] = (most_recent_df['total'] / pop_df['Population']) * 100000\n",
    "most_recent_df['positive/100k'] = (most_recent_df['positive'] / pop_df['Population']) * 100000\n",
    "most_recent_df = most_recent_df.reset_index()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 47,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-082e2e3156bc46868daf6ffe834160f4\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-082e2e3156bc46868daf6ffe834160f4\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"mark\": \"bar\", \"encoding\": {\"x\": {\"type\": \"nominal\", \"field\": \"state\", \"sort\": null}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"COVID-19 Tests/100k, Positive Cases/100k\"}, \"field\": \"total/100k\"}}, \"title\": \"Cases per 100k\"}, {\"mark\": {\"type\": \"point\", \"color\": \"orange\", \"filled\": true, \"opacity\": 1, \"size\": 100}, \"encoding\": {\"x\": {\"type\": \"nominal\", \"field\": \"state\", \"sort\": null}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive/100k\"}}, \"title\": \"Cases per 100k\"}], \"data\": {\"name\": \"data-849d8d0ef67b3a1518bc0930c3d4f00e\"}, \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-849d8d0ef67b3a1518bc0930c3d4f00e\": [{\"state\": \"NY\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalized\": 6844.0, \"death\": 385.0, \"total\": 122104, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 122104, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"total/100k\": 627.669144996127, \"positive/100k\": 191.52277570157977}, {\"state\": \"WA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 132.0, \"total\": 34292, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 34292, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"total/100k\": 450.328061077155, \"positive/100k\": 33.88097508395719}, {\"state\": \"LA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalized\": 676.0, \"death\": 83.0, \"total\": 18029, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18029, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"total/100k\": 387.8210133638961, \"positive/100k\": 49.58275199976596}, {\"state\": \"NM\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 112.0, \"negative\": 7681.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 7793, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7793, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 939.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 951.0, \"ratio\": 0.014371872192993712, \"total/100k\": 371.6564393186092, \"positive/100k\": 5.341398845590175}, {\"state\": \"MA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalized\": 219.0, \"death\": 25.0, \"total\": 23621, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 23621, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"total/100k\": 339.8948097439486, \"positive/100k\": 34.77946552436915}, {\"state\": \"VT\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 158.0, \"negative\": 1850.0, \"pending\": null, \"hospitalized\": null, \"death\": 9.0, \"total\": 2008, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2008, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 261.0, \"positiveIncrease\": 35.0, \"totalTestResultsIncrease\": 296.0, \"ratio\": 0.07868525896414343, \"total/100k\": 321.8005445608817, \"positive/100k\": 25.320959183575354}, {\"state\": \"HI\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 95.0, \"negative\": 4357.0, \"pending\": null, \"hospitalized\": 5.0, \"death\": null, \"total\": 4452, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4452, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": -1.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 5.0, \"ratio\": 0.02133872416891285, \"total/100k\": 314.43520318220857, \"positive/100k\": 6.709646069701217}, {\"state\": \"NH\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 137.0, \"negative\": 3001.0, \"pending\": 712.0, \"hospitalized\": 19.0, \"death\": 1.0, \"total\": 3850, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3138, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 645.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 674.0, \"ratio\": 0.03558441558441559, \"total/100k\": 283.14840433003775, \"positive/100k\": 10.075670491744201}, {\"state\": \"ND\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 52.0, \"negative\": 2039.0, \"pending\": null, \"hospitalized\": 10.0, \"death\": 0.0, \"total\": 2091, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2091, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 305.0, \"positiveIncrease\": 13.0, \"totalTestResultsIncrease\": 318.0, \"ratio\": 0.024868483978957436, \"total/100k\": 274.3871233574171, \"positive/100k\": 6.823591781246145}, {\"state\": \"ME\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 155.0, \"negative\": 3394.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3549, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3549, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 217.0, \"positiveIncrease\": 6.0, \"totalTestResultsIncrease\": 223.0, \"ratio\": 0.04367427444350521, \"total/100k\": 264.02085385341, \"positive/100k\": 11.53091923000241}, {\"state\": \"DC\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 231.0, \"negative\": 1626.0, \"pending\": 1.0, \"hospitalized\": null, \"death\": 3.0, \"total\": 1858, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1857, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 203.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 251.0, \"ratio\": 0.12432723358449946, \"total/100k\": 263.2664020777925, \"positive/100k\": 32.731183466076466}, {\"state\": \"AK\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 59.0, \"negative\": 1801.0, \"pending\": null, \"hospitalized\": 3.0, \"death\": 1.0, \"total\": 1860, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1860, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 152.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 169.0, \"ratio\": 0.031720430107526884, \"total/100k\": 254.256402545298, \"positive/100k\": 8.065122446329344}, {\"state\": \"SD\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 46.0, \"negative\": 1973.0, \"pending\": 125.0, \"hospitalized\": null, \"death\": 1.0, \"total\": 2144, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2019, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1154.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 1159.0, \"ratio\": 0.021455223880597014, \"total/100k\": 242.35326832146623, \"positive/100k\": 5.199743630031459}, {\"state\": \"UT\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 402.0, \"negative\": 7308.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 7710, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7710, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 817.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 873.0, \"ratio\": 0.052140077821011675, \"total/100k\": 240.48973816874707, \"positive/100k\": 12.539153663273193}, {\"state\": \"NJ\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalized\": null, \"death\": 81.0, \"total\": 20537, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20537, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"total/100k\": 231.2154997810225, \"positive/100k\": 77.4133406288314}, {\"state\": \"MN\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 346.0, \"negative\": 12604.0, \"pending\": null, \"hospitalized\": 41.0, \"death\": 2.0, \"total\": 12950, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12950, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 1416.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 1475.0, \"ratio\": 0.026718146718146717, \"total/100k\": 229.62491169636598, \"positive/100k\": 6.135152080844992}, {\"state\": \"TN\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 957.0, \"negative\": 13952.0, \"pending\": null, \"hospitalized\": 76.0, \"death\": 3.0, \"total\": 14909, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 14909, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 23.0, \"negativeIncrease\": 2940.0, \"positiveIncrease\": 173.0, \"totalTestResultsIncrease\": 3113.0, \"ratio\": 0.06418941578912067, \"total/100k\": 218.18557525390105, \"positive/100k\": 14.005204609161131}, {\"state\": \"WI\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 707.0, \"negative\": 11583.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 12290, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12290, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1494.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 1616.0, \"ratio\": 0.05752644426362897, \"total/100k\": 211.08010842201045, \"positive/100k\": 12.142688092299544}, {\"state\": \"MT\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 71.0, \"negative\": 2128.0, \"pending\": null, \"hospitalized\": 1.0, \"death\": null, \"total\": 2199, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2199, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 180.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 198.0, \"ratio\": 0.03228740336516599, \"total/100k\": 205.74899558187016, \"positive/100k\": 6.643100812329595}, {\"state\": \"CA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalized\": null, \"death\": 65.0, \"total\": 77786, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 20386, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"total/100k\": 196.86566356947318, \"positive/100k\": 7.607772410071688}, {\"state\": \"WY\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 53.0, \"negative\": 1052.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1105, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1105, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 98.0, \"positiveIncrease\": 9.0, \"totalTestResultsIncrease\": 107.0, \"ratio\": 0.04796380090497738, \"total/100k\": 190.92575666209942, \"positive/100k\": 9.157524980173093}, {\"state\": \"CT\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalized\": 125.0, \"death\": 21.0, \"total\": 6637, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6637, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"total/100k\": 186.15612151279828, \"positive/100k\": 28.384811657518735}, {\"state\": \"OR\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalized\": 90.0, \"death\": 11.0, \"total\": 7280, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7280, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"total/100k\": 172.60440847781643, \"positive/100k\": 7.752972743440381}, {\"state\": \"NV\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalized\": null, \"death\": 10.0, \"total\": 5117, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 5117, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"total/100k\": 166.12794936360368, \"positive/100k\": 13.6356729983806}, {\"state\": \"RI\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 165.0, \"negative\": 1339.0, \"pending\": 181.0, \"hospitalized\": 23.0, \"death\": null, \"total\": 1685, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1504, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 196.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.09792284866468842, \"total/100k\": 159.05814920503965, \"positive/100k\": 15.575427073490529}, {\"state\": \"OH\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalized\": 223.0, \"death\": 15.0, \"total\": 17316, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 17316, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"total/100k\": 148.13800891428767, \"positive/100k\": 7.417166419998118}, {\"state\": \"PA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalized\": null, \"death\": 16.0, \"total\": 18128, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 18128, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"total/100k\": 141.60299622191522, \"positive/100k\": 13.177639818312608}, {\"state\": \"CO\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalized\": 148.0, \"death\": 19.0, \"total\": 8064, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8064, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"total/100k\": 140.030728965523, \"positive/100k\": 18.858305016934274}, {\"state\": \"IL\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalized\": null, \"death\": 26.0, \"total\": 16631, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 16631, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"total/100k\": 131.2439624896848, \"positive/100k\": 20.02869200882809}, {\"state\": \"FL\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalized\": 406.0, \"death\": 28.0, \"total\": 27539, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 26096, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"total/100k\": 128.22114359627366, \"positive/100k\": 10.964842338836721}, {\"state\": \"NC\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 636.0, \"negative\": 12274.0, \"pending\": null, \"hospitalized\": 29.0, \"death\": 2.0, \"total\": 12910, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 12910, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2289.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 2421.0, \"ratio\": 0.04926413632842758, \"total/100k\": 123.09207287050715, \"positive/100k\": 6.064024658841405}, {\"state\": \"ID\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 123.0, \"negative\": 2065.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 2188, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2188, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 178.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 228.0, \"ratio\": 0.05621572212065813, \"total/100k\": 122.09378566067636, \"positive/100k\": 6.863590327359778}, {\"state\": \"KS\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 168.0, \"negative\": 2869.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 3037, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3037, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 509.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 0.05531774777741192, \"total/100k\": 104.24554304822617, \"positive/100k\": 5.766628657261112}, {\"state\": \"MI\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalized\": null, \"death\": 60.0, \"total\": 9406, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 9406, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"total/100k\": 94.18378574961072, \"positive/100k\": 28.597585807026178}, {\"state\": \"MS\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 485.0, \"negative\": 2291.0, \"pending\": null, \"hospitalized\": 150.0, \"death\": 6.0, \"total\": 2776, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2776, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 725.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 833.0, \"ratio\": 0.17471181556195967, \"total/100k\": 93.27489987900472, \"positive/100k\": 16.296227104220925}, {\"state\": \"IA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 179.0, \"negative\": 2578.0, \"pending\": null, \"hospitalized\": 46.0, \"death\": 1.0, \"total\": 2757, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2757, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 34.0, \"ratio\": 0.06492564381574174, \"total/100k\": 87.38316424041305, \"positive/100k\": 5.673408196965519}, {\"state\": \"NE\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 73.0, \"negative\": 1584.0, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 1657, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1657, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 280.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 292.0, \"ratio\": 0.044055522027761015, \"total/100k\": 85.6592818061133, \"positive/100k\": 3.7737643764914126}, {\"state\": \"GA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalized\": 473.0, \"death\": 48.0, \"total\": 8926, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 8926, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"total/100k\": 84.06936410087458, \"positive/100k\": 14.363183985417177}, {\"state\": \"AL\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 506.0, \"negative\": 3593.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 4099, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4099, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1064.0, \"positiveIncrease\": 223.0, \"totalTestResultsIncrease\": 1287.0, \"ratio\": 0.12344474262015126, \"total/100k\": 83.59872205515394, \"positive/100k\": 10.319822727472042}, {\"state\": \"TX\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalized\": null, \"death\": 18.0, \"total\": 21424, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 21424, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"total/100k\": 73.88635647939098, \"positive/100k\": 4.8144769251880986}, {\"state\": \"KY\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 198.0, \"negative\": 3102.0, \"pending\": null, \"hospitalized\": null, \"death\": 4.0, \"total\": 3300, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 3300, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 237.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 278.0, \"ratio\": 0.06, \"total/100k\": 73.86395557597882, \"positive/100k\": 4.431837334558729}, {\"state\": \"VA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalized\": 65.0, \"death\": 13.0, \"total\": 6189, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 6189, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"total/100k\": 72.50877187432891, \"positive/100k\": 5.389244637613718}, {\"state\": \"IN\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalized\": null, \"death\": 17.0, \"total\": 4651, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 4651, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"total/100k\": 69.0856907655559, \"positive/100k\": 9.58079349468578}, {\"state\": \"WV\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 51.0, \"negative\": 1031.0, \"pending\": 19.0, \"hospitalized\": 1.0, \"death\": 0.0, \"total\": 1101, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1082, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 272.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 284.0, \"ratio\": 0.04632152588555858, \"total/100k\": 61.60657181530115, \"positive/100k\": 2.853710411062996}, {\"state\": \"AR\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 335.0, \"negative\": 1504.0, \"pending\": 0.0, \"hospitalized\": 41.0, \"death\": 3.0, \"total\": 1839, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1839, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 67.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 122.0, \"ratio\": 0.1821642196846112, \"total/100k\": 60.93792714951993, \"positive/100k\": 11.100709948389982}, {\"state\": \"SC\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 456.0, \"negative\": 2307.0, \"pending\": null, \"hospitalized\": 109.0, \"death\": 9.0, \"total\": 2763, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 2763, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 4.0, \"positiveIncrease\": 32.0, \"totalTestResultsIncrease\": 36.0, \"ratio\": 0.16503800217155265, \"total/100k\": 53.66388577807973, \"positive/100k\": 8.856580497576676}, {\"state\": \"OK\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 248.0, \"negative\": 958.0, \"pending\": null, \"hospitalized\": 86.0, \"death\": 7.0, \"total\": 1206, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 1206, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 153.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.20563847429519072, \"total/100k\": 30.47785793729598, \"positive/100k\": 6.2674202060111135}, {\"state\": \"DE\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 130.0, \"negative\": 36.0, \"pending\": null, \"hospitalized\": 13.0, \"death\": 1.0, \"total\": 166, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 166, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 15.0, \"ratio\": 0.7831325301204819, \"total/100k\": 17.047251695482682, \"positive/100k\": 13.35025735188403}, {\"state\": \"MO\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 502.0, \"negative\": 369.0, \"pending\": null, \"hospitalized\": null, \"death\": 8.0, \"total\": 871, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 871, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 146.0, \"totalTestResultsIncrease\": 146.0, \"ratio\": 0.5763490241102182, \"total/100k\": 14.191612512603, \"positive/100k\": 8.1793220221891}, {\"state\": \"AZ\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 577.0, \"negative\": 347.0, \"pending\": 33.0, \"hospitalized\": 66.0, \"death\": 8.0, \"total\": 957, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 924, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 24.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 151.0, \"ratio\": 0.6029258098223615, \"total/100k\": 13.147921536171827, \"positive/100k\": 7.927221239677268}, {\"state\": \"MD\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 580.0, \"negative\": 94.0, \"pending\": null, \"hospitalized\": 132.0, \"death\": 4.0, \"total\": 674, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 674, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 132.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 157.0, \"totalTestResultsIncrease\": 157.0, \"ratio\": 0.8605341246290801, \"total/100k\": 11.1484564184674, \"positive/100k\": 9.593627185031295}, {\"state\": \"AS\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 0.0, \"negative\": null, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 0, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 0, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": null, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"GU\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 45.0, \"negative\": 263.0, \"pending\": null, \"hospitalized\": 11.0, \"death\": 1.0, \"total\": 308, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 308, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 30.0, \"positiveIncrease\": 8.0, \"totalTestResultsIncrease\": 38.0, \"ratio\": 0.1461038961038961, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"MP\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 0.0, \"negative\": null, \"pending\": null, \"hospitalized\": null, \"death\": 0.0, \"total\": 0, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 0, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": null, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"PR\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 64.0, \"negative\": 377.0, \"pending\": 335.0, \"hospitalized\": null, \"death\": 2.0, \"total\": 776, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 441, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 60.0, \"positiveIncrease\": 13.0, \"totalTestResultsIncrease\": 73.0, \"ratio\": 0.08247422680412371, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"VI\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 17.0, \"negative\": 55.0, \"pending\": 2.0, \"hospitalized\": null, \"death\": 0.0, \"total\": 74, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 72, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.22972972972972974, \"total/100k\": null, \"positive/100k\": null}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.LayerChart(...)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "viz_df = most_recent_df.sort_values('total/100k', ascending=False)\n",
    "chart = alt.Chart(viz_df, title=\"Cases per 100k\").encode(alt.X('state', sort=None))\n",
    "tests = chart.mark_bar().encode(alt.Y('total/100k', axis=alt.Axis(title='COVID-19 Tests/100k, Positive Cases/100k')))\n",
    "positives = chart.mark_point(color='orange', filled=True, size=100, opacity=1).encode(alt.Y('positive/100k'))\n",
    "display(alt.layer(tests, positives))\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Counts and rates by state\n",
    "\n",
    "Taking a look at the three states with the highest per-capita incidence of covid-19. The red and yellow curves represent the total tests and total positive tests respectively. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-8a6e78b521a74f0992710de5f1d08a75\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-8a6e78b521a74f0992710de5f1d08a75\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"hconcat\": [{\"layer\": [{\"mark\": {\"type\": \"bar\", \"size\": 10}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Daily positive\"}, \"field\": \"positive_diff\"}}, \"height\": 150, \"title\": \"NY\", \"width\": 250}, {\"layer\": [{\"mark\": {\"type\": \"line\", \"color\": \"red\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Total/10\"}, \"field\": \"total_10\"}}, \"height\": 150, \"title\": \"NY\", \"width\": 250}, {\"mark\": {\"type\": \"line\", \"color\": \"orange\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Positive\"}, \"field\": \"positive\"}}, \"height\": 150, \"title\": \"NY\", \"width\": 250}]}], \"data\": {\"name\": \"data-f72d12bb6e2e89d808f3c418eaaddb1f\"}, \"resolve\": {\"scale\": {\"y\": \"independent\"}}}, {\"layer\": [{\"mark\": {\"type\": \"bar\", \"size\": 10}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Daily positive\"}, \"field\": \"positive_diff\"}}, \"height\": 150, \"title\": \"WA\", \"width\": 250}, {\"layer\": [{\"mark\": {\"type\": \"line\", \"color\": \"red\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Total/10\"}, \"field\": \"total_10\"}}, \"height\": 150, \"title\": \"WA\", \"width\": 250}, {\"mark\": {\"type\": \"line\", \"color\": \"orange\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Positive\"}, \"field\": \"positive\"}}, \"height\": 150, \"title\": \"WA\", \"width\": 250}]}], \"data\": {\"name\": \"data-08990657b63f8a57dccf2ee019908e4c\"}, \"resolve\": {\"scale\": {\"y\": \"independent\"}}}, {\"layer\": [{\"mark\": {\"type\": \"bar\", \"size\": 10}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Daily positive\"}, \"field\": \"positive_diff\"}}, \"height\": 150, \"title\": \"NM\", \"width\": 250}, {\"layer\": [{\"mark\": {\"type\": \"line\", \"color\": \"red\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Total/10\"}, \"field\": \"total_10\"}}, \"height\": 150, \"title\": \"NM\", \"width\": 250}, {\"mark\": {\"type\": \"line\", \"color\": \"orange\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Positive\"}, \"field\": \"positive\"}}, \"height\": 150, \"title\": \"NM\", \"width\": 250}]}], \"data\": {\"name\": \"data-dc6f95fb06dfe93f61c59dfb4bb13e4c\"}, \"resolve\": {\"scale\": {\"y\": \"independent\"}}}], \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-f72d12bb6e2e89d808f3c418eaaddb1f\": [{\"state\": \"NY\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalized\": 6844.0, \"death\": 385.0, \"total\": 122104, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 122104, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"positive_diff\": 6447.0, \"negative_diff\": 12178.0, \"death_diff\": 100.0, \"positive_diff_100k\": 33.140462047025736, \"death_diff_100k\": 0.5140447036920387, \"total_10\": 12210.4}, {\"state\": \"NY\", \"date\": \"2020-03-25T00:00:00\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalized\": 3805.0, \"death\": 285.0, \"total\": 103479, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 103479, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"positive_diff\": 5146.0, \"negative_diff\": 7063.0, \"death_diff\": 75.0, \"positive_diff_100k\": 26.452740451992312, \"death_diff_100k\": 0.38553352776902905, \"total_10\": 10347.9}, {\"state\": \"NY\", \"date\": \"2020-03-24T00:00:00\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalized\": 3234.0, \"death\": 210.0, \"total\": 91270, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 91270, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"positive_diff\": 4790.0, \"negative_diff\": 8191.0, \"death_diff\": 96.0, \"positive_diff_100k\": 24.622741306848656, \"death_diff_100k\": 0.49348291554435714, \"total_10\": 9127.0}, {\"state\": \"NY\", \"date\": \"2020-03-23T00:00:00\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalized\": 2635.0, \"death\": 114.0, \"total\": 78289, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 78289, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"positive_diff\": 5707.0, \"negative_diff\": 11181.0, \"death_diff\": 0.0, \"positive_diff_100k\": 29.336531239704644, \"death_diff_100k\": 0.0, \"total_10\": 7828.9}, {\"state\": \"NY\", \"date\": \"2020-03-22T00:00:00\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalized\": 1974.0, \"death\": 114.0, \"total\": 61401, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 61401, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"positive_diff\": 4812.0, \"negative_diff\": 11152.0, \"death_diff\": 70.0, \"positive_diff_100k\": 24.735831141660903, \"death_diff_100k\": 0.3598312925844271, \"total_10\": 6140.1}, {\"state\": \"NY\", \"date\": \"2020-03-21T00:00:00\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalized\": 1603.0, \"death\": 44.0, \"total\": 45437, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 45437, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"positive_diff\": 3254.0, \"negative_diff\": 9756.0, \"death_diff\": 9.0, \"positive_diff_100k\": 16.72701465813894, \"death_diff_100k\": 0.04626402333228348, \"total_10\": 4543.7}, {\"state\": \"NY\", \"date\": \"2020-03-20T00:00:00\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalized\": null, \"death\": 35.0, \"total\": 32427, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 32427, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"positive_diff\": 2950.0, \"negative_diff\": 7193.0, \"death_diff\": 23.0, \"positive_diff_100k\": 15.16431875891514, \"death_diff_100k\": 0.11823028184916891, \"total_10\": 3242.7}, {\"state\": \"NY\", \"date\": \"2020-03-19T00:00:00\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 22284, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 22284, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"positive_diff\": 1770.0, \"negative_diff\": 5917.0, \"death_diff\": 0.0, \"positive_diff_100k\": 9.098591255349085, \"death_diff_100k\": 0.0, \"total_10\": 2228.4}, {\"state\": \"NY\", \"date\": \"2020-03-18T00:00:00\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalized\": null, \"death\": 12.0, \"total\": 14597, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14597, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"positive_diff\": 682.0, \"negative_diff\": 6709.0, \"death_diff\": 5.0, \"positive_diff_100k\": 3.505784879179704, \"death_diff_100k\": 0.02570223518460193, \"total_10\": 1459.7}, {\"state\": \"NY\", \"date\": \"2020-03-17T00:00:00\", \"positive\": 1700.0, \"negative\": 5506.0, \"pending\": null, \"hospitalized\": null, \"death\": 7.0, \"total\": 7206, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 7206, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 963.0, \"positiveIncrease\": 750.0, \"totalTestResultsIncrease\": 1713.0, \"ratio\": 0.23591451568137664, \"positive_diff\": 750.0, \"negative_diff\": 963.0, \"death_diff\": 0.0, \"positive_diff_100k\": 3.85533527769029, \"death_diff_100k\": 0.0, \"total_10\": 720.6}, {\"state\": \"NY\", \"date\": \"2020-03-16T00:00:00\", \"positive\": 950.0, \"negative\": 4543.0, \"pending\": null, \"hospitalized\": null, \"death\": 7.0, \"total\": 5493, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 5493, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 221.0, \"ratio\": 0.17294738758419806, \"positive_diff\": 221.0, \"negative_diff\": 0.0, \"death_diff\": 4.0, \"positive_diff_100k\": 1.1360387951594055, \"death_diff_100k\": 0.020561788147681545, \"total_10\": 549.3}, {\"state\": \"NY\", \"date\": \"2020-03-15T00:00:00\", \"positive\": 729.0, \"negative\": 4543.0, \"pending\": null, \"hospitalized\": null, \"death\": 3.0, \"total\": 5272, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 5272, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1764.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 1969.0, \"ratio\": 0.13827769347496208, \"positive_diff\": 205.0, \"negative_diff\": 1764.0, \"death_diff\": null, \"positive_diff_100k\": 1.0537916425686793, \"death_diff_100k\": null, \"total_10\": 527.2}, {\"state\": \"NY\", \"date\": \"2020-03-14T00:00:00\", \"positive\": 524.0, \"negative\": 2779.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3303, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 3303, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 103.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.15864365728125945, \"positive_diff\": 103.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.5294660448027999, \"death_diff_100k\": null, \"total_10\": 330.3}, {\"state\": \"NY\", \"date\": \"2020-03-13T00:00:00\", \"positive\": 421.0, \"negative\": 2779.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3200, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 3200, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2687.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 2892.0, \"ratio\": 0.1315625, \"positive_diff\": 205.0, \"negative_diff\": 2687.0, \"death_diff\": null, \"positive_diff_100k\": 1.0537916425686793, \"death_diff_100k\": null, \"total_10\": 320.0}, {\"state\": \"NY\", \"date\": \"2020-03-12T00:00:00\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 308, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 308, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.7012987012987013, \"positive_diff\": 0.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 30.8}, {\"state\": \"NY\", \"date\": \"2020-03-11T00:00:00\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 308, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 308, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.7012987012987013, \"positive_diff\": 43.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.22103922258757666, \"death_diff_100k\": null, \"total_10\": 30.8}, {\"state\": \"NY\", \"date\": \"2020-03-10T00:00:00\", \"positive\": 173.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 265, \"dateChecked\": \"2020-03-10T20:00:00Z\", \"totalTestResults\": 265, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.6528301886792452, \"positive_diff\": 31.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.15935385814453198, \"death_diff_100k\": null, \"total_10\": 26.5}, {\"state\": \"NY\", \"date\": \"2020-03-09T00:00:00\", \"positive\": 142.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 234, \"dateChecked\": \"2020-03-09T20:00:00Z\", \"totalTestResults\": 234, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 37.0, \"ratio\": 0.6068376068376068, \"positive_diff\": 37.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.19019654036605432, \"death_diff_100k\": null, \"total_10\": 23.4}, {\"state\": \"NY\", \"date\": \"2020-03-08T00:00:00\", \"positive\": 105.0, \"negative\": 92.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 197, \"dateChecked\": \"2020-03-08T20:00:00Z\", \"totalTestResults\": 197, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 29.0, \"ratio\": 0.5329949238578681, \"positive_diff\": 29.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.14907296407069123, \"death_diff_100k\": null, \"total_10\": 19.7}, {\"state\": \"NY\", \"date\": \"2020-03-07T00:00:00\", \"positive\": 76.0, \"negative\": 92.0, \"pending\": 236.0, \"hospitalized\": null, \"death\": null, \"total\": 404, \"dateChecked\": \"2020-03-07T21:00:00Z\", \"totalTestResults\": 168, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.18811881188118812, \"positive_diff\": 43.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.22103922258757666, \"death_diff_100k\": null, \"total_10\": 40.4}, {\"state\": \"NY\", \"date\": \"2020-03-06T00:00:00\", \"positive\": 33.0, \"negative\": 92.0, \"pending\": 236.0, \"hospitalized\": null, \"death\": null, \"total\": 361, \"dateChecked\": \"2020-03-06T21:00:00Z\", \"totalTestResults\": 125, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 16.0, \"positiveIncrease\": 11.0, \"totalTestResultsIncrease\": 27.0, \"ratio\": 0.09141274238227147, \"positive_diff\": 11.0, \"negative_diff\": 16.0, \"death_diff\": null, \"positive_diff_100k\": 0.05654491740612426, \"death_diff_100k\": null, \"total_10\": 36.1}, {\"state\": \"NY\", \"date\": \"2020-03-05T00:00:00\", \"positive\": 22.0, \"negative\": 76.0, \"pending\": 24.0, \"hospitalized\": null, \"death\": null, \"total\": 122, \"dateChecked\": \"2020-03-05T21:00:00Z\", \"totalTestResults\": 98, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 28.0, \"positiveIncrease\": 16.0, \"totalTestResultsIncrease\": 44.0, \"ratio\": 0.18032786885245902, \"positive_diff\": 16.0, \"negative_diff\": 28.0, \"death_diff\": null, \"positive_diff_100k\": 0.08224715259072618, \"death_diff_100k\": null, \"total_10\": 12.2}, {\"state\": \"NY\", \"date\": \"2020-03-04T00:00:00\", \"positive\": 6.0, \"negative\": 48.0, \"pending\": 24.0, \"hospitalized\": null, \"death\": null, \"total\": 78, \"dateChecked\": \"2020-03-04T21:00:00Z\", \"totalTestResults\": 54, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": 0.07692307692307693, \"positive_diff\": null, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": null, \"death_diff_100k\": null, \"total_10\": 7.8}], \"data-08990657b63f8a57dccf2ee019908e4c\": [{\"state\": \"WA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 132.0, \"total\": 34292, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 34292, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"positive_diff\": 111.0, \"negative_diff\": 0.0, \"death_diff\": 9.0, \"positive_diff_100k\": 1.4576698582632743, \"death_diff_100k\": 0.11818944796729251, \"total_10\": 3429.2}, {\"state\": \"WA\", \"date\": \"2020-03-25T00:00:00\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 123.0, \"total\": 34181, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 34181, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"positive_diff\": 248.0, \"negative_diff\": 0.0, \"death_diff\": 13.0, \"positive_diff_100k\": 3.2567758995431713, \"death_diff_100k\": 0.1707180915083114, \"total_10\": 3418.1}, {\"state\": \"WA\", \"date\": \"2020-03-24T00:00:00\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalized\": null, \"death\": 110.0, \"total\": 33933, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 33933, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"positive_diff\": 225.0, \"negative_diff\": 2833.0, \"death_diff\": 15.0, \"positive_diff_100k\": 2.954736199182313, \"death_diff_100k\": 0.19698241327882088, \"total_10\": 3393.3}, {\"state\": \"WA\", \"date\": \"2020-03-23T00:00:00\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalized\": null, \"death\": 95.0, \"total\": 30875, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 30875, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"positive_diff\": 203.0, \"negative_diff\": 3551.0, \"death_diff\": 1.0, \"positive_diff_100k\": 2.665828659706709, \"death_diff_100k\": 0.013132160885254724, \"total_10\": 3087.5}, {\"state\": \"WA\", \"date\": \"2020-03-22T00:00:00\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalized\": null, \"death\": 94.0, \"total\": 27121, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 27121, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"positive_diff\": 269.0, \"negative_diff\": 3609.0, \"death_diff\": 11.0, \"positive_diff_100k\": 3.532551278133521, \"death_diff_100k\": 0.14445376973780194, \"total_10\": 2712.1}, {\"state\": \"WA\", \"date\": \"2020-03-21T00:00:00\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalized\": null, \"death\": 83.0, \"total\": 23243, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 23243, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"positive_diff\": 148.0, \"negative_diff\": 2383.0, \"death_diff\": 9.0, \"positive_diff_100k\": 1.9435598110176993, \"death_diff_100k\": 0.11818944796729251, \"total_10\": 2324.3}, {\"state\": \"WA\", \"date\": \"2020-03-20T00:00:00\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalized\": null, \"death\": 74.0, \"total\": 20712, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 20712, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"positive_diff\": 189.0, \"negative_diff\": 3418.0, \"death_diff\": 8.0, \"positive_diff_100k\": 2.4819784073131426, \"death_diff_100k\": 0.10505728708203779, \"total_10\": 2071.2}, {\"state\": \"WA\", \"date\": \"2020-03-19T00:00:00\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalized\": null, \"death\": 66.0, \"total\": 17105, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 17105, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"positive_diff\": 175.0, \"negative_diff\": 2801.0, \"death_diff\": 14.0, \"positive_diff_100k\": 2.298128154919577, \"death_diff_100k\": 0.18385025239356614, \"total_10\": 1710.5}, {\"state\": \"WA\", \"date\": \"2020-03-18T00:00:00\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalized\": null, \"death\": 52.0, \"total\": 14129, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 14129, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"positive_diff\": 108.0, \"negative_diff\": 1535.0, \"death_diff\": 4.0, \"positive_diff_100k\": 1.41827337560751, \"death_diff_100k\": 0.052528643541018896, \"total_10\": 1412.9}, {\"state\": \"WA\", \"date\": \"2020-03-17T00:00:00\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalized\": null, \"death\": 48.0, \"total\": 12486, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 12486, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"positive_diff\": 135.0, \"negative_diff\": 2131.0, \"death_diff\": 6.0, \"positive_diff_100k\": 1.7728417195093877, \"death_diff_100k\": 0.07879296531152834, \"total_10\": 1248.6}, {\"state\": \"WA\", \"date\": \"2020-03-16T00:00:00\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalized\": null, \"death\": 42.0, \"total\": 10220, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 10220, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"positive_diff\": 127.0, \"negative_diff\": 2329.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.6677844324273499, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 1022.0}, {\"state\": \"WA\", \"date\": \"2020-03-15T00:00:00\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalized\": null, \"death\": 40.0, \"total\": 7764, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 7764, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"positive_diff\": 74.0, \"negative_diff\": 1121.0, \"death_diff\": 3.0, \"positive_diff_100k\": 0.9717799055088496, \"death_diff_100k\": 0.03939648265576417, \"total_10\": 776.4}, {\"state\": \"WA\", \"date\": \"2020-03-14T00:00:00\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalized\": null, \"death\": 37.0, \"total\": 6569, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 6569, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"positive_diff\": 111.0, \"negative_diff\": 1651.0, \"death_diff\": 6.0, \"positive_diff_100k\": 1.4576698582632743, \"death_diff_100k\": 0.07879296531152834, \"total_10\": 656.9}, {\"state\": \"WA\", \"date\": \"2020-03-13T00:00:00\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalized\": null, \"death\": 31.0, \"total\": 4807, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 4807, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"positive_diff\": 120.0, \"negative_diff\": 1313.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.575859306230567, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 480.7}, {\"state\": \"WA\", \"date\": \"2020-03-12T00:00:00\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalized\": null, \"death\": 29.0, \"total\": 3374, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 3374, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"positive_diff\": 70.0, \"negative_diff\": 862.0, \"death_diff\": 5.0, \"positive_diff_100k\": 0.9192512619678306, \"death_diff_100k\": 0.06566080442627362, \"total_10\": 337.4}, {\"state\": \"WA\", \"date\": \"2020-03-11T00:00:00\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalized\": null, \"death\": 24.0, \"total\": 2442, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 2442, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"positive_diff\": 105.0, \"negative_diff\": 1065.0, \"death_diff\": null, \"positive_diff_100k\": 1.3788768929517459, \"death_diff_100k\": null, \"total_10\": 244.2}, {\"state\": \"WA\", \"date\": \"2020-03-10T00:00:00\", \"positive\": 162.0, \"negative\": 1110.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1272, \"dateChecked\": \"2020-03-10T20:00:00Z\", \"totalTestResults\": 1272, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.12735849056603774, \"positive_diff\": 26.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.3414361830166228, \"death_diff_100k\": null, \"total_10\": 127.2}, {\"state\": \"WA\", \"date\": \"2020-03-09T00:00:00\", \"positive\": 136.0, \"negative\": 1110.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1246, \"dateChecked\": \"2020-03-09T20:00:00Z\", \"totalTestResults\": 1246, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 470.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 504.0, \"ratio\": 0.10914927768860354, \"positive_diff\": 34.0, \"negative_diff\": 470.0, \"death_diff\": null, \"positive_diff_100k\": 0.44649347009866064, \"death_diff_100k\": null, \"total_10\": 124.6}, {\"state\": \"WA\", \"date\": \"2020-03-08T00:00:00\", \"positive\": 102.0, \"negative\": 640.0, \"pending\": 60.0, \"hospitalized\": null, \"death\": null, \"total\": 802, \"dateChecked\": \"2020-03-08T20:00:00Z\", \"totalTestResults\": 742, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 270.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 270.0, \"ratio\": 0.12718204488778054, \"positive_diff\": 0.0, \"negative_diff\": 270.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 80.2}, {\"state\": \"WA\", \"date\": \"2020-03-07T00:00:00\", \"positive\": 102.0, \"negative\": 370.0, \"pending\": 66.0, \"hospitalized\": null, \"death\": null, \"total\": 538, \"dateChecked\": \"2020-03-07T21:00:00Z\", \"totalTestResults\": 472, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.1895910780669145, \"positive_diff\": 23.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.30203970036085864, \"death_diff_100k\": null, \"total_10\": 53.8}, {\"state\": \"WA\", \"date\": \"2020-03-06T00:00:00\", \"positive\": 79.0, \"negative\": 370.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 449, \"dateChecked\": \"2020-03-06T21:00:00Z\", \"totalTestResults\": 449, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 370.0, \"positiveIncrease\": 9.0, \"totalTestResultsIncrease\": 379.0, \"ratio\": 0.1759465478841871, \"positive_diff\": 9.0, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": 0.11818944796729251, \"death_diff_100k\": null, \"total_10\": 44.9}, {\"state\": \"WA\", \"date\": \"2020-03-05T00:00:00\", \"positive\": 70.0, \"negative\": null, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 70, \"dateChecked\": \"2020-03-05T21:00:00Z\", \"totalTestResults\": 70, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 1.0, \"positive_diff\": 31.0, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": 0.4070969874428964, \"death_diff_100k\": null, \"total_10\": 7.0}, {\"state\": \"WA\", \"date\": \"2020-03-04T00:00:00\", \"positive\": 39.0, \"negative\": null, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 39, \"dateChecked\": \"2020-03-04T21:00:00Z\", \"totalTestResults\": 39, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": 1.0, \"positive_diff\": null, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": null, \"death_diff_100k\": null, \"total_10\": 3.9}], \"data-dc6f95fb06dfe93f61c59dfb4bb13e4c\": [{\"state\": \"NM\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 112.0, \"negative\": 7681.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 7793, \"dateChecked\": \"2020-03-26T20:00:00Z\", \"totalTestResults\": 7793, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 939.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 951.0, \"ratio\": 0.014371872192993712, \"positive_diff\": 12.0, \"negative_diff\": 939.0, \"death_diff\": 0.0, \"positive_diff_100k\": 0.5722927334560901, \"death_diff_100k\": 0.0, \"total_10\": 779.3}, {\"state\": \"NM\", \"date\": \"2020-03-25T00:00:00\", \"positive\": 100.0, \"negative\": 6742.0, \"pending\": null, \"hospitalized\": null, \"death\": 1.0, \"total\": 6842, \"dateChecked\": \"2020-03-25T20:00:00Z\", \"totalTestResults\": 6842, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 852.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 869.0, \"ratio\": 0.014615609470914937, \"positive_diff\": 17.0, \"negative_diff\": 852.0, \"death_diff\": null, \"positive_diff_100k\": 0.8107480390627942, \"death_diff_100k\": null, \"total_10\": 684.2}, {\"state\": \"NM\", \"date\": \"2020-03-24T00:00:00\", \"positive\": 83.0, \"negative\": 5890.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 5973, \"dateChecked\": \"2020-03-24T20:00:00Z\", \"totalTestResults\": 5973, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 569.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 587.0, \"ratio\": 0.013895864724594007, \"positive_diff\": 18.0, \"negative_diff\": 569.0, \"death_diff\": null, \"positive_diff_100k\": 0.8584391001841352, \"death_diff_100k\": null, \"total_10\": 597.3}, {\"state\": \"NM\", \"date\": \"2020-03-23T00:00:00\", \"positive\": 65.0, \"negative\": 5321.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 5386, \"dateChecked\": \"2020-03-23T20:00:00Z\", \"totalTestResults\": 5386, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 599.0, \"positiveIncrease\": 8.0, \"totalTestResultsIncrease\": 607.0, \"ratio\": 0.012068325287783142, \"positive_diff\": 8.0, \"negative_diff\": 599.0, \"death_diff\": null, \"positive_diff_100k\": 0.3815284889707268, \"death_diff_100k\": null, \"total_10\": 538.6}, {\"state\": \"NM\", \"date\": \"2020-03-22T00:00:00\", \"positive\": 57.0, \"negative\": 4722.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 4779, \"dateChecked\": \"2020-03-22T20:00:00Z\", \"totalTestResults\": 4779, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 951.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 951.0, \"ratio\": 0.011927181418706842, \"positive_diff\": 0.0, \"negative_diff\": 951.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 477.9}, {\"state\": \"NM\", \"date\": \"2020-03-21T00:00:00\", \"positive\": 57.0, \"negative\": 3771.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3828, \"dateChecked\": \"2020-03-21T20:00:00Z\", \"totalTestResults\": 3828, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 14.0, \"ratio\": 0.014890282131661442, \"positive_diff\": 14.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.6676748556987718, \"death_diff_100k\": null, \"total_10\": 382.8}, {\"state\": \"NM\", \"date\": \"2020-03-20T00:00:00\", \"positive\": 43.0, \"negative\": 3771.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 3814, \"dateChecked\": \"2020-03-20T20:00:00Z\", \"totalTestResults\": 3814, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1009.0, \"positiveIncrease\": 8.0, \"totalTestResultsIncrease\": 1017.0, \"ratio\": 0.011274252753015208, \"positive_diff\": 8.0, \"negative_diff\": 1009.0, \"death_diff\": null, \"positive_diff_100k\": 0.3815284889707268, \"death_diff_100k\": null, \"total_10\": 381.4}, {\"state\": \"NM\", \"date\": \"2020-03-19T00:00:00\", \"positive\": 35.0, \"negative\": 2762.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 2797, \"dateChecked\": \"2020-03-19T20:00:00Z\", \"totalTestResults\": 2797, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 436.0, \"positiveIncrease\": 7.0, \"totalTestResultsIncrease\": 443.0, \"ratio\": 0.012513407222023596, \"positive_diff\": 7.0, \"negative_diff\": 436.0, \"death_diff\": null, \"positive_diff_100k\": 0.3338374278493859, \"death_diff_100k\": null, \"total_10\": 279.7}, {\"state\": \"NM\", \"date\": \"2020-03-18T00:00:00\", \"positive\": 28.0, \"negative\": 2326.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 2354, \"dateChecked\": \"2020-03-18T20:00:00Z\", \"totalTestResults\": 2354, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1077.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 1082.0, \"ratio\": 0.0118946474086661, \"positive_diff\": 5.0, \"negative_diff\": 1077.0, \"death_diff\": null, \"positive_diff_100k\": 0.23845530560670422, \"death_diff_100k\": null, \"total_10\": 235.4}, {\"state\": \"NM\", \"date\": \"2020-03-17T00:00:00\", \"positive\": 23.0, \"negative\": 1249.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 1272, \"dateChecked\": \"2020-03-17T20:00:00Z\", \"totalTestResults\": 1272, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 683.0, \"positiveIncrease\": 6.0, \"totalTestResultsIncrease\": 689.0, \"ratio\": 0.018081761006289308, \"positive_diff\": 6.0, \"negative_diff\": 683.0, \"death_diff\": null, \"positive_diff_100k\": 0.28614636672804505, \"death_diff_100k\": null, \"total_10\": 127.2}, {\"state\": \"NM\", \"date\": \"2020-03-16T00:00:00\", \"positive\": 17.0, \"negative\": 566.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 583, \"dateChecked\": \"2020-03-16T20:00:00Z\", \"totalTestResults\": 583, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 84.0, \"positiveIncrease\": 4.0, \"totalTestResultsIncrease\": 88.0, \"ratio\": 0.029159519725557463, \"positive_diff\": 4.0, \"negative_diff\": 84.0, \"death_diff\": null, \"positive_diff_100k\": 0.1907642444853634, \"death_diff_100k\": null, \"total_10\": 58.3}, {\"state\": \"NM\", \"date\": \"2020-03-15T00:00:00\", \"positive\": 13.0, \"negative\": 482.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 495, \"dateChecked\": \"2020-03-15T20:00:00Z\", \"totalTestResults\": 495, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 245.0, \"positiveIncrease\": 3.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.026262626262626262, \"positive_diff\": 3.0, \"negative_diff\": 245.0, \"death_diff\": null, \"positive_diff_100k\": 0.14307318336402253, \"death_diff_100k\": null, \"total_10\": 49.5}, {\"state\": \"NM\", \"date\": \"2020-03-14T00:00:00\", \"positive\": 10.0, \"negative\": 237.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 247, \"dateChecked\": \"2020-03-14T20:00:00Z\", \"totalTestResults\": 247, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 47.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 47.0, \"ratio\": 0.04048582995951417, \"positive_diff\": 0.0, \"negative_diff\": 47.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 24.7}, {\"state\": \"NM\", \"date\": \"2020-03-13T00:00:00\", \"positive\": 10.0, \"negative\": 190.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 200, \"dateChecked\": \"2020-03-13T20:00:00Z\", \"totalTestResults\": 200, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 35.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 40.0, \"ratio\": 0.05, \"positive_diff\": 5.0, \"negative_diff\": 35.0, \"death_diff\": null, \"positive_diff_100k\": 0.23845530560670422, \"death_diff_100k\": null, \"total_10\": 20.0}, {\"state\": \"NM\", \"date\": \"2020-03-12T00:00:00\", \"positive\": 5.0, \"negative\": 155.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 160, \"dateChecked\": \"2020-03-12T20:00:00Z\", \"totalTestResults\": 160, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 68.0, \"positiveIncrease\": 2.0, \"totalTestResultsIncrease\": 70.0, \"ratio\": 0.03125, \"positive_diff\": 2.0, \"negative_diff\": 68.0, \"death_diff\": null, \"positive_diff_100k\": 0.0953821222426817, \"death_diff_100k\": null, \"total_10\": 16.0}, {\"state\": \"NM\", \"date\": \"2020-03-11T00:00:00\", \"positive\": 3.0, \"negative\": 87.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 90, \"dateChecked\": \"2020-03-11T20:00:00Z\", \"totalTestResults\": 90, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18.0, \"positiveIncrease\": 3.0, \"totalTestResultsIncrease\": 21.0, \"ratio\": 0.03333333333333333, \"positive_diff\": 3.0, \"negative_diff\": 18.0, \"death_diff\": null, \"positive_diff_100k\": 0.14307318336402253, \"death_diff_100k\": null, \"total_10\": 9.0}, {\"state\": \"NM\", \"date\": \"2020-03-10T00:00:00\", \"positive\": 0.0, \"negative\": 69.0, \"pending\": null, \"hospitalized\": null, \"death\": null, \"total\": 69, \"dateChecked\": \"2020-03-10T20:00:00Z\", \"totalTestResults\": 69, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 12.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 12.0, \"ratio\": 0.0, \"positive_diff\": 0.0, \"negative_diff\": 12.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 6.9}, {\"state\": \"NM\", \"date\": \"2020-03-09T00:00:00\", \"positive\": 0.0, \"negative\": 57.0, \"pending\": 0.0, \"hospitalized\": null, \"death\": null, \"total\": 57, \"dateChecked\": \"2020-03-09T20:00:00Z\", \"totalTestResults\": 57, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 9.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 9.0, \"ratio\": 0.0, \"positive_diff\": 0.0, \"negative_diff\": 9.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 5.7}, {\"state\": \"NM\", \"date\": \"2020-03-08T00:00:00\", \"positive\": 0.0, \"negative\": 48.0, \"pending\": 0.0, \"hospitalized\": null, \"death\": null, \"total\": 48, \"dateChecked\": \"2020-03-08T20:00:00Z\", \"totalTestResults\": 48, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.0, \"positive_diff\": 0.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 4.8}, {\"state\": \"NM\", \"date\": \"2020-03-07T00:00:00\", \"positive\": 0.0, \"negative\": 48.0, \"pending\": 0.0, \"hospitalized\": null, \"death\": null, \"total\": 48, \"dateChecked\": \"2020-03-07T21:00:00Z\", \"totalTestResults\": 48, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 32.0, \"ratio\": 0.0, \"positive_diff\": 0.0, \"negative_diff\": 32.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 4.8}, {\"state\": \"NM\", \"date\": \"2020-03-06T00:00:00\", \"positive\": 0.0, \"negative\": 16.0, \"pending\": 0.0, \"hospitalized\": null, \"death\": null, \"total\": 16, \"dateChecked\": \"2020-03-06T21:00:00Z\", \"totalTestResults\": 16, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": 0.0, \"positive_diff\": null, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": null, \"death_diff_100k\": null, \"total_10\": 1.6}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.HConcatChart(...)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# produce the charts for a few states\n",
    "\n",
    "charts=[]\n",
    "for state in ['NY', 'WA', 'NM']: \n",
    "    state_df = tdf_diff[tdf_diff['state'] == state].copy()\n",
    "\n",
    "    base = alt.Chart(state_df, title=state).encode(alt.X('date', axis=alt.Axis(title='Date'))).properties(width=250, height=150)\n",
    "    dailies = base.mark_bar(size=10).encode(alt.Y('positive_diff', axis=alt.Axis(title='Daily positive')))\n",
    "\n",
    "    totals = base.mark_line(color='red').encode(alt.Y('total_10', axis=alt.Axis(title='Total/10'))) \n",
    "    positives = totals.mark_line(color='orange').encode(alt.Y('positive', axis=alt.Axis(title='Positive')))\n",
    "    cumulative = totals + positives\n",
    "\n",
    "    ratio = base.mark_line(color='red').encode(alt.Y('ratio', axis=alt.Axis(title='Positive/Total'), scale=alt.Scale(domain=(0,1))))\n",
    "    \n",
    "    charts.append(alt.layer(dailies, cumulative).resolve_scale(y='independent'))\n",
    "\n",
    "display(alt.hconcat(*charts))\n",
    "display(html_credits)"
   ]
  }
 ],
 "metadata": {
  "hide_input": true,
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.3"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}