Another Covid Dashboard¶

Updates¶

Given that some people with COVID-19 had no symptoms or mild symptoms, the reported number of cases was never completely accurate. Now with widespread home testing, the reported cases are even less accurate.

Likely, COVID-19 is now or close to being endemic rather than a pandemic. Whatever term we use, COVID-19 is here to stay like the flu.

Updated Nov 27, 2022

Source¶

The US data comes from https://usafacts.org which was started by Steve Ballmer, the former CEO of Microsoft.

Contents¶

  1. US National data
  2. Southern California data
  3. Some US state data
  4. Julia source code

Roger Whitney
whitney@sdsu.edu
http://www.eli.sdsu.edu

US National Data¶

Plot the number of new cases per week in the country. Going back up but no one cares.

In [3]:
plot_country(county_new_weekly_covid)
Out[3]:

Southern California Data¶

Steep up and steep down.

In [4]:
plot_county("CA", "San Diego County ", county_new_weekly_covid)
Out[4]:
In [5]:
plot_county("CA", "Orange County ", county_new_weekly_covid)
Out[5]:
In [6]:
plot_county("CA", "Los Angeles County ", county_new_weekly_covid)
Out[6]:

US State Data¶

In [7]:
plot_state("CA", states_new_weekly_covid)
Out[7]: