From 2f2e164e4032bbecc13daa0378c12a5796950cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20M=C3=BCller?= Date: Mon, 30 Mar 2020 17:02:56 +0200 Subject: [PATCH] :sparkles: Added Death Graphs --- Analyser.py | 64 +++++++++++++- UserInterface.py | 33 ++++--- statsfile.csv | 223 ++++++++++++++++++++++++++++++++++++++++++++--- 3 files changed, 295 insertions(+), 25 deletions(-) diff --git a/Analyser.py b/Analyser.py index df67db5..d3b0a5b 100644 --- a/Analyser.py +++ b/Analyser.py @@ -49,6 +49,8 @@ class Analyser: """ Get a graph with the absolute number of cases by day for the entered country :param country: The country you wish to get the graph for + :param start_date: The start date of the graph + :param end_date: The end date of the graph :return: The path for the picture of the graph """ if country in self.getAvailableCountries(): @@ -77,12 +79,14 @@ class Analyser: """ Get a graph with the daily increase number of cases for the entered country :param country: The country you wish to get the graph for + :param start_date: The start date of the graph + :param end_date: The end date of the graph :return: The path for the picture of the graph """ if country in self.getAvailableCountries(): fig = plt.figure() ax = fig.add_subplot(111) - plt.title(('Cases increase graph for ' + country)) + plt.title(('Daily case increase graph for ' + country)) countryData = self.df[self.df['countriesAndTerritories'].isin([country])] mask = (countryData['dateRep'] > start_date) & (countryData['dateRep'] <= end_date) @@ -110,3 +114,61 @@ class Analyser: mask = (countryData['dateRep'] <= date) countryTimeData = countryData.loc[mask] return countryTimeData['cases'].sum() + + def getDeathGraph(self, country, start_date='2019-12-31', end_date=datetime.now().strftime('%Y-%m-%d')) -> str: + """ + Get a graph with the absolute number of cases by day for the entered country + :param country: The country you wish to get the graph for + :param start_date: The start date of the graph + :param end_date: The end date of the graph + :return: The path for the picture of the graph + """ + if country in self.getAvailableCountries(): + fig = plt.figure() + ax = fig.add_subplot(111) + plt.title(('Total deaths graph for ' + country)) + + countryData = self.df[self.df['countriesAndTerritories'].isin([country])] + mask = (countryData['dateRep'] > start_date) & (countryData['dateRep'] <= end_date) + countryTimeData = countryData.loc[mask] + countryTimeData = countryTimeData.sort_values('dateRep') + countryTimeData['deaths'] = countryTimeData['deaths'].cumsum() + + countryTimeData.plot(ax=ax, x='dateRep', y='deaths') + + plt.show(block=True) + filePath = ('graphs/casesGraph_' + country + '_' + datetime.now().strftime('%Y-%m-%d')) + fig.savefig(filePath) + + return filePath + else: + print('Unknown country') + return '-1' + + def getDeathIncreaseGraph(self, country, start_date='2019-12-31', end_date=datetime.now().strftime('%Y-%m-%d')) -> str: + """ + Get a graph with the daily increase number of cases for the entered country + :param country: The country you wish to get the graph for + :param start_date: The start date of the graph + :param end_date: The end date of the graph + :return: The path for the picture of the graph + """ + if country in self.getAvailableCountries(): + fig = plt.figure() + ax = fig.add_subplot(111) + plt.title(('Daily deaths graph for ' + country)) + + countryData = self.df[self.df['countriesAndTerritories'].isin([country])] + mask = (countryData['dateRep'] > start_date) & (countryData['dateRep'] <= end_date) + countryTimeData = countryData.loc[mask] + + countryTimeData.plot(ax=ax, x='dateRep', y='deaths') + + plt.show(block=True) + filePath = ('graphs/casesIncreaseGraph_' + country + '_' + datetime.now().strftime('%Y-%m-%d')) + fig.savefig(filePath) + + return filePath + else: + print('Unknown country') + return '-1' \ No newline at end of file diff --git a/UserInterface.py b/UserInterface.py index 3ed9844..7954135 100644 --- a/UserInterface.py +++ b/UserInterface.py @@ -8,6 +8,7 @@ import sys from datetime import datetime from PyQt5.QtWidgets import * from PyQt5.QtGui import * +from PyQt5.QtCore import QDate import Analyser as ana @@ -24,7 +25,7 @@ class UserInterface(QWidget): screen_width, screen_height = app.desktop().screenGeometry().width(), app.desktop().screenGeometry().height() # screen_width, screen_height = 3840, 2160 self.setGeometry(((screen_width / 2) - 750), ((screen_height / 2) - 375), 1500, 750) - self.setMinimumWidth(1300) + self.setMinimumWidth(1500) # Layout boxes self.header_box = QHBoxLayout() @@ -67,6 +68,13 @@ class UserInterface(QWidget): self.endDatePicker.setCurrentText(datetime.now().strftime('%Y-%m-%d')) picklistBox.addWidget(self.endDatePicker, 1) + # Graph Type Picker + graphTypePickerLabel = QLabel('

Pick a graph type:

') + labelBox.addWidget(graphTypePickerLabel) + self.graphTypePicker = QComboBox(parent=self) + self.graphTypePicker.addItems(['Total Cases', 'Case Increase', 'Total Deaths', 'Death Increase']) + picklistBox.addWidget(self.graphTypePicker, 1) + # Calculate Button self.calculateSingleCountryStats = QPushButton('Calculate') buttonBox.addWidget(self.calculateSingleCountryStats) @@ -99,23 +107,28 @@ class UserInterface(QWidget): def btnstate(self): if self.calculateSingleCountryStats.isChecked(): # To reset the button - print('pressed') self.calculateSingleCountryStats.toggle() country = self.countryPicker.currentText() startDate = self.startDatePicker.currentText() endDate = self.endDatePicker.currentText() - casesGraphPath = self.analyser.getCasesGraph(country, startDate, endDate) - caseIncreaseGraphPath = self.analyser.getCaseIncreaseGraph(country, startDate, endDate) self.casesNumber.setText( ('

Total case number in ' + country + ' as of ' + endDate + ': ' + str(self.analyser.getTotalCases(country, endDate))+'

')) - self.casesGraphPlaceHolder = QLabel(self) - self.casesIncreasePlaceHolder = QLabel(self) + casesGraphPath = self.analyser.getCasesGraph(country, startDate, endDate) + caseIncreaseGraphPath = self.analyser.getCaseIncreaseGraph(country, startDate, endDate) + deathGraphPath = self.analyser.getDeathGraph(country, startDate, endDate) + deathIncreaseGraphPath = self.analyser.getDeathIncreaseGraph(country, startDate, endDate) + self.graphPlaceHolder = QLabel(self) self.clearLayout(self.graphBox) - self.graphBox.addWidget(self.casesGraphPlaceHolder) - self.graphBox.addWidget(self.casesIncreasePlaceHolder) - self.casesGraphPlaceHolder.setPixmap(QPixmap(casesGraphPath)) - self.casesIncreasePlaceHolder.setPixmap(QPixmap(caseIncreaseGraphPath)) + self.graphBox.addWidget(self.graphPlaceHolder) + if self.graphTypePicker.currentText() == 'Total Cases': + self.graphPlaceHolder.setPixmap(QPixmap(casesGraphPath)) + elif self.graphTypePicker.currentText() == 'Case Increase': + self.graphPlaceHolder.setPixmap(QPixmap(caseIncreaseGraphPath)) + elif self.graphTypePicker.currentText() == 'Total Deaths': + self.graphPlaceHolder.setPixmap(QPixmap(deathGraphPath)) + elif self.graphTypePicker.currentText() == 'Death Increase': + self.graphPlaceHolder.setPixmap(QPixmap(deathIncreaseGraphPath)) def clearLayout(self, layout): for i in reversed(range(layout.count())): diff --git a/statsfile.csv b/statsfile.csv index 5eae4f8..25138f2 100644 --- a/statsfile.csv +++ b/statsfile.csv @@ -1,4 +1,5 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterritoryCode,popData2018 +30/03/2020,30,3,2020,8,1,Afghanistan,AF,AFG,37172386 29/03/2020,29,3,2020,15,1,Afghanistan,AF,AFG,37172386 28/03/2020,28,3,2020,16,1,Afghanistan,AF,AFG,37172386 27/03/2020,27,3,2020,0,0,Afghanistan,AF,AFG,37172386 @@ -79,6 +80,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Afghanistan,AF,AFG,37172386 01/01/2020,1,1,2020,0,0,Afghanistan,AF,AFG,37172386 31/12/2019,31,12,2019,0,0,Afghanistan,AF,AFG,37172386 +30/03/2020,30,3,2020,3,2,Angola,AO,AGO,30809762 29/03/2020,29,3,2020,0,0,Angola,AO,AGO,30809762 28/03/2020,28,3,2020,1,0,Angola,AO,AGO,30809762 27/03/2020,27,3,2020,1,0,Angola,AO,AGO,30809762 @@ -87,6 +89,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 24/03/2020,24,3,2020,0,0,Angola,AO,AGO,30809762 23/03/2020,23,3,2020,0,0,Angola,AO,AGO,30809762 22/03/2020,22,3,2020,2,0,Angola,AO,AGO,30809762 +30/03/2020,30,3,2020,15,0,Albania,AL,ALB,2866376 29/03/2020,29,3,2020,11,1,Albania,AL,ALB,2866376 28/03/2020,28,3,2020,12,3,Albania,AL,ALB,2866376 27/03/2020,27,3,2020,28,1,Albania,AL,ALB,2866376 @@ -108,6 +111,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 11/03/2020,11,3,2020,4,0,Albania,AL,ALB,2866376 10/03/2020,10,3,2020,4,0,Albania,AL,ALB,2866376 09/03/2020,9,3,2020,2,0,Albania,AL,ALB,2866376 +30/03/2020,30,3,2020,26,2,Andorra,AD,AND,77006 29/03/2020,29,3,2020,41,1,Andorra,AD,AND,77006 28/03/2020,28,3,2020,43,0,Andorra,AD,AND,77006 27/03/2020,27,3,2020,36,3,Andorra,AD,AND,77006 @@ -124,16 +128,11 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,3,0,Andorra,AD,AND,77006 14/03/2020,14,3,2020,1,0,Andorra,AD,AND,77006 03/03/2020,3,3,2020,1,0,Andorra,AD,AND,77006 +30/03/2020,30,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 29/03/2020,29,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 28/03/2020,28,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 27/03/2020,27,3,2020,4,0,Antigua_and_Barbuda,AG,ATG,96286 -26/03/2020,26,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 -25/03/2020,25,3,2020,2,0,Antigua_and_Barbuda,AG,ATG,96286 -24/03/2020,24,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 -23/03/2020,23,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 -22/03/2020,22,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 -21/03/2020,21,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 -15/03/2020,15,3,2020,1,0,Antigua_and_Barbuda,AG,ATG,96286 +30/03/2020,30,3,2020,45,3,Algeria,DZ,DZA,42228429 29/03/2020,29,3,2020,104,5,Algeria,DZ,DZA,42228429 28/03/2020,28,3,2020,0,0,Algeria,DZ,DZA,42228429 27/03/2020,27,3,2020,41,4,Algeria,DZ,DZA,42228429 @@ -219,9 +218,18 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Algeria,DZ,DZA,42228429 01/01/2020,1,1,2020,0,0,Algeria,DZ,DZA,42228429 31/12/2019,31,12,2019,0,0,Algeria,DZ,DZA,42228429 +30/03/2020,30,3,2020,0,0,Anguilla,AI,, 29/03/2020,29,3,2020,0,0,Anguilla,AI,, 28/03/2020,28,3,2020,0,0,Anguilla,AI,, 27/03/2020,27,3,2020,2,0,Anguilla,AI,, +26/03/2020,26,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 +25/03/2020,25,3,2020,2,0,Antigua_and_Barbuda,AG,ATG,96286 +24/03/2020,24,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 +23/03/2020,23,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 +22/03/2020,22,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 +21/03/2020,21,3,2020,0,0,Antigua_and_Barbuda,AG,ATG,96286 +15/03/2020,15,3,2020,1,0,Antigua_and_Barbuda,AG,ATG,96286 +30/03/2020,30,3,2020,75,1,Argentina,AR,ARG,44494502 29/03/2020,29,3,2020,55,2,Argentina,AR,ARG,44494502 28/03/2020,28,3,2020,101,5,Argentina,AR,ARG,44494502 27/03/2020,27,3,2020,87,4,Argentina,AR,ARG,44494502 @@ -245,6 +253,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 07/03/2020,7,3,2020,6,0,Argentina,AR,ARG,44494502 06/03/2020,6,3,2020,1,0,Argentina,AR,ARG,44494502 04/03/2020,4,3,2020,1,0,Argentina,AR,ARG,44494502 +30/03/2020,30,3,2020,0,0,Armenia,AM,ARM,2951776 29/03/2020,29,3,2020,52,2,Armenia,AM,ARM,2951776 28/03/2020,28,3,2020,43,0,Armenia,AM,ARM,2951776 27/03/2020,27,3,2020,39,1,Armenia,AM,ARM,2951776 @@ -326,6 +335,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Armenia,AM,ARM,2951776 01/01/2020,1,1,2020,0,0,Armenia,AM,ARM,2951776 31/12/2019,31,12,2019,0,0,Armenia,AM,ARM,2951776 +30/03/2020,30,3,2020,22,0,Aruba,AW,ABW,105845 29/03/2020,29,3,2020,0,0,Aruba,AW,ABW,105845 28/03/2020,28,3,2020,0,0,Aruba,AW,ABW,105845 27/03/2020,27,3,2020,9,0,Aruba,AW,ABW,105845 @@ -334,6 +344,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 24/03/2020,24,3,2020,8,0,Aruba,AW,ABW,105845 20/03/2020,20,3,2020,2,0,Aruba,AW,ABW,105845 13/03/2020,13,3,2020,2,0,Aruba,AW,ABW,105845 +30/03/2020,30,3,2020,284,2,Australia,AU,AUS,24992369 29/03/2020,29,3,2020,431,1,Australia,AU,AUS,24992369 28/03/2020,28,3,2020,212,0,Australia,AU,AUS,24992369 27/03/2020,27,3,2020,367,2,Australia,AU,AUS,24992369 @@ -424,6 +435,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Australia,AU,AUS,24992369 01/01/2020,1,1,2020,0,0,Australia,AU,AUS,24992369 31/12/2019,31,12,2019,0,0,Australia,AU,AUS,24992369 +30/03/2020,30,3,2020,522,18,Austria,AT,AUT,8847037 29/03/2020,29,3,2020,594,0,Austria,AT,AUT,8847037 28/03/2020,28,3,2020,668,16,Austria,AT,AUT,8847037 27/03/2020,27,3,2020,1141,18,Austria,AT,AUT,8847037 @@ -514,6 +526,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Austria,AT,AUT,8847037 01/01/2020,1,1,2020,0,0,Austria,AT,AUT,8847037 31/12/2019,31,12,2019,0,0,Austria,AT,AUT,8847037 +30/03/2020,30,3,2020,27,0,Azerbaijan,AZ,AZE,9942334 29/03/2020,29,3,2020,17,1,Azerbaijan,AZ,AZE,9942334 28/03/2020,28,3,2020,43,0,Azerbaijan,AZ,AZE,9942334 27/03/2020,27,3,2020,29,1,Azerbaijan,AZ,AZE,9942334 @@ -597,6 +610,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Azerbaijan,AZ,AZE,9942334 01/01/2020,1,1,2020,0,0,Azerbaijan,AZ,AZE,9942334 31/12/2019,31,12,2019,0,0,Azerbaijan,AZ,AZE,9942334 +30/03/2020,30,3,2020,3,0,Bahamas,BS,BHS,385640 29/03/2020,29,3,2020,2,0,Bahamas,BS,BHS,385640 28/03/2020,28,3,2020,0,0,Bahamas,BS,BHS,385640 27/03/2020,27,3,2020,4,0,Bahamas,BS,BHS,385640 @@ -609,6 +623,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 20/03/2020,20,3,2020,2,0,Bahamas,BS,BHS,385640 17/03/2020,17,3,2020,0,0,Bahamas,BS,BHS,385640 16/03/2020,16,3,2020,1,0,Bahamas,BS,BHS,385640 +30/03/2020,30,3,2020,27,0,Bahrain,BH,BHR,1569439 29/03/2020,29,3,2020,7,0,Bahrain,BH,BHR,1569439 28/03/2020,28,3,2020,8,0,Bahrain,BH,BHR,1569439 27/03/2020,27,3,2020,39,1,Bahrain,BH,BHR,1569439 @@ -698,6 +713,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Bahrain,BH,BHR,1569439 01/01/2020,1,1,2020,0,0,Bahrain,BH,BHR,1569439 31/12/2019,31,12,2019,0,0,Bahrain,BH,BHR,1569439 +30/03/2020,30,3,2020,1,0,Bangladesh,BD,BGD,161356039 29/03/2020,29,3,2020,0,0,Bangladesh,BD,BGD,161356039 28/03/2020,28,3,2020,0,0,Bangladesh,BD,BGD,161356039 27/03/2020,27,3,2020,9,0,Bangladesh,BD,BGD,161356039 @@ -713,6 +729,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,2,0,Bangladesh,BD,BGD,161356039 15/03/2020,15,3,2020,0,0,Bangladesh,BD,BGD,161356039 09/03/2020,9,3,2020,3,0,Bangladesh,BD,BGD,161356039 +30/03/2020,30,3,2020,7,0,Barbados,BB,BRB,286641 29/03/2020,29,3,2020,2,0,Barbados,BB,BRB,286641 28/03/2020,28,3,2020,0,0,Barbados,BB,BRB,286641 27/03/2020,27,3,2020,6,0,Barbados,BB,BRB,286641 @@ -725,6 +742,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 20/03/2020,20,3,2020,1,0,Barbados,BB,BRB,286641 19/03/2020,19,3,2020,0,0,Barbados,BB,BRB,286641 18/03/2020,18,3,2020,1,0,Barbados,BB,BRB,286641 +30/03/2020,30,3,2020,0,0,Belarus,BY,BLR,9485386 29/03/2020,29,3,2020,0,0,Belarus,BY,BLR,9485386 28/03/2020,28,3,2020,8,0,Belarus,BY,BLR,9485386 27/03/2020,27,3,2020,0,0,Belarus,BY,BLR,9485386 @@ -807,6 +825,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Belarus,BY,BLR,9485386 01/01/2020,1,1,2020,0,0,Belarus,BY,BLR,9485386 31/12/2019,31,12,2019,0,0,Belarus,BY,BLR,9485386 +30/03/2020,30,3,2020,1702,78,Belgium,BE,BEL,11422068 29/03/2020,29,3,2020,1850,64,Belgium,BE,BEL,11422068 28/03/2020,28,3,2020,1049,69,Belgium,BE,BEL,11422068 27/03/2020,27,3,2020,1298,42,Belgium,BE,BEL,11422068 @@ -897,12 +916,14 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Belgium,BE,BEL,11422068 01/01/2020,1,1,2020,0,0,Belgium,BE,BEL,11422068 31/12/2019,31,12,2019,0,0,Belgium,BE,BEL,11422068 +30/03/2020,30,3,2020,0,0,Belize,BZ,BLZ,383071 29/03/2020,29,3,2020,0,0,Belize,BZ,BLZ,383071 28/03/2020,28,3,2020,0,0,Belize,BZ,BLZ,383071 27/03/2020,27,3,2020,0,0,Belize,BZ,BLZ,383071 26/03/2020,26,3,2020,1,0,Belize,BZ,BLZ,383071 25/03/2020,25,3,2020,0,0,Belize,BZ,BLZ,383071 24/03/2020,24,3,2020,1,0,Belize,BZ,BLZ,383071 +30/03/2020,30,3,2020,0,0,Benin,BJ,BEN,11485048 29/03/2020,29,3,2020,0,0,Benin,BJ,BEN,11485048 28/03/2020,28,3,2020,0,0,Benin,BJ,BEN,11485048 27/03/2020,27,3,2020,1,0,Benin,BJ,BEN,11485048 @@ -916,6 +937,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 19/03/2020,19,3,2020,0,0,Benin,BJ,BEN,11485048 18/03/2020,18,3,2020,0,0,Benin,BJ,BEN,11485048 17/03/2020,17,3,2020,1,0,Benin,BJ,BEN,11485048 +30/03/2020,30,3,2020,0,0,Bermuda,BM,BMU,63968 29/03/2020,29,3,2020,5,0,Bermuda,BM,BMU,63968 28/03/2020,28,3,2020,2,0,Bermuda,BM,BMU,63968 27/03/2020,27,3,2020,9,0,Bermuda,BM,BMU,63968 @@ -926,6 +948,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,0,0,Bermuda,BM,BMU,63968 21/03/2020,21,3,2020,0,0,Bermuda,BM,BMU,63968 20/03/2020,20,3,2020,2,0,Bermuda,BM,BMU,63968 +30/03/2020,30,3,2020,0,0,Bhutan,BT,BTN,754394 29/03/2020,29,3,2020,1,0,Bhutan,BT,BTN,754394 28/03/2020,28,3,2020,0,0,Bhutan,BT,BTN,754394 27/03/2020,27,3,2020,0,0,Bhutan,BT,BTN,754394 @@ -942,6 +965,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 15/03/2020,15,3,2020,0,0,Bhutan,BT,BTN,754394 13/03/2020,13,3,2020,0,0,Bhutan,BT,BTN,754394 06/03/2020,6,3,2020,1,0,Bhutan,BT,BTN,754394 +30/03/2020,30,3,2020,15,3,Bolivia,BO,BOL,11353142 29/03/2020,29,3,2020,7,0,Bolivia,BO,BOL,11353142 28/03/2020,28,3,2020,13,0,Bolivia,BO,BOL,11353142 27/03/2020,27,3,2020,22,0,Bolivia,BO,BOL,11353142 @@ -959,6 +983,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 14/03/2020,14,3,2020,7,0,Bolivia,BO,BOL,11353142 13/03/2020,13,3,2020,1,0,Bolivia,BO,BOL,11353142 12/03/2020,12,3,2020,2,0,Bolivia,BO,BOL,11353142 +30/03/2020,30,3,2020,66,1,Bosnia_and_Herzegovina,BA,BIH,3323929 29/03/2020,29,3,2020,28,2,Bosnia_and_Herzegovina,BA,BIH,3323929 28/03/2020,28,3,2020,48,0,Bosnia_and_Herzegovina,BA,BIH,3323929 27/03/2020,27,3,2020,0,0,Bosnia_and_Herzegovina,BA,BIH,3323929 @@ -976,6 +1001,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 13/03/2020,13,3,2020,0,0,Bosnia_and_Herzegovina,BA,BIH,3323929 12/03/2020,12,3,2020,1,0,Bosnia_and_Herzegovina,BA,BIH,3323929 06/03/2020,6,3,2020,2,0,Bosnia_and_Herzegovina,BA,BIH,3323929 +30/03/2020,30,3,2020,352,22,Brazil,BR,BRA,209469333 29/03/2020,29,3,2020,487,22,Brazil,BR,BRA,209469333 28/03/2020,28,3,2020,502,15,Brazil,BR,BRA,209469333 27/03/2020,27,3,2020,482,20,Brazil,BR,BRA,209469333 @@ -1063,9 +1089,11 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Brazil,BR,BRA,209469333 01/01/2020,1,1,2020,0,0,Brazil,BR,BRA,209469333 31/12/2019,31,12,2019,0,0,Brazil,BR,BRA,209469333 +30/03/2020,30,3,2020,0,0,British_Virgin_Islands,VG,VGB,29802 29/03/2020,29,3,2020,0,0,British_Virgin_Islands,VG,VGB,29802 28/03/2020,28,3,2020,0,0,British_Virgin_Islands,VG,VGB,29802 27/03/2020,27,3,2020,2,0,British_Virgin_Islands,VG,VGB,29802 +30/03/2020,30,3,2020,6,0,Brunei_Darussalam,BN,BRN,428962 29/03/2020,29,3,2020,5,1,Brunei_Darussalam,BN,BRN,428962 28/03/2020,28,3,2020,1,0,Brunei_Darussalam,BN,BRN,428962 27/03/2020,27,3,2020,7,0,Brunei_Darussalam,BN,BRN,428962 @@ -1085,6 +1113,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 13/03/2020,13,3,2020,14,0,Brunei_Darussalam,BN,BRN,428962 12/03/2020,12,3,2020,10,0,Brunei_Darussalam,BN,BRN,428962 10/03/2020,10,3,2020,1,0,Brunei_Darussalam,BN,BRN,428962 +30/03/2020,30,3,2020,15,1,Bulgaria,BG,BGR,7024216 29/03/2020,29,3,2020,38,4,Bulgaria,BG,BGR,7024216 28/03/2020,28,3,2020,29,0,Bulgaria,BG,BGR,7024216 27/03/2020,27,3,2020,22,0,Bulgaria,BG,BGR,7024216 @@ -1105,6 +1134,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 12/03/2020,12,3,2020,3,1,Bulgaria,BG,BGR,7024216 09/03/2020,9,3,2020,2,0,Bulgaria,BG,BGR,7024216 08/03/2020,8,3,2020,2,0,Bulgaria,BG,BGR,7024216 +30/03/2020,30,3,2020,0,0,Burkina_Faso,BF,BFA,19751535 29/03/2020,29,3,2020,34,6,Burkina_Faso,BF,BFA,19751535 28/03/2020,28,3,2020,0,0,Burkina_Faso,BF,BFA,19751535 27/03/2020,27,3,2020,32,0,Burkina_Faso,BF,BFA,19751535 @@ -1122,6 +1152,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 15/03/2020,15,3,2020,1,0,Burkina_Faso,BF,BFA,19751535 12/03/2020,12,3,2020,0,0,Burkina_Faso,BF,BFA,19751535 11/03/2020,11,3,2020,2,0,Burkina_Faso,BF,BFA,19751535 +30/03/2020,30,3,2020,4,0,Cambodia,KH,KHM,16249798 29/03/2020,29,3,2020,1,0,Cambodia,KH,KHM,16249798 28/03/2020,28,3,2020,4,0,Cambodia,KH,KHM,16249798 27/03/2020,27,3,2020,2,0,Cambodia,KH,KHM,16249798 @@ -1203,6 +1234,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Cambodia,KH,KHM,16249798 01/01/2020,1,1,2020,0,0,Cambodia,KH,KHM,16249798 31/12/2019,31,12,2019,0,0,Cambodia,KH,KHM,16249798 +30/03/2020,30,3,2020,0,0,Cameroon,CM,CMR,25216237 29/03/2020,29,3,2020,11,1,Cameroon,CM,CMR,25216237 28/03/2020,28,3,2020,0,0,Cameroon,CM,CMR,25216237 27/03/2020,27,3,2020,16,0,Cameroon,CM,CMR,25216237 @@ -1220,6 +1252,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 15/03/2020,15,3,2020,1,0,Cameroon,CM,CMR,25216237 09/03/2020,9,3,2020,1,0,Cameroon,CM,CMR,25216237 07/03/2020,7,3,2020,1,0,Cameroon,CM,CMR,25216237 +30/03/2020,30,3,2020,869,1,Canada,CA,CAN,37058856 29/03/2020,29,3,2020,697,7,Canada,CA,CAN,37058856 28/03/2020,28,3,2020,671,14,Canada,CA,CAN,37058856 27/03/2020,27,3,2020,633,4,Canada,CA,CAN,37058856 @@ -1310,6 +1343,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Canada,CA,CAN,37058856 01/01/2020,1,1,2020,0,0,Canada,CA,CAN,37058856 31/12/2019,31,12,2019,0,0,Canada,CA,CAN,37058856 +30/03/2020,30,3,2020,0,0,Cape_Verde,CV,CPV,543767 29/03/2020,29,3,2020,1,0,Cape_Verde,CV,CPV,543767 28/03/2020,28,3,2020,0,0,Cape_Verde,CV,CPV,543767 27/03/2020,27,3,2020,1,0,Cape_Verde,CV,CPV,543767 @@ -1383,6 +1417,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Cases_on_an_international_conveyance_Japan,JPG11668,N/A,3000 01/01/2020,1,1,2020,0,0,Cases_on_an_international_conveyance_Japan,JPG11668,N/A,3000 31/12/2019,31,12,2019,0,0,Cases_on_an_international_conveyance_Japan,JPG11668,N/A,3000 +30/03/2020,30,3,2020,0,0,Cayman_Islands,KY,CYM,64174 29/03/2020,29,3,2020,0,0,Cayman_Islands,KY,CYM,64174 28/03/2020,28,3,2020,2,0,Cayman_Islands,KY,CYM,64174 27/03/2020,27,3,2020,3,0,Cayman_Islands,KY,CYM,64174 @@ -1393,6 +1428,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,0,0,Cayman_Islands,KY,CYM,64174 21/03/2020,21,3,2020,2,1,Cayman_Islands,KY,CYM,64174 20/03/2020,20,3,2020,1,0,Cayman_Islands,KY,CYM,64174 +30/03/2020,30,3,2020,0,0,Central_African_Republic,CF,CAF,4666377 29/03/2020,29,3,2020,1,0,Central_African_Republic,CF,CAF,4666377 28/03/2020,28,3,2020,0,0,Central_African_Republic,CF,CAF,4666377 27/03/2020,27,3,2020,1,0,Central_African_Republic,CF,CAF,4666377 @@ -1407,6 +1443,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 18/03/2020,18,3,2020,0,0,Central_African_Republic,CF,CAF,4666377 17/03/2020,17,3,2020,0,0,Central_African_Republic,CF,CAF,4666377 16/03/2020,16,3,2020,1,0,Central_African_Republic,CF,CAF,4666377 +30/03/2020,30,3,2020,0,0,Chad,TD,TCD,15477751 29/03/2020,29,3,2020,0,0,Chad,TD,TCD,15477751 28/03/2020,28,3,2020,0,0,Chad,TD,TCD,15477751 27/03/2020,27,3,2020,2,0,Chad,TD,TCD,15477751 @@ -1417,6 +1454,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,1,0,Chad,TD,TCD,15477751 21/03/2020,21,3,2020,0,0,Chad,TD,TCD,15477751 20/03/2020,20,3,2020,1,0,Chad,TD,TCD,15477751 +30/03/2020,30,3,2020,230,1,Chile,CL,CHL,18729160 29/03/2020,29,3,2020,299,1,Chile,CL,CHL,18729160 28/03/2020,28,3,2020,304,1,Chile,CL,CHL,18729160 27/03/2020,27,3,2020,164,1,Chile,CL,CHL,18729160 @@ -1442,6 +1480,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 06/03/2020,6,3,2020,1,0,Chile,CL,CHL,18729160 05/03/2020,5,3,2020,2,0,Chile,CL,CHL,18729160 04/03/2020,4,3,2020,1,0,Chile,CL,CHL,18729160 +30/03/2020,30,3,2020,121,5,China,CN,CHN,1392730000 29/03/2020,29,3,2020,129,5,China,CN,CHN,1392730000 28/03/2020,28,3,2020,134,3,China,CN,CHN,1392730000 27/03/2020,27,3,2020,111,5,China,CN,CHN,1392730000 @@ -1532,6 +1571,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,China,CN,CHN,1392730000 01/01/2020,1,1,2020,0,0,China,CN,CHN,1392730000 31/12/2019,31,12,2019,27,0,China,CN,CHN,1392730000 +30/03/2020,30,3,2020,94,4,Colombia,CO,COL,49648685 29/03/2020,29,3,2020,69,0,Colombia,CO,COL,49648685 28/03/2020,28,3,2020,48,0,Colombia,CO,COL,49648685 27/03/2020,27,3,2020,21,2,Colombia,CO,COL,49648685 @@ -1551,6 +1591,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 12/03/2020,12,3,2020,6,0,Colombia,CO,COL,49648685 10/03/2020,10,3,2020,2,0,Colombia,CO,COL,49648685 07/03/2020,7,3,2020,1,0,Colombia,CO,COL,49648685 +30/03/2020,30,3,2020,0,0,Congo,CG,COG,5244363 29/03/2020,29,3,2020,15,0,Congo,CG,COG,5244363 28/03/2020,28,3,2020,0,0,Congo,CG,COG,5244363 27/03/2020,27,3,2020,0,0,Congo,CG,COG,5244363 @@ -1565,6 +1606,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 18/03/2020,18,3,2020,0,0,Congo,CG,COG,5244363 17/03/2020,17,3,2020,0,0,Congo,CG,COG,5244363 16/03/2020,16,3,2020,1,0,Congo,CG,COG,5244363 +30/03/2020,30,3,2020,19,0,Costa_Rica,CR,CRI,4999441 29/03/2020,29,3,2020,32,0,Costa_Rica,CR,CRI,4999441 28/03/2020,28,3,2020,32,0,Costa_Rica,CR,CRI,4999441 27/03/2020,27,3,2020,30,0,Costa_Rica,CR,CRI,4999441 @@ -1587,6 +1629,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 10/03/2020,10,3,2020,4,0,Costa_Rica,CR,CRI,4999441 09/03/2020,9,3,2020,4,0,Costa_Rica,CR,CRI,4999441 07/03/2020,7,3,2020,1,0,Costa_Rica,CR,CRI,4999441 +30/03/2020,30,3,2020,25,1,Cote_dIvoire,CI,CIV,25069229 29/03/2020,29,3,2020,39,0,Cote_dIvoire,CI,CIV,25069229 28/03/2020,28,3,2020,5,0,Cote_dIvoire,CI,CIV,25069229 27/03/2020,27,3,2020,16,0,Cote_dIvoire,CI,CIV,25069229 @@ -1603,6 +1646,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,0,0,Cote_dIvoire,CI,CIV,25069229 15/03/2020,15,3,2020,3,0,Cote_dIvoire,CI,CIV,25069229 12/03/2020,12,3,2020,1,0,Cote_dIvoire,CI,CIV,25069229 +30/03/2020,30,3,2020,56,1,Croatia,HR,HRV,4089400 29/03/2020,29,3,2020,71,2,Croatia,HR,HRV,4089400 28/03/2020,28,3,2020,91,1,Croatia,HR,HRV,4089400 27/03/2020,27,3,2020,77,1,Croatia,HR,HRV,4089400 @@ -1690,6 +1734,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Croatia,HR,HRV,4089400 01/01/2020,1,1,2020,0,0,Croatia,HR,HRV,4089400 31/12/2019,31,12,2019,0,0,Croatia,HR,HRV,4089400 +30/03/2020,30,3,2020,20,0,Cuba,CU,CUB,11338138 29/03/2020,29,3,2020,39,1,Cuba,CU,CUB,11338138 28/03/2020,28,3,2020,13,0,Cuba,CU,CUB,11338138 27/03/2020,27,3,2020,10,1,Cuba,CU,CUB,11338138 @@ -1705,13 +1750,15 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 15/03/2020,15,3,2020,0,0,Cuba,CU,CUB,11338138 14/03/2020,14,3,2020,1,0,Cuba,CU,CUB,11338138 12/03/2020,12,3,2020,3,0,Cuba,CU,CUB,11338138 -29/03/2020,29,3,2020,0,0,Cura\xe7ao,CW,CUW,159849 -28/03/2020,28,3,2020,1,0,Cura\xe7ao,CW,CUW,159849 -27/03/2020,27,3,2020,1,0,Cura\xe7ao,CW,CUW,159849 -26/03/2020,26,3,2020,0,1,Cura\xe7ao,CW,CUW,159849 -24/03/2020,24,3,2020,3,0,Cura\xe7ao,CW,CUW,159849 -20/03/2020,20,3,2020,2,0,Cura\xe7ao,CW,CUW,159849 -13/03/2020,13,3,2020,1,0,Cura\xe7ao,CW,CUW,159849 +30/03/2020,30,3,2020,1,0,Curacao,CW,CUW,159849 +29/03/2020,29,3,2020,0,0,Curacao,CW,CUW,159849 +28/03/2020,28,3,2020,1,0,Curacao,CW,CUW,159849 +27/03/2020,27,3,2020,1,0,Curacao,CW,CUW,159849 +26/03/2020,26,3,2020,0,1,Curacao,CW,CUW,159849 +24/03/2020,24,3,2020,3,0,Curacao,CW,CUW,159849 +20/03/2020,20,3,2020,2,0,Curacao,CW,CUW,159849 +13/03/2020,13,3,2020,1,0,Curacao,CW,CUW,159849 +30/03/2020,30,3,2020,35,1,Cyprus,CY,CYP,1189265 29/03/2020,29,3,2020,17,0,Cyprus,CY,CYP,1189265 28/03/2020,28,3,2020,16,2,Cyprus,CY,CYP,1189265 27/03/2020,27,3,2020,14,0,Cyprus,CY,CYP,1189265 @@ -1730,6 +1777,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 14/03/2020,14,3,2020,8,0,Cyprus,CY,CYP,1189265 12/03/2020,12,3,2020,4,0,Cyprus,CY,CYP,1189265 10/03/2020,10,3,2020,2,0,Cyprus,CY,CYP,1189265 +30/03/2020,30,3,2020,166,5,Czech_Republic,CZ,CZE,10625695 29/03/2020,29,3,2020,384,2,Czech_Republic,CZ,CZE,10625695 28/03/2020,28,3,2020,217,0,Czech_Republic,CZ,CZE,10625695 27/03/2020,27,3,2020,408,3,Czech_Republic,CZ,CZE,10625695 @@ -1820,6 +1868,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Czech_Republic,CZ,CZE,10625695 01/01/2020,1,1,2020,0,0,Czech_Republic,CZ,CZE,10625695 31/12/2019,31,12,2019,0,0,Czech_Republic,CZ,CZE,10625695 +30/03/2020,30,3,2020,23,2,Democratic_Republic_of_the_Congo,CD,COD,84068091 29/03/2020,29,3,2020,0,2,Democratic_Republic_of_the_Congo,CD,COD,84068091 28/03/2020,28,3,2020,4,0,Democratic_Republic_of_the_Congo,CD,COD,84068091 27/03/2020,27,3,2020,9,1,Democratic_Republic_of_the_Congo,CD,COD,84068091 @@ -1837,6 +1886,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 15/03/2020,15,3,2020,0,0,Democratic_Republic_of_the_Congo,CD,COD,84068091 14/03/2020,14,3,2020,1,0,Democratic_Republic_of_the_Congo,CD,COD,84068091 11/03/2020,11,3,2020,1,0,Democratic_Republic_of_the_Congo,CD,COD,84068091 +30/03/2020,30,3,2020,194,7,Denmark,DK,DNK,5797446 29/03/2020,29,3,2020,155,13,Denmark,DK,DNK,5797446 28/03/2020,28,3,2020,169,11,Denmark,DK,DNK,5797446 27/03/2020,27,3,2020,153,7,Denmark,DK,DNK,5797446 @@ -1927,6 +1977,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Denmark,DK,DNK,5797446 01/01/2020,1,1,2020,0,0,Denmark,DK,DNK,5797446 31/12/2019,31,12,2019,0,0,Denmark,DK,DNK,5797446 +30/03/2020,30,3,2020,4,0,Djibouti,DJ,DJI,958920 29/03/2020,29,3,2020,2,0,Djibouti,DJ,DJI,958920 28/03/2020,28,3,2020,1,0,Djibouti,DJ,DJI,958920 27/03/2020,27,3,2020,0,0,Djibouti,DJ,DJI,958920 @@ -1938,6 +1989,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 21/03/2020,21,3,2020,0,0,Djibouti,DJ,DJI,958920 20/03/2020,20,3,2020,0,0,Djibouti,DJ,DJI,958920 19/03/2020,19,3,2020,1,0,Djibouti,DJ,DJI,958920 +30/03/2020,30,3,2020,0,0,Dominica,DM,DMA,71625 29/03/2020,29,3,2020,0,0,Dominica,DM,DMA,71625 28/03/2020,28,3,2020,0,0,Dominica,DM,DMA,71625 27/03/2020,27,3,2020,4,0,Dominica,DM,DMA,71625 @@ -1945,6 +1997,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 25/03/2020,25,3,2020,1,0,Dominica,DM,DMA,71625 24/03/2020,24,3,2020,0,0,Dominica,DM,DMA,71625 23/03/2020,23,3,2020,1,0,Dominica,DM,DMA,71625 +30/03/2020,30,3,2020,140,11,Dominican_Republic,DO,DOM,10627165 29/03/2020,29,3,2020,138,8,Dominican_Republic,DO,DOM,10627165 28/03/2020,28,3,2020,93,10,Dominican_Republic,DO,DOM,10627165 27/03/2020,27,3,2020,96,0,Dominican_Republic,DO,DOM,10627165 @@ -2026,6 +2079,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Dominican_Republic,DO,DOM,10627165 01/01/2020,1,1,2020,0,0,Dominican_Republic,DO,DOM,10627165 31/12/2019,31,12,2019,0,0,Dominican_Republic,DO,DOM,10627165 +30/03/2020,30,3,2020,55,10,Ecuador,EC,ECU,17084357 29/03/2020,29,3,2020,208,7,Ecuador,EC,ECU,17084357 28/03/2020,28,3,2020,224,7,Ecuador,EC,ECU,17084357 27/03/2020,27,3,2020,192,5,Ecuador,EC,ECU,17084357 @@ -2111,6 +2165,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Ecuador,EC,ECU,17084357 01/01/2020,1,1,2020,0,0,Ecuador,EC,ECU,17084357 31/12/2019,31,12,2019,0,0,Ecuador,EC,ECU,17084357 +30/03/2020,30,3,2020,40,6,Egypt,EG,EGY,98423595 29/03/2020,29,3,2020,41,6,Egypt,EG,EGY,98423595 28/03/2020,28,3,2020,39,3,Egypt,EG,EGY,98423595 27/03/2020,27,3,2020,14,0,Egypt,EG,EGY,98423595 @@ -2197,6 +2252,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Egypt,EG,EGY,98423595 01/01/2020,1,1,2020,0,0,Egypt,EG,EGY,98423595 31/12/2019,31,12,2019,0,0,Egypt,EG,EGY,98423595 +30/03/2020,30,3,2020,11,0,El_Salvador,SV,SLV,6420744 29/03/2020,29,3,2020,6,0,El_Salvador,SV,SLV,6420744 28/03/2020,28,3,2020,0,0,El_Salvador,SV,SLV,6420744 27/03/2020,27,3,2020,0,0,El_Salvador,SV,SLV,6420744 @@ -2208,6 +2264,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 21/03/2020,21,3,2020,2,0,El_Salvador,SV,SLV,6420744 20/03/2020,20,3,2020,0,0,El_Salvador,SV,SLV,6420744 19/03/2020,19,3,2020,1,0,El_Salvador,SV,SLV,6420744 +30/03/2020,30,3,2020,1,0,Equatorial_Guinea,GQ,GNQ,1308974 29/03/2020,29,3,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974 28/03/2020,28,3,2020,1,0,Equatorial_Guinea,GQ,GNQ,1308974 27/03/2020,27,3,2020,1,0,Equatorial_Guinea,GQ,GNQ,1308974 @@ -2223,6 +2280,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974 16/03/2020,16,3,2020,0,0,Equatorial_Guinea,GQ,GNQ,1308974 15/03/2020,15,3,2020,1,0,Equatorial_Guinea,GQ,GNQ,1308974 +30/03/2020,30,3,2020,6,0,Eritrea,ER,ERI, 29/03/2020,29,3,2020,0,0,Eritrea,ER,ERI, 28/03/2020,28,3,2020,0,0,Eritrea,ER,ERI, 27/03/2020,27,3,2020,2,0,Eritrea,ER,ERI, @@ -2231,6 +2289,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 24/03/2020,24,3,2020,0,0,Eritrea,ER,ERI, 23/03/2020,23,3,2020,0,0,Eritrea,ER,ERI, 22/03/2020,22,3,2020,1,0,Eritrea,ER,ERI, +30/03/2020,30,3,2020,39,2,Estonia,EE,EST,1320884 29/03/2020,29,3,2020,65,0,Estonia,EE,EST,1320884 28/03/2020,28,3,2020,37,0,Estonia,EE,EST,1320884 27/03/2020,27,3,2020,134,0,Estonia,EE,EST,1320884 @@ -2316,6 +2375,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Estonia,EE,EST,1320884 01/01/2020,1,1,2020,0,0,Estonia,EE,EST,1320884 31/12/2019,31,12,2019,0,0,Estonia,EE,EST,1320884 +30/03/2020,30,3,2020,0,0,Eswatini,SZ,SWZ,1367000 29/03/2020,29,3,2020,0,0,Eswatini,SZ,SWZ,1367000 28/03/2020,28,3,2020,3,0,Eswatini,SZ,SWZ,1367000 27/03/2020,27,3,2020,2,0,Eswatini,SZ,SWZ,1367000 @@ -2331,6 +2391,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Eswatini,SZ,SWZ,1367000 16/03/2020,16,3,2020,0,0,Eswatini,SZ,SWZ,1367000 15/03/2020,15,3,2020,1,0,Eswatini,SZ,SWZ,1367000 +30/03/2020,30,3,2020,0,0,Ethiopia,ET,ETH,109224559 29/03/2020,29,3,2020,0,0,Ethiopia,ET,ETH,109224559 28/03/2020,28,3,2020,4,0,Ethiopia,ET,ETH,109224559 27/03/2020,27,3,2020,0,0,Ethiopia,ET,ETH,109224559 @@ -2347,6 +2408,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,3,0,Ethiopia,ET,ETH,109224559 15/03/2020,15,3,2020,0,0,Ethiopia,ET,ETH,109224559 14/03/2020,14,3,2020,1,0,Ethiopia,ET,ETH,109224559 +30/03/2020,30,3,2020,4,0,Faroe_Islands,FO,FRO,48497 29/03/2020,29,3,2020,11,0,Faroe_Islands,FO,FRO,48497 28/03/2020,28,3,2020,4,0,Faroe_Islands,FO,FRO,48497 27/03/2020,27,3,2020,8,0,Faroe_Islands,FO,FRO,48497 @@ -2357,6 +2419,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,12,0,Faroe_Islands,FO,FRO,48497 21/03/2020,21,3,2020,8,0,Faroe_Islands,FO,FRO,48497 20/03/2020,20,3,2020,72,0,Faroe_Islands,FO,FRO,48497 +30/03/2020,30,3,2020,0,0,Fiji,FJ,FJI,883483 29/03/2020,29,3,2020,0,0,Fiji,FJ,FJI,883483 28/03/2020,28,3,2020,0,0,Fiji,FJ,FJI,883483 27/03/2020,27,3,2020,0,0,Fiji,FJ,FJI,883483 @@ -2367,6 +2430,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,1,0,Fiji,FJ,FJI,883483 21/03/2020,21,3,2020,0,0,Fiji,FJ,FJI,883483 20/03/2020,20,3,2020,1,0,Fiji,FJ,FJI,883483 +30/03/2020,30,3,2020,0,2,Finland,FI,FIN,5518050 29/03/2020,29,3,2020,193,2,Finland,FI,FIN,5518050 28/03/2020,28,3,2020,67,3,Finland,FI,FIN,5518050 27/03/2020,27,3,2020,78,1,Finland,FI,FIN,5518050 @@ -2452,6 +2516,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Finland,FI,FIN,5518050 01/01/2020,1,1,2020,0,0,Finland,FI,FIN,5518050 31/12/2019,31,12,2019,0,0,Finland,FI,FIN,5518050 +30/03/2020,30,3,2020,2599,292,France,FR,FRA,66987244 29/03/2020,29,3,2020,4611,319,France,FR,FRA,66987244 28/03/2020,28,3,2020,3809,299,France,FR,FRA,66987244 27/03/2020,27,3,2020,3922,365,France,FR,FRA,66987244 @@ -2542,6 +2607,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,France,FR,FRA,66987244 01/01/2020,1,1,2020,0,0,France,FR,FRA,66987244 31/12/2019,31,12,2019,0,0,France,FR,FRA,66987244 +30/03/2020,30,3,2020,1,0,French_Polynesia,PF,PYF,277679 29/03/2020,29,3,2020,4,0,French_Polynesia,PF,PYF,277679 28/03/2020,28,3,2020,0,0,French_Polynesia,PF,PYF,277679 27/03/2020,27,3,2020,5,0,French_Polynesia,PF,PYF,277679 @@ -2553,6 +2619,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 21/03/2020,21,3,2020,12,0,French_Polynesia,PF,PYF,277679 20/03/2020,20,3,2020,0,0,French_Polynesia,PF,PYF,277679 19/03/2020,19,3,2020,3,0,French_Polynesia,PF,PYF,277679 +30/03/2020,30,3,2020,0,0,Gabon,GA,GAB,2119275 29/03/2020,29,3,2020,0,0,Gabon,GA,GAB,2119275 28/03/2020,28,3,2020,0,0,Gabon,GA,GAB,2119275 27/03/2020,27,3,2020,1,0,Gabon,GA,GAB,2119275 @@ -2569,6 +2636,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,0,0,Gabon,GA,GAB,2119275 15/03/2020,15,3,2020,0,0,Gabon,GA,GAB,2119275 13/03/2020,13,3,2020,1,0,Gabon,GA,GAB,2119275 +30/03/2020,30,3,2020,0,0,Gambia,GM,GMB,2280102 29/03/2020,29,3,2020,0,0,Gambia,GM,GMB,2280102 28/03/2020,28,3,2020,0,0,Gambia,GM,GMB,2280102 27/03/2020,27,3,2020,0,0,Gambia,GM,GMB,2280102 @@ -2581,6 +2649,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 20/03/2020,20,3,2020,0,0,Gambia,GM,GMB,2280102 19/03/2020,19,3,2020,0,0,Gambia,GM,GMB,2280102 18/03/2020,18,3,2020,1,0,Gambia,GM,GMB,2280102 +30/03/2020,30,3,2020,5,0,Georgia,GE,GEO,3731000 29/03/2020,29,3,2020,4,0,Georgia,GE,GEO,3731000 28/03/2020,28,3,2020,2,0,Georgia,GE,GEO,3731000 27/03/2020,27,3,2020,6,0,Georgia,GE,GEO,3731000 @@ -2668,6 +2737,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Georgia,GE,GEO,3731000 01/01/2020,1,1,2020,0,0,Georgia,GE,GEO,3731000 31/12/2019,31,12,2019,0,0,Georgia,GE,GEO,3731000 +30/03/2020,30,3,2020,4751,66,Germany,DE,DEU,82927922 29/03/2020,29,3,2020,3965,64,Germany,DE,DEU,82927922 28/03/2020,28,3,2020,6294,72,Germany,DE,DEU,82927922 27/03/2020,27,3,2020,5780,55,Germany,DE,DEU,82927922 @@ -2758,6 +2828,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Germany,DE,DEU,82927922 01/01/2020,1,1,2020,0,0,Germany,DE,DEU,82927922 31/12/2019,31,12,2019,0,0,Germany,DE,DEU,82927922 +30/03/2020,30,3,2020,11,0,Ghana,GH,GHA,29767108 29/03/2020,29,3,2020,4,2,Ghana,GH,GHA,29767108 28/03/2020,28,3,2020,5,0,Ghana,GH,GHA,29767108 27/03/2020,27,3,2020,64,0,Ghana,GH,GHA,29767108 @@ -2774,6 +2845,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,0,0,Ghana,GH,GHA,29767108 15/03/2020,15,3,2020,0,0,Ghana,GH,GHA,29767108 13/03/2020,13,3,2020,2,0,Ghana,GH,GHA,29767108 +30/03/2020,30,3,2020,9,0,Gibraltar,GI,GIB,33718 29/03/2020,29,3,2020,1,0,Gibraltar,GI,GIB,33718 28/03/2020,28,3,2020,20,0,Gibraltar,GI,GIB,33718 27/03/2020,27,3,2020,9,0,Gibraltar,GI,GIB,33718 @@ -2784,6 +2856,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,0,0,Gibraltar,GI,GIB,33718 21/03/2020,21,3,2020,0,0,Gibraltar,GI,GIB,33718 20/03/2020,20,3,2020,10,0,Gibraltar,GI,GIB,33718 +30/03/2020,30,3,2020,95,6,Greece,EL,GRC,10727668 29/03/2020,29,3,2020,95,4,Greece,EL,GRC,10727668 28/03/2020,28,3,2020,74,2,Greece,EL,GRC,10727668 27/03/2020,27,3,2020,71,4,Greece,EL,GRC,10727668 @@ -2872,6 +2945,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Greece,EL,GRC,10727668 01/01/2020,1,1,2020,0,0,Greece,EL,GRC,10727668 31/12/2019,31,12,2019,0,0,Greece,EL,GRC,10727668 +30/03/2020,30,3,2020,0,0,Greenland,GL,GRL,56025 29/03/2020,29,3,2020,1,0,Greenland,GL,GRL,56025 28/03/2020,28,3,2020,3,0,Greenland,GL,GRL,56025 27/03/2020,27,3,2020,1,0,Greenland,GL,GRL,56025 @@ -2882,6 +2956,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,0,0,Greenland,GL,GRL,56025 21/03/2020,21,3,2020,0,0,Greenland,GL,GRL,56025 20/03/2020,20,3,2020,2,0,Greenland,GL,GRL,56025 +30/03/2020,30,3,2020,0,0,Grenada,GD,GRD,111454 29/03/2020,29,3,2020,2,0,Grenada,GD,GRD,111454 28/03/2020,28,3,2020,0,0,Grenada,GD,GRD,111454 27/03/2020,27,3,2020,6,0,Grenada,GD,GRD,111454 @@ -2889,6 +2964,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 25/03/2020,25,3,2020,0,0,Grenada,GD,GRD,111454 24/03/2020,24,3,2020,0,0,Grenada,GD,GRD,111454 23/03/2020,23,3,2020,1,0,Grenada,GD,GRD,111454 +30/03/2020,30,3,2020,1,0,Guam,GU,GUM,165768 29/03/2020,29,3,2020,4,0,Guam,GU,GUM,165768 28/03/2020,28,3,2020,2,0,Guam,GU,GUM,165768 27/03/2020,27,3,2020,12,0,Guam,GU,GUM,165768 @@ -2900,6 +2976,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 21/03/2020,21,3,2020,2,0,Guam,GU,GUM,165768 20/03/2020,20,3,2020,9,0,Guam,GU,GUM,165768 19/03/2020,19,3,2020,3,0,Guam,GU,GUM,165768 +30/03/2020,30,3,2020,2,0,Guatemala,GT,GTM,17247807 29/03/2020,29,3,2020,2,0,Guatemala,GT,GTM,17247807 28/03/2020,28,3,2020,7,0,Guatemala,GT,GTM,17247807 27/03/2020,27,3,2020,1,0,Guatemala,GT,GTM,17247807 @@ -2915,6 +2992,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,5,0,Guatemala,GT,GTM,17247807 16/03/2020,16,3,2020,0,1,Guatemala,GT,GTM,17247807 15/03/2020,15,3,2020,1,0,Guatemala,GT,GTM,17247807 +30/03/2020,30,3,2020,6,0,Guernsey,GG,GGY,63026 29/03/2020,29,3,2020,3,0,Guernsey,GG,GGY,63026 28/03/2020,28,3,2020,2,0,Guernsey,GG,GGY,63026 27/03/2020,27,3,2020,4,0,Guernsey,GG,GGY,63026 @@ -2925,6 +3003,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,0,0,Guernsey,GG,GGY,63026 21/03/2020,21,3,2020,0,0,Guernsey,GG,GGY,63026 20/03/2020,20,3,2020,1,0,Guernsey,GG,GGY,63026 +30/03/2020,30,3,2020,0,0,Guinea,GN,GIN,12414318 29/03/2020,29,3,2020,3,0,Guinea,GN,GIN,12414318 28/03/2020,28,3,2020,0,0,Guinea,GN,GIN,12414318 27/03/2020,27,3,2020,1,0,Guinea,GN,GIN,12414318 @@ -2940,9 +3019,11 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Guinea,GN,GIN,12414318 15/03/2020,15,3,2020,0,0,Guinea,GN,GIN,12414318 14/03/2020,14,3,2020,1,0,Guinea,GN,GIN,12414318 +30/03/2020,30,3,2020,0,0,Guinea_Bissau,GW,GNB,1874309 29/03/2020,29,3,2020,0,0,Guinea_Bissau,GW,GNB,1874309 28/03/2020,28,3,2020,0,0,Guinea_Bissau,GW,GNB,1874309 27/03/2020,27,3,2020,2,0,Guinea_Bissau,GW,GNB,1874309 +30/03/2020,30,3,2020,0,0,Guyana,GY,GUY,779004 29/03/2020,29,3,2020,3,0,Guyana,GY,GUY,779004 28/03/2020,28,3,2020,0,0,Guyana,GY,GUY,779004 27/03/2020,27,3,2020,0,0,Guyana,GY,GUY,779004 @@ -2958,6 +3039,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Guyana,GY,GUY,779004 16/03/2020,16,3,2020,3,0,Guyana,GY,GUY,779004 13/03/2020,13,3,2020,1,1,Guyana,GY,GUY,779004 +30/03/2020,30,3,2020,7,0,Haiti,HT,HTI,11123176 29/03/2020,29,3,2020,0,0,Haiti,HT,HTI,11123176 28/03/2020,28,3,2020,0,0,Haiti,HT,HTI,11123176 27/03/2020,27,3,2020,0,0,Haiti,HT,HTI,11123176 @@ -2968,6 +3050,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,0,0,Haiti,HT,HTI,11123176 21/03/2020,21,3,2020,0,0,Haiti,HT,HTI,11123176 20/03/2020,20,3,2020,2,0,Haiti,HT,HTI,11123176 +30/03/2020,30,3,2020,0,0,Holy_See,VA,VAT,1000 29/03/2020,29,3,2020,1,0,Holy_See,VA,VAT,1000 28/03/2020,28,3,2020,0,0,Holy_See,VA,VAT,1000 27/03/2020,27,3,2020,4,0,Holy_See,VA,VAT,1000 @@ -2983,6 +3066,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Holy_See,VA,VAT,1000 16/03/2020,16,3,2020,0,0,Holy_See,VA,VAT,1000 07/03/2020,7,3,2020,1,0,Holy_See,VA,VAT,1000 +30/03/2020,30,3,2020,29,1,Honduras,HN,HND,9587522 29/03/2020,29,3,2020,15,1,Honduras,HN,HND,9587522 28/03/2020,28,3,2020,28,0,Honduras,HN,HND,9587522 27/03/2020,27,3,2020,15,1,Honduras,HN,HND,9587522 @@ -2999,6 +3083,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,3,0,Honduras,HN,HND,9587522 14/03/2020,14,3,2020,1,0,Honduras,HN,HND,9587522 12/03/2020,12,3,2020,2,0,Honduras,HN,HND,9587522 +30/03/2020,30,3,2020,39,2,Hungary,HU,HUN,9768785 29/03/2020,29,3,2020,65,2,Hungary,HU,HUN,9768785 28/03/2020,28,3,2020,43,1,Hungary,HU,HUN,9768785 27/03/2020,27,3,2020,39,0,Hungary,HU,HUN,9768785 @@ -3023,6 +3108,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 08/03/2020,8,3,2020,3,0,Hungary,HU,HUN,9768785 07/03/2020,7,3,2020,2,0,Hungary,HU,HUN,9768785 05/03/2020,5,3,2020,2,0,Hungary,HU,HUN,9768785 +30/03/2020,30,3,2020,57,0,Iceland,IS,ISL,353574 29/03/2020,29,3,2020,73,0,Iceland,IS,ISL,353574 28/03/2020,28,3,2020,88,0,Iceland,IS,ISL,353574 27/03/2020,27,3,2020,65,0,Iceland,IS,ISL,353574 @@ -3113,6 +3199,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Iceland,IS,ISL,353574 01/01/2020,1,1,2020,0,0,Iceland,IS,ISL,353574 31/12/2019,31,12,2019,0,0,Iceland,IS,ISL,353574 +30/03/2020,30,3,2020,92,4,India,IN,IND,1352617328 29/03/2020,29,3,2020,106,6,India,IN,IND,1352617328 28/03/2020,28,3,2020,149,2,India,IN,IND,1352617328 27/03/2020,27,3,2020,75,4,India,IN,IND,1352617328 @@ -3202,6 +3289,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,India,IN,IND,1352617328 01/01/2020,1,1,2020,0,0,India,IN,IND,1352617328 31/12/2019,31,12,2019,0,0,India,IN,IND,1352617328 +30/03/2020,30,3,2020,130,12,Indonesia,ID,IDN,267663435 29/03/2020,29,3,2020,109,15,Indonesia,ID,IDN,267663435 28/03/2020,28,3,2020,153,9,Indonesia,ID,IDN,267663435 27/03/2020,27,3,2020,103,20,Indonesia,ID,IDN,267663435 @@ -3285,6 +3373,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Indonesia,ID,IDN,267663435 01/01/2020,1,1,2020,0,0,Indonesia,ID,IDN,267663435 31/12/2019,31,12,2019,0,0,Indonesia,ID,IDN,267663435 +30/03/2020,30,3,2020,2901,123,Iran,IR,IRN,81800269 29/03/2020,29,3,2020,3076,139,Iran,IR,IRN,81800269 28/03/2020,28,3,2020,2926,144,Iran,IR,IRN,81800269 27/03/2020,27,3,2020,2389,157,Iran,IR,IRN,81800269 @@ -3375,6 +3464,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Iran,IR,IRN,81800269 01/01/2020,1,1,2020,0,0,Iran,IR,IRN,81800269 31/12/2019,31,12,2019,0,0,Iran,IR,IRN,81800269 +30/03/2020,30,3,2020,41,0,Iraq,IQ,IRQ,38433600 29/03/2020,29,3,2020,48,2,Iraq,IQ,IRQ,38433600 28/03/2020,28,3,2020,76,4,Iraq,IQ,IRQ,38433600 27/03/2020,27,3,2020,36,7,Iraq,IQ,IRQ,38433600 @@ -3463,6 +3553,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Iraq,IQ,IRQ,38433600 01/01/2020,1,1,2020,0,0,Iraq,IQ,IRQ,38433600 31/12/2019,31,12,2019,0,0,Iraq,IQ,IRQ,38433600 +30/03/2020,30,3,2020,200,10,Ireland,IE,IRL,4853506 29/03/2020,29,3,2020,294,14,Ireland,IE,IRL,4853506 28/03/2020,28,3,2020,302,3,Ireland,IE,IRL,4853506 27/03/2020,27,3,2020,255,10,Ireland,IE,IRL,4853506 @@ -3551,6 +3642,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Ireland,IE,IRL,4853506 01/01/2020,1,1,2020,0,0,Ireland,IE,IRL,4853506 31/12/2019,31,12,2019,0,0,Ireland,IE,IRL,4853506 +30/03/2020,30,3,2020,10,0,Isle_of_Man,IM,IMN,84077 29/03/2020,29,3,2020,3,0,Isle_of_Man,IM,IMN,84077 28/03/2020,28,3,2020,3,0,Isle_of_Man,IM,IMN,84077 27/03/2020,27,3,2020,3,0,Isle_of_Man,IM,IMN,84077 @@ -3560,6 +3652,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 23/03/2020,23,3,2020,0,0,Isle_of_Man,IM,IMN,84077 22/03/2020,22,3,2020,1,0,Isle_of_Man,IM,IMN,84077 21/03/2020,21,3,2020,1,0,Isle_of_Man,IM,IMN,84077 +30/03/2020,30,3,2020,628,3,Israel,IL,ISR,8883800 29/03/2020,29,3,2020,584,2,Israel,IL,ISR,8883800 28/03/2020,28,3,2020,369,2,Israel,IL,ISR,8883800 27/03/2020,27,3,2020,297,3,Israel,IL,ISR,8883800 @@ -3647,6 +3740,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Israel,IL,ISR,8883800 01/01/2020,1,1,2020,0,0,Israel,IL,ISR,8883800 31/12/2019,31,12,2019,0,0,Israel,IL,ISR,8883800 +30/03/2020,30,3,2020,5217,758,Italy,IT,ITA,60431283 29/03/2020,29,3,2020,5974,887,Italy,IT,ITA,60431283 28/03/2020,28,3,2020,5959,971,Italy,IT,ITA,60431283 27/03/2020,27,3,2020,6153,660,Italy,IT,ITA,60431283 @@ -3737,6 +3831,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Italy,IT,ITA,60431283 01/01/2020,1,1,2020,0,0,Italy,IT,ITA,60431283 31/12/2019,31,12,2019,0,0,Italy,IT,ITA,60431283 +30/03/2020,30,3,2020,2,0,Jamaica,JM,JAM,2934855 29/03/2020,29,3,2020,6,0,Jamaica,JM,JAM,2934855 28/03/2020,28,3,2020,0,0,Jamaica,JM,JAM,2934855 27/03/2020,27,3,2020,1,0,Jamaica,JM,JAM,2934855 @@ -3754,6 +3849,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 14/03/2020,14,3,2020,2,0,Jamaica,JM,JAM,2934855 13/03/2020,13,3,2020,4,0,Jamaica,JM,JAM,2934855 12/03/2020,12,3,2020,2,0,Jamaica,JM,JAM,2934855 +30/03/2020,30,3,2020,173,2,Japan,JP,JPN,126529100 29/03/2020,29,3,2020,194,3,Japan,JP,JPN,126529100 28/03/2020,28,3,2020,135,3,Japan,JP,JPN,126529100 27/03/2020,27,3,2020,96,1,Japan,JP,JPN,126529100 @@ -3844,6 +3940,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Japan,JP,JPN,126529100 01/01/2020,1,1,2020,0,0,Japan,JP,JPN,126529100 31/12/2019,31,12,2019,0,0,Japan,JP,JPN,126529100 +30/03/2020,30,3,2020,2,1,Jersey,JE,JEY,106800 29/03/2020,29,3,2020,9,0,Jersey,JE,JEY,106800 28/03/2020,28,3,2020,20,0,Jersey,JE,JEY,106800 27/03/2020,27,3,2020,14,1,Jersey,JE,JEY,106800 @@ -3854,6 +3951,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,0,0,Jersey,JE,JEY,106800 21/03/2020,21,3,2020,7,0,Jersey,JE,JEY,106800 20/03/2020,20,3,2020,5,0,Jersey,JE,JEY,106800 +30/03/2020,30,3,2020,24,0,Jordan,JO,JOR,9956011 29/03/2020,29,3,2020,23,1,Jordan,JO,JOR,9956011 28/03/2020,28,3,2020,40,0,Jordan,JO,JOR,9956011 27/03/2020,27,3,2020,19,0,Jordan,JO,JOR,9956011 @@ -3871,6 +3969,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 15/03/2020,15,3,2020,0,0,Jordan,JO,JOR,9956011 08/03/2020,8,3,2020,0,0,Jordan,JO,JOR,9956011 03/03/2020,3,3,2020,1,0,Jordan,JO,JOR,9956011 +30/03/2020,30,3,2020,55,1,Kazakhstan,KZ,KAZ,18276499 29/03/2020,29,3,2020,36,0,Kazakhstan,KZ,KAZ,18276499 28/03/2020,28,3,2020,73,0,Kazakhstan,KZ,KAZ,18276499 27/03/2020,27,3,2020,32,0,Kazakhstan,KZ,KAZ,18276499 @@ -3886,6 +3985,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,2,0,Kazakhstan,KZ,KAZ,18276499 16/03/2020,16,3,2020,3,0,Kazakhstan,KZ,KAZ,18276499 15/03/2020,15,3,2020,6,0,Kazakhstan,KZ,KAZ,18276499 +30/03/2020,30,3,2020,4,0,Kenya,KE,KEN,51393010 29/03/2020,29,3,2020,7,0,Kenya,KE,KEN,51393010 28/03/2020,28,3,2020,0,0,Kenya,KE,KEN,51393010 27/03/2020,27,3,2020,6,1,Kenya,KE,KEN,51393010 @@ -3902,6 +4002,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,2,0,Kenya,KE,KEN,51393010 15/03/2020,15,3,2020,0,0,Kenya,KE,KEN,51393010 14/03/2020,14,3,2020,1,0,Kenya,KE,KEN,51393010 +30/03/2020,30,3,2020,0,0,Kosovo,XK,XKX,1845300 29/03/2020,29,3,2020,0,0,Kosovo,XK,XKX,1845300 28/03/2020,28,3,2020,7,0,Kosovo,XK,XKX,1845300 27/03/2020,27,3,2020,8,0,Kosovo,XK,XKX,1845300 @@ -3916,6 +4017,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 18/03/2020,18,3,2020,17,0,Kosovo,XK,XKX,1845300 17/03/2020,17,3,2020,0,0,Kosovo,XK,XKX,1845300 16/03/2020,16,3,2020,2,0,Kosovo,XK,XKX,1845300 +30/03/2020,30,3,2020,20,0,Kuwait,KW,KWT,4137309 29/03/2020,29,3,2020,10,0,Kuwait,KW,KWT,4137309 28/03/2020,28,3,2020,17,0,Kuwait,KW,KWT,4137309 27/03/2020,27,3,2020,13,0,Kuwait,KW,KWT,4137309 @@ -4003,6 +4105,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Kuwait,KW,KWT,4137309 01/01/2020,1,1,2020,0,0,Kuwait,KW,KWT,4137309 31/12/2019,31,12,2019,0,0,Kuwait,KW,KWT,4137309 +30/03/2020,30,3,2020,0,0,Kyrgyzstan,KG,KGZ,6315800 29/03/2020,29,3,2020,26,0,Kyrgyzstan,KG,KGZ,6315800 28/03/2020,28,3,2020,14,0,Kyrgyzstan,KG,KGZ,6315800 27/03/2020,27,3,2020,0,0,Kyrgyzstan,KG,KGZ,6315800 @@ -4014,11 +4117,13 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 21/03/2020,21,3,2020,0,0,Kyrgyzstan,KG,KGZ,6315800 20/03/2020,20,3,2020,3,0,Kyrgyzstan,KG,KGZ,6315800 19/03/2020,19,3,2020,3,0,Kyrgyzstan,KG,KGZ,6315800 +30/03/2020,30,3,2020,0,0,Laos,LA,LAO,7061507 29/03/2020,29,3,2020,0,0,Laos,LA,LAO,7061507 28/03/2020,28,3,2020,0,0,Laos,LA,LAO,7061507 27/03/2020,27,3,2020,4,0,Laos,LA,LAO,7061507 26/03/2020,26,3,2020,0,0,Laos,LA,LAO,7061507 25/03/2020,25,3,2020,2,0,Laos,LA,LAO,7061507 +30/03/2020,30,3,2020,71,0,Latvia,LV,LVA,1926542 29/03/2020,29,3,2020,25,0,Latvia,LV,LVA,1926542 28/03/2020,28,3,2020,36,0,Latvia,LV,LVA,1926542 27/03/2020,27,3,2020,23,0,Latvia,LV,LVA,1926542 @@ -4042,6 +4147,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 09/03/2020,9,3,2020,1,0,Latvia,LV,LVA,1926542 08/03/2020,8,3,2020,1,0,Latvia,LV,LVA,1926542 03/03/2020,3,3,2020,1,0,Latvia,LV,LVA,1926542 +30/03/2020,30,3,2020,26,2,Lebanon,LB,LBN,6848925 29/03/2020,29,3,2020,21,1,Lebanon,LB,LBN,6848925 28/03/2020,28,3,2020,23,1,Lebanon,LB,LBN,6848925 27/03/2020,27,3,2020,35,2,Lebanon,LB,LBN,6848925 @@ -4128,6 +4234,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Lebanon,LB,LBN,6848925 01/01/2020,1,1,2020,0,0,Lebanon,LB,LBN,6848925 31/12/2019,31,12,2019,0,0,Lebanon,LB,LBN,6848925 +30/03/2020,30,3,2020,0,0,Liberia,LR,LBR,4818977 29/03/2020,29,3,2020,0,0,Liberia,LR,LBR,4818977 28/03/2020,28,3,2020,0,0,Liberia,LR,LBR,4818977 27/03/2020,27,3,2020,0,0,Liberia,LR,LBR,4818977 @@ -4141,11 +4248,13 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 19/03/2020,19,3,2020,0,0,Liberia,LR,LBR,4818977 18/03/2020,18,3,2020,1,0,Liberia,LR,LBR,4818977 17/03/2020,17,3,2020,1,0,Liberia,LR,LBR,4818977 +30/03/2020,30,3,2020,7,0,Libya,LY,LBY,6678567 29/03/2020,29,3,2020,0,0,Libya,LY,LBY,6678567 28/03/2020,28,3,2020,0,0,Libya,LY,LBY,6678567 27/03/2020,27,3,2020,0,0,Libya,LY,LBY,6678567 26/03/2020,26,3,2020,0,0,Libya,LY,LBY,6678567 25/03/2020,25,3,2020,1,0,Libya,LY,LBY,6678567 +30/03/2020,30,3,2020,1,0,Liechtenstein,LI,LIE,37910 29/03/2020,29,3,2020,1,0,Liechtenstein,LI,LIE,37910 28/03/2020,28,3,2020,4,0,Liechtenstein,LI,LIE,37910 27/03/2020,27,3,2020,5,0,Liechtenstein,LI,LIE,37910 @@ -4165,6 +4274,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 13/03/2020,13,3,2020,1,0,Liechtenstein,LI,LIE,37910 12/03/2020,12,3,2020,2,0,Liechtenstein,LI,LIE,37910 05/03/2020,5,3,2020,1,0,Liechtenstein,LI,LIE,37910 +30/03/2020,30,3,2020,90,0,Lithuania,LT,LTU,2789533 29/03/2020,29,3,2020,36,2,Lithuania,LT,LTU,2789533 28/03/2020,28,3,2020,59,1,Lithuania,LT,LTU,2789533 27/03/2020,27,3,2020,25,0,Lithuania,LT,LTU,2789533 @@ -4246,6 +4356,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Lithuania,LT,LTU,2789533 01/01/2020,1,1,2020,0,0,Lithuania,LT,LTU,2789533 31/12/2019,31,12,2019,0,0,Lithuania,LT,LTU,2789533 +30/03/2020,30,3,2020,119,3,Luxembourg,LU,LUX,607728 29/03/2020,29,3,2020,226,3,Luxembourg,LU,LUX,607728 28/03/2020,28,3,2020,152,6,Luxembourg,LU,LUX,607728 27/03/2020,27,3,2020,120,1,Luxembourg,LU,LUX,607728 @@ -4329,6 +4440,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Luxembourg,LU,LUX,607728 01/01/2020,1,1,2020,0,0,Luxembourg,LU,LUX,607728 31/12/2019,31,12,2019,0,0,Luxembourg,LU,LUX,607728 +30/03/2020,30,3,2020,9,0,Madagascar,MG,MDG,26262368 29/03/2020,29,3,2020,4,0,Madagascar,MG,MDG,26262368 28/03/2020,28,3,2020,1,0,Madagascar,MG,MDG,26262368 27/03/2020,27,3,2020,4,0,Madagascar,MG,MDG,26262368 @@ -4338,6 +4450,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 23/03/2020,23,3,2020,0,0,Madagascar,MG,MDG,26262368 22/03/2020,22,3,2020,0,0,Madagascar,MG,MDG,26262368 21/03/2020,21,3,2020,3,0,Madagascar,MG,MDG,26262368 +30/03/2020,30,3,2020,150,7,Malaysia,MY,MYS,31528585 29/03/2020,29,3,2020,159,1,Malaysia,MY,MYS,31528585 28/03/2020,28,3,2020,130,3,Malaysia,MY,MYS,31528585 27/03/2020,27,3,2020,235,4,Malaysia,MY,MYS,31528585 @@ -4427,6 +4540,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Malaysia,MY,MYS,31528585 01/01/2020,1,1,2020,0,0,Malaysia,MY,MYS,31528585 31/12/2019,31,12,2019,0,0,Malaysia,MY,MYS,31528585 +30/03/2020,30,3,2020,1,0,Maldives,MV,MDV,515696 29/03/2020,29,3,2020,2,0,Maldives,MV,MDV,515696 28/03/2020,28,3,2020,1,0,Maldives,MV,MDV,515696 27/03/2020,27,3,2020,0,0,Maldives,MV,MDV,515696 @@ -4447,10 +4561,12 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 11/03/2020,11,3,2020,2,0,Maldives,MV,MDV,515696 09/03/2020,9,3,2020,2,0,Maldives,MV,MDV,515696 08/03/2020,8,3,2020,2,0,Maldives,MV,MDV,515696 +30/03/2020,30,3,2020,9,0,Mali,ML,MLI,19077690 29/03/2020,29,3,2020,5,0,Mali,ML,MLI,19077690 28/03/2020,28,3,2020,0,0,Mali,ML,MLI,19077690 27/03/2020,27,3,2020,2,0,Mali,ML,MLI,19077690 26/03/2020,26,3,2020,2,0,Mali,ML,MLI,19077690 +30/03/2020,30,3,2020,12,0,Malta,MT,MLT,483530 29/03/2020,29,3,2020,0,0,Malta,MT,MLT,483530 28/03/2020,28,3,2020,5,0,Malta,MT,MLT,483530 27/03/2020,27,3,2020,5,0,Malta,MT,MLT,483530 @@ -4471,6 +4587,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 12/03/2020,12,3,2020,2,0,Malta,MT,MLT,483530 10/03/2020,10,3,2020,1,0,Malta,MT,MLT,483530 08/03/2020,8,3,2020,3,0,Malta,MT,MLT,483530 +30/03/2020,30,3,2020,0,0,Mauritania,MR,MRT,4403319 29/03/2020,29,3,2020,2,0,Mauritania,MR,MRT,4403319 28/03/2020,28,3,2020,0,0,Mauritania,MR,MRT,4403319 27/03/2020,27,3,2020,1,0,Mauritania,MR,MRT,4403319 @@ -4486,6 +4603,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Mauritania,MR,MRT,4403319 16/03/2020,16,3,2020,0,0,Mauritania,MR,MRT,4403319 15/03/2020,15,3,2020,1,0,Mauritania,MR,MRT,4403319 +30/03/2020,30,3,2020,8,1,Mauritius,MU,MUS,1265303 29/03/2020,29,3,2020,8,0,Mauritius,MU,MUS,1265303 28/03/2020,28,3,2020,13,0,Mauritius,MU,MUS,1265303 27/03/2020,27,3,2020,33,0,Mauritius,MU,MUS,1265303 @@ -4496,6 +4614,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,2,1,Mauritius,MU,MUS,1265303 21/03/2020,21,3,2020,9,0,Mauritius,MU,MUS,1265303 20/03/2020,20,3,2020,3,0,Mauritius,MU,MUS,1265303 +30/03/2020,30,3,2020,145,4,Mexico,MX,MEX,126190788 29/03/2020,29,3,2020,131,4,Mexico,MX,MEX,126190788 28/03/2020,28,3,2020,132,4,Mexico,MX,MEX,126190788 27/03/2020,27,3,2020,110,3,Mexico,MX,MEX,126190788 @@ -4578,6 +4697,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Mexico,MX,MEX,126190788 01/01/2020,1,1,2020,0,0,Mexico,MX,MEX,126190788 31/12/2019,31,12,2019,0,0,Mexico,MX,MEX,126190788 +30/03/2020,30,3,2020,32,0,Moldova,MD,MDA,3545883 29/03/2020,29,3,2020,32,0,Moldova,MD,MDA,3545883 28/03/2020,28,3,2020,22,1,Moldova,MD,MDA,3545883 27/03/2020,27,3,2020,28,0,Moldova,MD,MDA,3545883 @@ -4598,6 +4718,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 12/03/2020,12,3,2020,1,0,Moldova,MD,MDA,3545883 11/03/2020,11,3,2020,2,0,Moldova,MD,MDA,3545883 08/03/2020,8,3,2020,1,0,Moldova,MD,MDA,3545883 +30/03/2020,30,3,2020,3,0,Monaco,MC,MCO,38682 29/03/2020,29,3,2020,1,0,Monaco,MC,MCO,38682 28/03/2020,28,3,2020,9,0,Monaco,MC,MCO,38682 27/03/2020,27,3,2020,2,0,Monaco,MC,MCO,38682 @@ -4676,6 +4797,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Monaco,MC,MCO,38682 01/01/2020,1,1,2020,0,0,Monaco,MC,MCO,38682 31/12/2019,31,12,2019,0,0,Monaco,MC,MCO,38682 +30/03/2020,30,3,2020,0,0,Mongolia,MN,MNG,3170208 29/03/2020,29,3,2020,1,0,Mongolia,MN,MNG,3170208 28/03/2020,28,3,2020,0,0,Mongolia,MN,MNG,3170208 27/03/2020,27,3,2020,1,0,Mongolia,MN,MNG,3170208 @@ -4690,6 +4812,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 18/03/2020,18,3,2020,3,0,Mongolia,MN,MNG,3170208 15/03/2020,15,3,2020,0,0,Mongolia,MN,MNG,3170208 10/03/2020,10,3,2020,1,0,Mongolia,MN,MNG,3170208 +30/03/2020,30,3,2020,1,0,Montenegro,ME,MNE,622345 29/03/2020,29,3,2020,9,0,Montenegro,ME,MNE,622345 28/03/2020,28,3,2020,8,0,Montenegro,ME,MNE,622345 27/03/2020,27,3,2020,14,1,Montenegro,ME,MNE,622345 @@ -4702,6 +4825,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 20/03/2020,20,3,2020,5,0,Montenegro,ME,MNE,622345 19/03/2020,19,3,2020,6,0,Montenegro,ME,MNE,622345 18/03/2020,18,3,2020,2,0,Montenegro,ME,MNE,622345 +30/03/2020,30,3,2020,0,0,Montserrat,MS,MSR,5900 29/03/2020,29,3,2020,0,0,Montserrat,MS,MSR,5900 28/03/2020,28,3,2020,0,0,Montserrat,MS,MSR,5900 27/03/2020,27,3,2020,4,0,Montserrat,MS,MSR,5900 @@ -4711,6 +4835,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 23/03/2020,23,3,2020,0,0,Montserrat,MS,MSR,5900 22/03/2020,22,3,2020,0,0,Montserrat,MS,MSR,5900 21/03/2020,21,3,2020,1,0,Montserrat,MS,MSR,5900 +30/03/2020,30,3,2020,121,3,Morocco,MA,MAR,36029138 29/03/2020,29,3,2020,13,0,Morocco,MA,MAR,36029138 28/03/2020,28,3,2020,70,13,Morocco,MA,MAR,36029138 27/03/2020,27,3,2020,50,4,Morocco,MA,MAR,36029138 @@ -4731,6 +4856,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 12/03/2020,12,3,2020,3,1,Morocco,MA,MAR,36029138 06/03/2020,6,3,2020,1,0,Morocco,MA,MAR,36029138 03/03/2020,3,3,2020,1,0,Morocco,MA,MAR,36029138 +30/03/2020,30,3,2020,0,0,Mozambique,MZ,MOZ,29495962 29/03/2020,29,3,2020,1,0,Mozambique,MZ,MOZ,29495962 28/03/2020,28,3,2020,0,0,Mozambique,MZ,MOZ,29495962 27/03/2020,27,3,2020,2,0,Mozambique,MZ,MOZ,29495962 @@ -4738,6 +4864,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 25/03/2020,25,3,2020,0,0,Mozambique,MZ,MOZ,29495962 24/03/2020,24,3,2020,0,0,Mozambique,MZ,MOZ,29495962 23/03/2020,23,3,2020,1,0,Mozambique,MZ,MOZ,29495962 +30/03/2020,30,3,2020,0,0,Myanmar,MM,MMR,53708395 29/03/2020,29,3,2020,3,0,Myanmar,MM,MMR,53708395 28/03/2020,28,3,2020,0,0,Myanmar,MM,MMR,53708395 27/03/2020,27,3,2020,2,0,Myanmar,MM,MMR,53708395 @@ -4745,6 +4872,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 25/03/2020,25,3,2020,1,0,Myanmar,MM,MMR,53708395 24/03/2020,24,3,2020,2,0,Myanmar,MM,MMR,53708395 17/03/2020,17,3,2020,0,0,Myanmar,MM,MMR,53708395 +30/03/2020,30,3,2020,3,0,Namibia,NA,NAM,2448255 29/03/2020,29,3,2020,0,0,Namibia,NA,NAM,2448255 28/03/2020,28,3,2020,0,0,Namibia,NA,NAM,2448255 27/03/2020,27,3,2020,4,0,Namibia,NA,NAM,2448255 @@ -4760,6 +4888,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Namibia,NA,NAM,2448255 16/03/2020,16,3,2020,0,0,Namibia,NA,NAM,2448255 15/03/2020,15,3,2020,2,0,Namibia,NA,NAM,2448255 +30/03/2020,30,3,2020,0,0,Nepal,NP,NPL,28087871 29/03/2020,29,3,2020,2,0,Nepal,NP,NPL,28087871 28/03/2020,28,3,2020,0,0,Nepal,NP,NPL,28087871 27/03/2020,27,3,2020,0,0,Nepal,NP,NPL,28087871 @@ -4837,6 +4966,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Nepal,NP,NPL,28087871 01/01/2020,1,1,2020,0,0,Nepal,NP,NPL,28087871 31/12/2019,31,12,2019,0,0,Nepal,NP,NPL,28087871 +30/03/2020,30,3,2020,1104,132,Netherlands,NL,NLD,17231017 29/03/2020,29,3,2020,1159,93,Netherlands,NL,NLD,17231017 28/03/2020,28,3,2020,1172,112,Netherlands,NL,NLD,17231017 27/03/2020,27,3,2020,1019,78,Netherlands,NL,NLD,17231017 @@ -4927,6 +5057,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Netherlands,NL,NLD,17231017 01/01/2020,1,1,2020,0,0,Netherlands,NL,NLD,17231017 31/12/2019,31,12,2019,0,0,Netherlands,NL,NLD,17231017 +30/03/2020,30,3,2020,0,0,New_Caledonia,NC,NCL,284060 29/03/2020,29,3,2020,0,0,New_Caledonia,NC,NCL,284060 28/03/2020,28,3,2020,0,0,New_Caledonia,NC,NCL,284060 27/03/2020,27,3,2020,1,0,New_Caledonia,NC,NCL,284060 @@ -4936,6 +5067,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 23/03/2020,23,3,2020,1,0,New_Caledonia,NC,NCL,284060 22/03/2020,22,3,2020,2,0,New_Caledonia,NC,NCL,284060 21/03/2020,21,3,2020,2,0,New_Caledonia,NC,NCL,284060 +30/03/2020,30,3,2020,76,0,New_Zealand,NZ,NZL,4885500 29/03/2020,29,3,2020,60,1,New_Zealand,NZ,NZL,4885500 28/03/2020,28,3,2020,78,0,New_Zealand,NZ,NZL,4885500 27/03/2020,27,3,2020,76,0,New_Zealand,NZ,NZL,4885500 @@ -5017,6 +5149,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,New_Zealand,NZ,NZL,4885500 01/01/2020,1,1,2020,0,0,New_Zealand,NZ,NZL,4885500 31/12/2019,31,12,2019,0,0,New_Zealand,NZ,NZL,4885500 +30/03/2020,30,3,2020,0,0,Nicaragua,NI,NIC,6465513 29/03/2020,29,3,2020,1,0,Nicaragua,NI,NIC,6465513 28/03/2020,28,3,2020,0,1,Nicaragua,NI,NIC,6465513 27/03/2020,27,3,2020,0,0,Nicaragua,NI,NIC,6465513 @@ -5028,6 +5161,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 21/03/2020,21,3,2020,0,0,Nicaragua,NI,NIC,6465513 20/03/2020,20,3,2020,0,0,Nicaragua,NI,NIC,6465513 19/03/2020,19,3,2020,1,0,Nicaragua,NI,NIC,6465513 +30/03/2020,30,3,2020,0,0,Niger,NE,NER,22442948 29/03/2020,29,3,2020,0,0,Niger,NE,NER,22442948 28/03/2020,28,3,2020,0,0,Niger,NE,NER,22442948 27/03/2020,27,3,2020,3,0,Niger,NE,NER,22442948 @@ -5037,6 +5171,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 23/03/2020,23,3,2020,0,0,Niger,NE,NER,22442948 22/03/2020,22,3,2020,0,0,Niger,NE,NER,22442948 21/03/2020,21,3,2020,1,0,Niger,NE,NER,22442948 +30/03/2020,30,3,2020,0,0,Nigeria,NG,NGA,195874740 29/03/2020,29,3,2020,16,0,Nigeria,NG,NGA,195874740 28/03/2020,28,3,2020,16,0,Nigeria,NG,NGA,195874740 27/03/2020,27,3,2020,14,0,Nigeria,NG,NGA,195874740 @@ -5116,6 +5251,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Nigeria,NG,NGA,195874740 01/01/2020,1,1,2020,0,0,Nigeria,NG,NGA,195874740 31/12/2019,31,12,2019,0,0,Nigeria,NG,NGA,195874740 +30/03/2020,30,3,2020,18,2,North_Macedonia,MK,MKD,2082958 29/03/2020,29,3,2020,22,1,North_Macedonia,MK,MKD,2082958 28/03/2020,28,3,2020,18,0,North_Macedonia,MK,MKD,2082958 27/03/2020,27,3,2020,24,1,North_Macedonia,MK,MKD,2082958 @@ -5197,6 +5333,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,North_Macedonia,MK,MKD,2082958 01/01/2020,1,1,2020,0,0,North_Macedonia,MK,MKD,2082958 31/12/2019,31,12,2019,0,0,North_Macedonia,MK,MKD,2082958 +30/03/2020,30,3,2020,257,2,Norway,NO,NOR,5314336 29/03/2020,29,3,2020,264,4,Norway,NO,NOR,5314336 28/03/2020,28,3,2020,425,2,Norway,NO,NOR,5314336 27/03/2020,27,3,2020,240,2,Norway,NO,NOR,5314336 @@ -5287,6 +5424,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Norway,NO,NOR,5314336 01/01/2020,1,1,2020,0,0,Norway,NO,NOR,5314336 31/12/2019,31,12,2019,0,0,Norway,NO,NOR,5314336 +30/03/2020,30,3,2020,15,0,Oman,OM,OMN,4829483 29/03/2020,29,3,2020,21,0,Oman,OM,OMN,4829483 28/03/2020,28,3,2020,22,0,Oman,OM,OMN,4829483 27/03/2020,27,3,2020,10,0,Oman,OM,OMN,4829483 @@ -5371,6 +5509,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Oman,OM,OMN,4829483 01/01/2020,1,1,2020,0,0,Oman,OM,OMN,4829483 31/12/2019,31,12,2019,0,0,Oman,OM,OMN,4829483 +30/03/2020,30,3,2020,118,2,Pakistan,PK,PAK,212215030 29/03/2020,29,3,2020,211,2,Pakistan,PK,PAK,212215030 28/03/2020,28,3,2020,0,0,Pakistan,PK,PAK,212215030 27/03/2020,27,3,2020,140,1,Pakistan,PK,PAK,212215030 @@ -5456,6 +5595,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Pakistan,PK,PAK,212215030 01/01/2020,1,1,2020,0,0,Pakistan,PK,PAK,212215030 31/12/2019,31,12,2019,0,0,Pakistan,PK,PAK,212215030 +30/03/2020,30,3,2020,9,0,Palestine,PS,PSE,4569087 29/03/2020,29,3,2020,6,0,Palestine,PS,PSE,4569087 28/03/2020,28,3,2020,7,0,Palestine,PS,PSE,4569087 27/03/2020,27,3,2020,22,1,Palestine,PS,PSE,4569087 @@ -5478,6 +5618,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 08/03/2020,8,3,2020,3,0,Palestine,PS,PSE,4569087 07/03/2020,7,3,2020,9,0,Palestine,PS,PSE,4569087 06/03/2020,6,3,2020,7,0,Palestine,PS,PSE,4569087 +30/03/2020,30,3,2020,88,7,Panama,PA,PAN,4176873 29/03/2020,29,3,2020,115,3,Panama,PA,PAN,4176873 28/03/2020,28,3,2020,112,5,Panama,PA,PAN,4176873 27/03/2020,27,3,2020,86,3,Panama,PA,PAN,4176873 @@ -5498,6 +5639,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 12/03/2020,12,3,2020,7,0,Panama,PA,PAN,4176873 11/03/2020,11,3,2020,6,1,Panama,PA,PAN,4176873 10/03/2020,10,3,2020,1,0,Panama,PA,PAN,4176873 +30/03/2020,30,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316 29/03/2020,29,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316 28/03/2020,28,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316 27/03/2020,27,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316 @@ -5507,6 +5649,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 23/03/2020,23,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316 22/03/2020,22,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316 21/03/2020,21,3,2020,1,0,Papua_New_Guinea,PG,PNG,8606316 +30/03/2020,30,3,2020,5,0,Paraguay,PY,PRY,6956071 29/03/2020,29,3,2020,3,0,Paraguay,PY,PRY,6956071 28/03/2020,28,3,2020,4,0,Paraguay,PY,PRY,6956071 27/03/2020,27,3,2020,11,0,Paraguay,PY,PRY,6956071 @@ -5525,6 +5668,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 13/03/2020,13,3,2020,1,0,Paraguay,PY,PRY,6956071 11/03/2020,11,3,2020,4,0,Paraguay,PY,PRY,6956071 08/03/2020,8,3,2020,1,0,Paraguay,PY,PRY,6956071 +30/03/2020,30,3,2020,181,2,Peru,PE,PER,31989256 29/03/2020,29,3,2020,36,5,Peru,PE,PER,31989256 28/03/2020,28,3,2020,55,2,Peru,PE,PER,31989256 27/03/2020,27,3,2020,22,1,Peru,PE,PER,31989256 @@ -5547,6 +5691,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 10/03/2020,10,3,2020,2,0,Peru,PE,PER,31989256 09/03/2020,9,3,2020,6,0,Peru,PE,PER,31989256 07/03/2020,7,3,2020,1,0,Peru,PE,PER,31989256 +30/03/2020,30,3,2020,343,3,Philippines,PH,PHL,106651922 29/03/2020,29,3,2020,272,14,Philippines,PH,PHL,106651922 28/03/2020,28,3,2020,96,9,Philippines,PH,PHL,106651922 27/03/2020,27,3,2020,71,7,Philippines,PH,PHL,106651922 @@ -5633,6 +5778,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Philippines,PH,PHL,106651922 01/01/2020,1,1,2020,0,0,Philippines,PH,PHL,106651922 31/12/2019,31,12,2019,0,0,Philippines,PH,PHL,106651922 +30/03/2020,30,3,2020,224,4,Poland,PL,POL,37978548 29/03/2020,29,3,2020,249,2,Poland,PL,POL,37978548 28/03/2020,28,3,2020,168,0,Poland,PL,POL,37978548 27/03/2020,27,3,2020,170,2,Poland,PL,POL,37978548 @@ -5657,6 +5803,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 08/03/2020,8,3,2020,1,0,Poland,PL,POL,37978548 07/03/2020,7,3,2020,4,0,Poland,PL,POL,37978548 04/03/2020,4,3,2020,1,0,Poland,PL,POL,37978548 +30/03/2020,30,3,2020,792,19,Portugal,PT,PRT,10281762 29/03/2020,29,3,2020,902,24,Portugal,PT,PRT,10281762 28/03/2020,28,3,2020,724,16,Portugal,PT,PRT,10281762 27/03/2020,27,3,2020,549,17,Portugal,PT,PRT,10281762 @@ -5684,8 +5831,10 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 05/03/2020,5,3,2020,1,0,Portugal,PT,PRT,10281762 04/03/2020,4,3,2020,2,0,Portugal,PT,PRT,10281762 03/03/2020,3,3,2020,2,0,Portugal,PT,PRT,10281762 +30/03/2020,30,3,2020,27,2,Puerto_Rico,PR,PRI,3195153 29/03/2020,29,3,2020,36,1,Puerto_Rico,PR,PRI,3195153 28/03/2020,28,3,2020,64,2,Puerto_Rico,PR,PRI,3195153 +30/03/2020,30,3,2020,44,0,Qatar,QA,QAT,2781677 29/03/2020,29,3,2020,28,1,Qatar,QA,QAT,2781677 28/03/2020,28,3,2020,13,0,Qatar,QA,QAT,2781677 27/03/2020,27,3,2020,12,0,Qatar,QA,QAT,2781677 @@ -5772,6 +5921,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Qatar,QA,QAT,2781677 01/01/2020,1,1,2020,0,0,Qatar,QA,QAT,2781677 31/12/2019,31,12,2019,0,0,Qatar,QA,QAT,2781677 +30/03/2020,30,3,2020,308,11,Romania,RO,ROU,19473936 29/03/2020,29,3,2020,160,5,Romania,RO,ROU,19473936 28/03/2020,28,3,2020,263,7,Romania,RO,ROU,19473936 27/03/2020,27,3,2020,123,4,Romania,RO,ROU,19473936 @@ -5860,6 +6010,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Romania,RO,ROU,19473936 01/01/2020,1,1,2020,0,0,Romania,RO,ROU,19473936 31/12/2019,31,12,2019,0,0,Romania,RO,ROU,19473936 +30/03/2020,30,3,2020,270,3,Russia,RU,RUS,144478050 29/03/2020,29,3,2020,228,1,Russia,RU,RUS,144478050 28/03/2020,28,3,2020,196,2,Russia,RU,RUS,144478050 27/03/2020,27,3,2020,182,2,Russia,RU,RUS,144478050 @@ -5945,6 +6096,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Russia,RU,RUS,144478050 01/01/2020,1,1,2020,0,0,Russia,RU,RUS,144478050 31/12/2019,31,12,2019,0,0,Russia,RU,RUS,144478050 +30/03/2020,30,3,2020,10,0,Rwanda,RW,RWA,12301939 29/03/2020,29,3,2020,6,0,Rwanda,RW,RWA,12301939 28/03/2020,28,3,2020,4,0,Rwanda,RW,RWA,12301939 27/03/2020,27,3,2020,9,0,Rwanda,RW,RWA,12301939 @@ -5960,10 +6112,12 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Rwanda,RW,RWA,12301939 16/03/2020,16,3,2020,4,0,Rwanda,RW,RWA,12301939 15/03/2020,15,3,2020,1,0,Rwanda,RW,RWA,12301939 +30/03/2020,30,3,2020,5,0,Saint_Kitts_and_Nevis,KN,KNA,52441 29/03/2020,29,3,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441 28/03/2020,28,3,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441 27/03/2020,27,3,2020,0,0,Saint_Kitts_and_Nevis,KN,KNA,52441 26/03/2020,26,3,2020,2,0,Saint_Kitts_and_Nevis,KN,KNA,52441 +30/03/2020,30,3,2020,5,0,Saint_Lucia,LC,LCA,181889 29/03/2020,29,3,2020,1,0,Saint_Lucia,LC,LCA,181889 28/03/2020,28,3,2020,0,0,Saint_Lucia,LC,LCA,181889 27/03/2020,27,3,2020,0,0,Saint_Lucia,LC,LCA,181889 @@ -5979,12 +6133,14 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,0,0,Saint_Lucia,LC,LCA,181889 16/03/2020,16,3,2020,0,0,Saint_Lucia,LC,LCA,181889 15/03/2020,15,3,2020,2,0,Saint_Lucia,LC,LCA,181889 +30/03/2020,30,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210 29/03/2020,29,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210 28/03/2020,28,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210 27/03/2020,27,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210 26/03/2020,26,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210 25/03/2020,25,3,2020,0,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210 13/03/2020,13,3,2020,1,0,Saint_Vincent_and_the_Grenadines,VC,VCT,110210 +30/03/2020,30,3,2020,5,2,San_Marino,SM,SMR,33785 29/03/2020,29,3,2020,1,1,San_Marino,SM,SMR,33785 28/03/2020,28,3,2020,5,0,San_Marino,SM,SMR,33785 27/03/2020,27,3,2020,10,0,San_Marino,SM,SMR,33785 @@ -6074,6 +6230,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,San_Marino,SM,SMR,33785 01/01/2020,1,1,2020,0,0,San_Marino,SM,SMR,33785 31/12/2019,31,12,2019,0,0,San_Marino,SM,SMR,33785 +30/03/2020,30,3,2020,26,4,Saudi_Arabia,SA,SAU,33699947 29/03/2020,29,3,2020,99,1,Saudi_Arabia,SA,SAU,33699947 28/03/2020,28,3,2020,92,0,Saudi_Arabia,SA,SAU,33699947 27/03/2020,27,3,2020,112,1,Saudi_Arabia,SA,SAU,33699947 @@ -6098,6 +6255,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 08/03/2020,8,3,2020,2,0,Saudi_Arabia,SA,SAU,33699947 06/03/2020,6,3,2020,4,0,Saudi_Arabia,SA,SAU,33699947 03/03/2020,3,3,2020,1,0,Saudi_Arabia,SA,SAU,33699947 +30/03/2020,30,3,2020,12,0,Senegal,SN,SEN,15854360 29/03/2020,29,3,2020,11,0,Senegal,SN,SEN,15854360 28/03/2020,28,3,2020,14,0,Senegal,SN,SEN,15854360 27/03/2020,27,3,2020,6,0,Senegal,SN,SEN,15854360 @@ -6118,6 +6276,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 06/03/2020,6,3,2020,1,0,Senegal,SN,SEN,15854360 05/03/2020,5,3,2020,2,0,Senegal,SN,SEN,15854360 03/03/2020,3,3,2020,1,0,Senegal,SN,SEN,15854360 +30/03/2020,30,3,2020,82,3,Serbia,RS,SRB,6982084 29/03/2020,29,3,2020,202,4,Serbia,RS,SRB,6982084 28/03/2020,28,3,2020,73,3,Serbia,RS,SRB,6982084 27/03/2020,27,3,2020,81,1,Serbia,RS,SRB,6982084 @@ -6138,6 +6297,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 12/03/2020,12,3,2020,13,0,Serbia,RS,SRB,6982084 11/03/2020,11,3,2020,4,0,Serbia,RS,SRB,6982084 07/03/2020,7,3,2020,1,0,Serbia,RS,SRB,6982084 +30/03/2020,30,3,2020,1,0,Seychelles,SC,SYC,96762 29/03/2020,29,3,2020,0,0,Seychelles,SC,SYC,96762 28/03/2020,28,3,2020,0,0,Seychelles,SC,SYC,96762 27/03/2020,27,3,2020,0,0,Seychelles,SC,SYC,96762 @@ -6153,6 +6313,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,1,0,Seychelles,SC,SYC,96762 16/03/2020,16,3,2020,1,0,Seychelles,SC,SYC,96762 15/03/2020,15,3,2020,2,0,Seychelles,SC,SYC,96762 +30/03/2020,30,3,2020,41,0,Singapore,SG,SGP,5638676 29/03/2020,29,3,2020,71,1,Singapore,SG,SGP,5638676 28/03/2020,28,3,2020,138,0,Singapore,SG,SGP,5638676 27/03/2020,27,3,2020,26,0,Singapore,SG,SGP,5638676 @@ -6243,11 +6404,13 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Singapore,SG,SGP,5638676 01/01/2020,1,1,2020,0,0,Singapore,SG,SGP,5638676 31/12/2019,31,12,2019,0,0,Singapore,SG,SGP,5638676 +30/03/2020,30,3,2020,0,0,Sint_Maarten,SX,SXM,41486 29/03/2020,29,3,2020,0,0,Sint_Maarten,SX,SXM,41486 28/03/2020,28,3,2020,1,0,Sint_Maarten,SX,SXM,41486 27/03/2020,27,3,2020,0,0,Sint_Maarten,SX,SXM,41486 26/03/2020,26,3,2020,1,0,Sint_Maarten,SX,SXM,41486 03/03/2020,3,3,2020,1,0,Sint_Maarten,SX,SXM,41486 +30/03/2020,30,3,2020,41,0,Slovakia,SK,SVK,5447011 29/03/2020,29,3,2020,0,0,Slovakia,SK,SVK,5447011 28/03/2020,28,3,2020,69,0,Slovakia,SK,SVK,5447011 27/03/2020,27,3,2020,10,0,Slovakia,SK,SVK,5447011 @@ -6270,6 +6433,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 09/03/2020,9,3,2020,2,0,Slovakia,SK,SVK,5447011 08/03/2020,8,3,2020,2,0,Slovakia,SK,SVK,5447011 07/03/2020,7,3,2020,1,0,Slovakia,SK,SVK,5447011 +30/03/2020,30,3,2020,39,2,Slovenia,SI,SVN,2067372 29/03/2020,29,3,2020,59,0,Slovenia,SI,SVN,2067372 28/03/2020,28,3,2020,55,4,Slovenia,SI,SVN,2067372 27/03/2020,27,3,2020,49,1,Slovenia,SI,SVN,2067372 @@ -6294,6 +6458,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 07/03/2020,7,3,2020,3,0,Slovenia,SI,SVN,2067372 06/03/2020,6,3,2020,5,0,Slovenia,SI,SVN,2067372 05/03/2020,5,3,2020,1,0,Slovenia,SI,SVN,2067372 +30/03/2020,30,3,2020,0,0,Somalia,SO,SOM,15008154 29/03/2020,29,3,2020,0,0,Somalia,SO,SOM,15008154 28/03/2020,28,3,2020,1,0,Somalia,SO,SOM,15008154 27/03/2020,27,3,2020,1,0,Somalia,SO,SOM,15008154 @@ -6307,6 +6472,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 19/03/2020,19,3,2020,0,0,Somalia,SO,SOM,15008154 18/03/2020,18,3,2020,0,0,Somalia,SO,SOM,15008154 17/03/2020,17,3,2020,1,0,Somalia,SO,SOM,15008154 +30/03/2020,30,3,2020,93,0,South_Africa,ZA,ZAF,57779622 29/03/2020,29,3,2020,17,0,South_Africa,ZA,ZAF,57779622 28/03/2020,28,3,2020,243,0,South_Africa,ZA,ZAF,57779622 27/03/2020,27,3,2020,218,2,South_Africa,ZA,ZAF,57779622 @@ -6329,6 +6495,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 09/03/2020,9,3,2020,1,0,South_Africa,ZA,ZAF,57779622 08/03/2020,8,3,2020,1,0,South_Africa,ZA,ZAF,57779622 06/03/2020,6,3,2020,1,0,South_Africa,ZA,ZAF,57779622 +30/03/2020,30,3,2020,78,6,South_Korea,KR,KOR,51635256 29/03/2020,29,3,2020,105,8,South_Korea,KR,KOR,51635256 28/03/2020,28,3,2020,146,5,South_Korea,KR,KOR,51635256 27/03/2020,27,3,2020,91,8,South_Korea,KR,KOR,51635256 @@ -6419,6 +6586,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,South_Korea,KR,KOR,51635256 01/01/2020,1,1,2020,0,0,South_Korea,KR,KOR,51635256 31/12/2019,31,12,2019,0,0,South_Korea,KR,KOR,51635256 +30/03/2020,30,3,2020,6549,838,Spain,ES,ESP,46723749 29/03/2020,29,3,2020,8189,832,Spain,ES,ESP,46723749 28/03/2020,28,3,2020,7871,769,Spain,ES,ESP,46723749 27/03/2020,27,3,2020,8578,655,Spain,ES,ESP,46723749 @@ -6509,6 +6677,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Spain,ES,ESP,46723749 01/01/2020,1,1,2020,0,0,Spain,ES,ESP,46723749 31/12/2019,31,12,2019,0,0,Spain,ES,ESP,46723749 +30/03/2020,30,3,2020,5,0,Sri_Lanka,LK,LKA,21670000 29/03/2020,29,3,2020,9,1,Sri_Lanka,LK,LKA,21670000 28/03/2020,28,3,2020,0,0,Sri_Lanka,LK,LKA,21670000 27/03/2020,27,3,2020,4,0,Sri_Lanka,LK,LKA,21670000 @@ -6590,6 +6759,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Sri_Lanka,LK,LKA,21670000 01/01/2020,1,1,2020,0,0,Sri_Lanka,LK,LKA,21670000 31/12/2019,31,12,2019,0,0,Sri_Lanka,LK,LKA,21670000 +30/03/2020,30,3,2020,0,0,Sudan,SD,SDN,41801533 29/03/2020,29,3,2020,2,0,Sudan,SD,SDN,41801533 28/03/2020,28,3,2020,0,0,Sudan,SD,SDN,41801533 27/03/2020,27,3,2020,0,0,Sudan,SD,SDN,41801533 @@ -6606,6 +6776,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,0,0,Sudan,SD,SDN,41801533 15/03/2020,15,3,2020,0,1,Sudan,SD,SDN,41801533 14/03/2020,14,3,2020,1,0,Sudan,SD,SDN,41801533 +30/03/2020,30,3,2020,0,0,Suriname,SR,SUR,575991 29/03/2020,29,3,2020,0,0,Suriname,SR,SUR,575991 28/03/2020,28,3,2020,0,0,Suriname,SR,SUR,575991 27/03/2020,27,3,2020,0,0,Suriname,SR,SUR,575991 @@ -6616,6 +6787,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 22/03/2020,22,3,2020,4,0,Suriname,SR,SUR,575991 21/03/2020,21,3,2020,0,0,Suriname,SR,SUR,575991 15/03/2020,15,3,2020,1,0,Suriname,SR,SUR,575991 +30/03/2020,30,3,2020,253,8,Sweden,SE,SWE,10183175 29/03/2020,29,3,2020,401,10,Sweden,SE,SWE,10183175 28/03/2020,28,3,2020,240,26,Sweden,SE,SWE,10183175 27/03/2020,27,3,2020,296,24,Sweden,SE,SWE,10183175 @@ -6706,6 +6878,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Sweden,SE,SWE,10183175 01/01/2020,1,1,2020,0,0,Sweden,SE,SWE,10183175 31/12/2019,31,12,2019,0,0,Sweden,SE,SWE,10183175 +30/03/2020,30,3,2020,1122,22,Switzerland,CH,CHE,8516543 29/03/2020,29,3,2020,1048,38,Switzerland,CH,CHE,8516543 28/03/2020,28,3,2020,1390,36,Switzerland,CH,CHE,8516543 27/03/2020,27,3,2020,1000,58,Switzerland,CH,CHE,8516543 @@ -6796,6 +6969,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Switzerland,CH,CHE,8516543 01/01/2020,1,1,2020,0,0,Switzerland,CH,CHE,8516543 31/12/2019,31,12,2019,0,0,Switzerland,CH,CHE,8516543 +30/03/2020,30,3,2020,4,1,Syria,SY,SYR,16906283 29/03/2020,29,3,2020,0,0,Syria,SY,SYR,16906283 28/03/2020,28,3,2020,0,0,Syria,SY,SYR,16906283 27/03/2020,27,3,2020,4,0,Syria,SY,SYR,16906283 @@ -6803,6 +6977,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 25/03/2020,25,3,2020,0,0,Syria,SY,SYR,16906283 24/03/2020,24,3,2020,0,0,Syria,SY,SYR,16906283 23/03/2020,23,3,2020,1,0,Syria,SY,SYR,16906283 +30/03/2020,30,3,2020,23,3,Taiwan,TW,TWN,23780452 29/03/2020,29,3,2020,16,0,Taiwan,TW,TWN,23780452 28/03/2020,28,3,2020,15,0,Taiwan,TW,TWN,23780452 27/03/2020,27,3,2020,17,0,Taiwan,TW,TWN,23780452 @@ -6891,6 +7066,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Taiwan,TW,TWN,23780452 01/01/2020,1,1,2020,0,0,Taiwan,TW,TWN,23780452 31/12/2019,31,12,2019,0,0,Taiwan,TW,TWN,23780452 +30/03/2020,30,3,2020,143,1,Thailand,TH,THA,69428524 29/03/2020,29,3,2020,109,1,Thailand,TH,THA,69428524 28/03/2020,28,3,2020,0,0,Thailand,TH,THA,69428524 27/03/2020,27,3,2020,91,1,Thailand,TH,THA,69428524 @@ -6974,6 +7150,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Thailand,TH,THA,69428524 01/01/2020,1,1,2020,0,0,Thailand,TH,THA,69428524 31/12/2019,31,12,2019,0,0,Thailand,TH,THA,69428524 +30/03/2020,30,3,2020,0,0,Timor_Leste,TL,TLS,1267972 29/03/2020,29,3,2020,0,0,Timor_Leste,TL,TLS,1267972 28/03/2020,28,3,2020,0,0,Timor_Leste,TL,TLS,1267972 27/03/2020,27,3,2020,0,0,Timor_Leste,TL,TLS,1267972 @@ -6982,6 +7159,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 24/03/2020,24,3,2020,0,0,Timor_Leste,TL,TLS,1267972 23/03/2020,23,3,2020,0,0,Timor_Leste,TL,TLS,1267972 22/03/2020,22,3,2020,1,0,Timor_Leste,TL,TLS,1267972 +30/03/2020,30,3,2020,2,0,Togo,TG,TGO,7889094 29/03/2020,29,3,2020,3,0,Togo,TG,TGO,7889094 28/03/2020,28,3,2020,1,1,Togo,TG,TGO,7889094 27/03/2020,27,3,2020,1,0,Togo,TG,TGO,7889094 @@ -6998,6 +7176,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,0,0,Togo,TG,TGO,7889094 15/03/2020,15,3,2020,0,0,Togo,TG,TGO,7889094 07/03/2020,7,3,2020,1,0,Togo,TG,TGO,7889094 +30/03/2020,30,3,2020,4,1,Trinidad_and_Tobago,TT,TTO,1389858 29/03/2020,29,3,2020,8,0,Trinidad_and_Tobago,TT,TTO,1389858 28/03/2020,28,3,2020,1,1,Trinidad_and_Tobago,TT,TTO,1389858 27/03/2020,27,3,2020,5,0,Trinidad_and_Tobago,TT,TTO,1389858 @@ -7015,6 +7194,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 15/03/2020,15,3,2020,0,0,Trinidad_and_Tobago,TT,TTO,1389858 14/03/2020,14,3,2020,1,0,Trinidad_and_Tobago,TT,TTO,1389858 13/03/2020,13,3,2020,1,0,Trinidad_and_Tobago,TT,TTO,1389858 +30/03/2020,30,3,2020,51,2,Tunisia,TN,TUN,11565204 29/03/2020,29,3,2020,0,0,Tunisia,TN,TUN,11565204 28/03/2020,28,3,2020,54,1,Tunisia,TN,TUN,11565204 27/03/2020,27,3,2020,0,0,Tunisia,TN,TUN,11565204 @@ -7036,6 +7216,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 11/03/2020,11,3,2020,3,0,Tunisia,TN,TUN,11565204 10/03/2020,10,3,2020,1,0,Tunisia,TN,TUN,11565204 03/03/2020,3,3,2020,1,0,Tunisia,TN,TUN,11565204 +30/03/2020,30,3,2020,1815,23,Turkey,TR,TUR,82319724 29/03/2020,29,3,2020,1704,16,Turkey,TR,TUR,82319724 28/03/2020,28,3,2020,2069,17,Turkey,TR,TUR,82319724 27/03/2020,27,3,2020,1196,16,Turkey,TR,TUR,82319724 @@ -7052,11 +7233,13 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,16,0,Turkey,TR,TUR,82319724 13/03/2020,13,3,2020,1,0,Turkey,TR,TUR,82319724 12/03/2020,12,3,2020,1,0,Turkey,TR,TUR,82319724 +30/03/2020,30,3,2020,0,0,Turks_and_Caicos_islands,TC,TCA,31458 29/03/2020,29,3,2020,3,0,Turks_and_Caicos_islands,TC,TCA,31458 28/03/2020,28,3,2020,0,0,Turks_and_Caicos_islands,TC,TCA,31458 27/03/2020,27,3,2020,1,0,Turks_and_Caicos_islands,TC,TCA,31458 26/03/2020,26,3,2020,0,0,Turks_and_Caicos_islands,TC,TCA,31458 25/03/2020,25,3,2020,1,0,Turks_and_Caicos_islands,TC,TCA,31458 +30/03/2020,30,3,2020,3,0,Uganda,UG,UGA,42723139 29/03/2020,29,3,2020,16,0,Uganda,UG,UGA,42723139 28/03/2020,28,3,2020,0,0,Uganda,UG,UGA,42723139 27/03/2020,27,3,2020,0,0,Uganda,UG,UGA,42723139 @@ -7065,6 +7248,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 24/03/2020,24,3,2020,8,0,Uganda,UG,UGA,42723139 23/03/2020,23,3,2020,0,0,Uganda,UG,UGA,42723139 22/03/2020,22,3,2020,1,0,Uganda,UG,UGA,42723139 +30/03/2020,30,3,2020,107,1,Ukraine,UA,UKR,44622516 29/03/2020,29,3,2020,93,3,Ukraine,UA,UKR,44622516 28/03/2020,28,3,2020,62,0,Ukraine,UA,UKR,44622516 27/03/2020,27,3,2020,43,1,Ukraine,UA,UKR,44622516 @@ -7081,6 +7265,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 16/03/2020,16,3,2020,0,0,Ukraine,UA,UKR,44622516 13/03/2020,13,3,2020,2,0,Ukraine,UA,UKR,44622516 04/03/2020,4,3,2020,1,0,Ukraine,UA,UKR,44622516 +30/03/2020,30,3,2020,0,0,United_Arab_Emirates,AE,ARE,9630959 29/03/2020,29,3,2020,63,0,United_Arab_Emirates,AE,ARE,9630959 28/03/2020,28,3,2020,72,0,United_Arab_Emirates,AE,ARE,9630959 27/03/2020,27,3,2020,0,0,United_Arab_Emirates,AE,ARE,9630959 @@ -7165,6 +7350,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,United_Arab_Emirates,AE,ARE,9630959 01/01/2020,1,1,2020,0,0,United_Arab_Emirates,AE,ARE,9630959 31/12/2019,31,12,2019,0,0,United_Arab_Emirates,AE,ARE,9630959 +30/03/2020,30,3,2020,2433,209,United_Kingdom,UK,GBR,66488991 29/03/2020,29,3,2020,2546,260,United_Kingdom,UK,GBR,66488991 28/03/2020,28,3,2020,2885,181,United_Kingdom,UK,GBR,66488991 27/03/2020,27,3,2020,2129,115,United_Kingdom,UK,GBR,66488991 @@ -7255,6 +7441,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,United_Kingdom,UK,GBR,66488991 01/01/2020,1,1,2020,0,0,United_Kingdom,UK,GBR,66488991 31/12/2019,31,12,2019,0,0,United_Kingdom,UK,GBR,66488991 +30/03/2020,30,3,2020,1,0,United_Republic_of_Tanzania,TZ,TZA,56318348 29/03/2020,29,3,2020,0,1,United_Republic_of_Tanzania,TZ,TZA,56318348 28/03/2020,28,3,2020,0,0,United_Republic_of_Tanzania,TZ,TZA,56318348 27/03/2020,27,3,2020,1,0,United_Republic_of_Tanzania,TZ,TZA,56318348 @@ -7268,6 +7455,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 19/03/2020,19,3,2020,2,0,United_Republic_of_Tanzania,TZ,TZA,56318348 18/03/2020,18,3,2020,0,0,United_Republic_of_Tanzania,TZ,TZA,56318348 17/03/2020,17,3,2020,1,0,United_Republic_of_Tanzania,TZ,TZA,56318348 +30/03/2020,30,3,2020,18360,318,United_States_of_America,US,USA,327167434 29/03/2020,29,3,2020,19979,484,United_States_of_America,US,USA,327167434 28/03/2020,28,3,2020,18695,411,United_States_of_America,US,USA,327167434 27/03/2020,27,3,2020,16797,246,United_States_of_America,US,USA,327167434 @@ -7358,12 +7546,14 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,United_States_of_America,US,USA,327167434 01/01/2020,1,1,2020,0,0,United_States_of_America,US,USA,327167434 31/12/2019,31,12,2019,0,0,United_States_of_America,US,USA,327167434 +30/03/2020,30,3,2020,8,0,United_States_Virgin_Islands,VI,VIR,106977 29/03/2020,29,3,2020,3,0,United_States_Virgin_Islands,VI,VIR,106977 28/03/2020,28,3,2020,2,0,United_States_Virgin_Islands,VI,VIR,106977 27/03/2020,27,3,2020,0,0,United_States_Virgin_Islands,VI,VIR,106977 26/03/2020,26,3,2020,0,0,United_States_Virgin_Islands,VI,VIR,106977 25/03/2020,25,3,2020,0,0,United_States_Virgin_Islands,VI,VIR,106977 24/03/2020,24,3,2020,17,0,United_States_Virgin_Islands,VI,VIR,106977 +30/03/2020,30,3,2020,5,1,Uruguay,UY,URY,3449299 29/03/2020,29,3,2020,66,0,Uruguay,UY,URY,3449299 28/03/2020,28,3,2020,0,0,Uruguay,UY,URY,3449299 27/03/2020,27,3,2020,21,0,Uruguay,UY,URY,3449299 @@ -7379,6 +7569,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,21,0,Uruguay,UY,URY,3449299 16/03/2020,16,3,2020,2,0,Uruguay,UY,URY,3449299 15/03/2020,15,3,2020,6,0,Uruguay,UY,URY,3449299 +30/03/2020,30,3,2020,12,0,Uzbekistan,UZ,UZB,32955400 29/03/2020,29,3,2020,29,1,Uzbekistan,UZ,UZB,32955400 28/03/2020,28,3,2020,21,0,Uzbekistan,UZ,UZB,32955400 27/03/2020,27,3,2020,18,0,Uzbekistan,UZ,UZB,32955400 @@ -7393,6 +7584,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 18/03/2020,18,3,2020,8,0,Uzbekistan,UZ,UZB,32955400 17/03/2020,17,3,2020,2,0,Uzbekistan,UZ,UZB,32955400 16/03/2020,16,3,2020,6,0,Uzbekistan,UZ,UZB,32955400 +30/03/2020,30,3,2020,0,0,Venezuela,VE,VEN,28870195 29/03/2020,29,3,2020,0,0,Venezuela,VE,VEN,28870195 28/03/2020,28,3,2020,12,0,Venezuela,VE,VEN,28870195 27/03/2020,27,3,2020,1,1,Venezuela,VE,VEN,28870195 @@ -7408,6 +7600,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 17/03/2020,17,3,2020,18,0,Venezuela,VE,VEN,28870195 16/03/2020,16,3,2020,5,0,Venezuela,VE,VEN,28870195 15/03/2020,15,3,2020,10,0,Venezuela,VE,VEN,28870195 +30/03/2020,30,3,2020,5,0,Vietnam,VN,VNM,95540395 29/03/2020,29,3,2020,54,0,Vietnam,VN,VNM,95540395 28/03/2020,28,3,2020,16,0,Vietnam,VN,VNM,95540395 27/03/2020,27,3,2020,5,0,Vietnam,VN,VNM,95540395 @@ -7494,6 +7687,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 02/01/2020,2,1,2020,0,0,Vietnam,VN,VNM,95540395 01/01/2020,1,1,2020,0,0,Vietnam,VN,VNM,95540395 31/12/2019,31,12,2019,0,0,Vietnam,VN,VNM,95540395 +30/03/2020,30,3,2020,1,0,Zambia,ZM,ZMB,17351822 29/03/2020,29,3,2020,12,0,Zambia,ZM,ZMB,17351822 28/03/2020,28,3,2020,2,0,Zambia,ZM,ZMB,17351822 27/03/2020,27,3,2020,2,0,Zambia,ZM,ZMB,17351822 @@ -7505,6 +7699,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 21/03/2020,21,3,2020,0,0,Zambia,ZM,ZMB,17351822 20/03/2020,20,3,2020,0,0,Zambia,ZM,ZMB,17351822 19/03/2020,19,3,2020,2,0,Zambia,ZM,ZMB,17351822 +30/03/2020,30,3,2020,0,0,Zimbabwe,ZW,ZWE,14439018 29/03/2020,29,3,2020,2,0,Zimbabwe,ZW,ZWE,14439018 28/03/2020,28,3,2020,2,0,Zimbabwe,ZW,ZWE,14439018 27/03/2020,27,3,2020,0,0,Zimbabwe,ZW,ZWE,14439018