covid icon indicating copy to clipboard operation
covid copied to clipboard

Tracking Coronavirus Growth

Results 11 covid issues
Sort by recently updated
recently updated
newest added

Is recent data from April also available? I don't understand how to use the update.sh file - does that solve the issue?

The path to the source data changed. New Path: https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv

Hello, I've updated the data sources, massaging the US source to the same format as the Global source. ``` uscases.rename(columns={ 'Country_Region':'Country/Region', 'Province_State':'Province/State', 'Long_':'Long' }, inplace=True) ``` ``` uscases = uscases.drop(columns=['UID',...

Hey, Have you considered moving your notebook to kaggle.com? It will make it more easily discoverable and people could fork it to play with the data. You'll be able to...

Looked through the notebook, couldn't find state data. Is it possible they've moved it out to https://github.com/CSSEGISandData/COVID-19/blob/master/csse_covid_19_data/csse_covid_19_daily_reports/03-26-2020.csv ?

Amazing approach! finally I have feeling that I can get better inside (based on this site https://aatishb.com/covidtrends/). Thank you! I was just wondering if you could add data for total...

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

Optional R Markdown version. Includes updated data source, but might require some repairs to chunk 6 due to a potentially new csv structure (unable to compare against the original csv,...

Hello, In the [video](https://www.youtube.com/watch?v=54XLXg4fYsc) you mentioned that sadly there's no actual case numbers available, but only confirmed numbers. While that's true, it's not end of world. There's a good way...