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.
type = 'Confirmed'; % 'Confirmed','Deaths','Recovered' [dataMatrix] = readCoronaData(type); [dataTable,timeVector,mergedData] = processCoronaData(dataMatrix); plotCoronaData(timeVector,mergedData,{'Denmark','US','Germany','China'},type);