1 Comment
User's avatar
⭠ Return to thread
GreyGeek's avatar

Using Python and Jupyter Notebooks, from about Nov of 2020 till August of 2021 I analyzed "Daily New Cases" and the "Daily New Deaths" using Benford's Law.

DNC always failed. DND, based on death certificates, never did. The curves showed it.

Sources:

cases = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_US.csv')

deaths = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_d

Expand full comment