Skip to content

Instantly share code, notes, and snippets.

@togakangaroo
Created April 19, 2020 21:02
Show Gist options
  • Save togakangaroo/dda30eecb9951aba6937bc41e65645d6 to your computer and use it in GitHub Desktop.
Save togakangaroo/dda30eecb9951aba6937bc41e65645d6 to your computer and use it in GitHub Desktop.

Covid19 Orleans Deaths

curl https://raw.githubusercontent.com/nytimes/covid-19-data/master/us-counties.csv | 
 grep "Orleans.*Louisiana"
deaths_per_day = [x[-1] for x in data]
data_with_deltas = [(a[0], a[-2], a[-1], b - a[-1]) for a, b in zip(data, deaths_per_day[1:])]
return data_with_deltas

change-in-deaths-per-day-Orleans.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment