Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 839 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 839 Bytes

covid-19_data_analysis

View Load COVID-19 case data from John Hopkins database on File Exchange

Load COVID-19 case data from John Hopkins database

Loading, processing and plotting the data from the John Hopkins COVID-19 database. The data is automatically read from the online repository, thus, you need a The data can be found here: https://github.com/CSSEGISandData/COVID-19.

How to (see runAll.m):

type = 'Confirmed'; % 'Confirmed','Deaths','Recovered' [dataMatrix] = readCoronaData(type); [dataTable,timeVector,mergedData] = processCoronaData(dataMatrix); plotCoronaData(timeVector,mergedData,{'Denmark','US','Germany','China'},type);