Skip to content

Instantly share code, notes, and snippets.

@vnegi10
Created August 1, 2020 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vnegi10/6a3996b51e046ffc4da8bd5e03c0180c to your computer and use it in GitHub Desktop.
Save vnegi10/6a3996b51e046ffc4da8bd5e03c0180c to your computer and use it in GitHub Desktop.
file = download("https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_recovered_global.csv", "covid_19_global_data_recovered.csv" ); # source of the data
data_df_recovered = DataFrame!(CSV.File("covid_19_global_data_recovered.csv")); # read data from file into a DataFrame
file = download("https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv", "covid_19_global_data_deaths.csv" ); # source of the data
data_df_deaths = DataFrame!(CSV.File("covid_19_global_data_deaths.csv")); # read data from file into a DataFrame
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment