Set this variable to your county name
"Orleans"
No need to run this block, its just pulling data from the nytimes covid-19 tracking csv and filtering it to that of your county. If you’re not in Louisiana, change it to your state.
curl https://raw.githubusercontent.com/nytimes/covid-19-data/master/us-counties.csv |
grep "$COUNTY,.*Louisiana"
Show the daily infections, deaths, and change in deaths from the above.
deaths_per_day = [x[-1] for x in data]
data_with_deltas = [(a[0], a[1], a[-2], a[-1], b - a[-1]) for a, b in zip(data, deaths_per_day[1:])]
return data_with_deltas
Chart out the above along with a five day window average which shows the curve better with small numbers