diff --git a/Analyser.py b/Analyser.py index 3aa58e3..df67db5 100644 --- a/Analyser.py +++ b/Analyser.py @@ -26,16 +26,25 @@ from datetime import datetime, timedelta class Analyser: - # Pandas Settings - pd.set_option('display.max_row', 50) - pd.set_option('display.max_column', 10) - - df = pd.read_csv('statsfile.csv') - df['dateRep'] = pd.to_datetime(df['dateRep']) + def __init__(self): + # Pandas Settings + pd.set_option('display.max_row', 50) + pd.set_option('display.max_column', 10) + + self.df = pd.read_csv('statsfile.csv') + self.df['dateRep'] = pd.to_datetime(self.df['dateRep'], format='%d/%m/%Y') def getAvailableCountries(self): return self.df['countriesAndTerritories'].unique() + def getAvailableDates(self): + retList = [] + for date in self.df['dateRep'].unique(): + # To only get the substring in the format YYYY-MM-DD + retList.append(str(date)[:10]) + retList.sort() + return retList + def getCasesGraph(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 @@ -45,10 +54,7 @@ class Analyser: if country in self.getAvailableCountries(): fig = plt.figure() ax = fig.add_subplot(111) - - # casesPerDayDict = {} - # for date in self.df['dateRep']: - # casesPerDayDict[date] = self.getTotalCases(country, date) + plt.title(('Total cases graph for ' + country)) countryData = self.df[self.df['countriesAndTerritories'].isin([country])] mask = (countryData['dateRep'] > start_date) & (countryData['dateRep'] <= end_date) @@ -56,8 +62,6 @@ class Analyser: countryTimeData = countryTimeData.sort_values('dateRep') countryTimeData['cases'] = countryTimeData['cases'].cumsum() - print(countryTimeData) - countryTimeData.plot(ax=ax, x='dateRep', y='cases') plt.show(block=True) @@ -69,7 +73,7 @@ class Analyser: print('Unknown country') return '-1' - def getCaseIncreaseGraph(self, country): + def getCaseIncreaseGraph(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 @@ -78,13 +82,10 @@ class Analyser: if country in self.getAvailableCountries(): fig = plt.figure() ax = fig.add_subplot(111) - - # casesPerDayDict = {} - # for date in self.df['dateRep']: - # casesPerDayDict[date] = self.getTotalCases(country, date) + plt.title(('Cases increase graph for ' + country)) countryData = self.df[self.df['countriesAndTerritories'].isin([country])] - mask = (countryData['dateRep'] <= datetime.now().strftime('%Y-%m-%d')) + mask = (countryData['dateRep'] > start_date) & (countryData['dateRep'] <= end_date) countryTimeData = countryData.loc[mask] countryTimeData.plot(ax=ax, x='dateRep', y='cases') diff --git a/DataFetcher.py b/DataFetcher.py index bcf3142..bf774b6 100644 --- a/DataFetcher.py +++ b/DataFetcher.py @@ -21,3 +21,4 @@ def updateStatsFile(): file.write(writeString) # Done we are file.close() + print('DEBUG: Updated Stats File') diff --git a/Main.py b/Main.py index 0a944b3..26025e0 100644 --- a/Main.py +++ b/Main.py @@ -6,12 +6,8 @@ Project: Analyse worldwide COVID-19 Data and provide graphs etc. """ import DataFetcher as fetcher import Analyser as ana +import UserInterface as UI if __name__ == '__main__': - analyser = ana.Analyser() - print(analyser.getAvailableCountries()) - country = input('What country do you want the graph for: ') - analyser.getCasesGraph(country, start_date='2020-02-14') - print(analyser.getTotalCases(country)) - analyser.getCaseIncreaseGraph(country) fetcher.updateStatsFile() + UI.main() diff --git a/UserInterface.py b/UserInterface.py new file mode 100644 index 0000000..3ed9844 --- /dev/null +++ b/UserInterface.py @@ -0,0 +1,132 @@ +# -*- coding: utf-8 -*- +""" +Project: Analyse worldwide COVID-19 Data and provide graphs etc. + +@author Patrick Müller +""" +import sys +from datetime import datetime +from PyQt5.QtWidgets import * +from PyQt5.QtGui import * +import Analyser as ana + + +class UserInterface(QWidget): + def __init__(self, app): + super().__init__() + # Get Analyser instance and required stuff from it + self.analyser = ana.Analyser() + countries = self.analyser.getAvailableCountries() + dates = self.analyser.getAvailableDates() + + # PyQT Setup + self.setWindowTitle('COVID-19 Analytics') + 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) + + # Layout boxes + self.header_box = QHBoxLayout() + h2box1 = QHBoxLayout() + labelBox = QHBoxLayout() + picklistBox = QHBoxLayout() + buttonBox = QHBoxLayout() + caseNumberBox = QHBoxLayout() + self.graphBox = QHBoxLayout() + + # Heading + heading = QLabel('

COVID-19 Analytics

') + self.header_box.addWidget(heading) + + # Sub-Header + subheader1 = QLabel('

Statistics about one country

') + h2box1.addWidget(subheader1) + + # Country Picker + countryPickerLabel = QLabel('

Pick a country:

') + labelBox.addWidget(countryPickerLabel) + self.countryPicker = QComboBox(parent=self) + self.countryPicker.addItems(countries) + self.countryPicker.setCurrentText('Germany') + picklistBox.addWidget(self.countryPicker, 1) + + # Start Date Picker + startDatePickerLabel = QLabel('

Pick a start date:

') + labelBox.addWidget(startDatePickerLabel) + self.startDatePicker = QComboBox(parent=self) + self.startDatePicker.addItems(dates) + self.startDatePicker.setCurrentText('2019-12-31') + picklistBox.addWidget(self.startDatePicker, 1) + + # End Date Picker + endDatePickerLabel = QLabel('

Pick an end date:

') + labelBox.addWidget(endDatePickerLabel) + self.endDatePicker = QComboBox(parent=self) + self.endDatePicker.addItems(dates) + self.endDatePicker.setCurrentText(datetime.now().strftime('%Y-%m-%d')) + picklistBox.addWidget(self.endDatePicker, 1) + + # Calculate Button + self.calculateSingleCountryStats = QPushButton('Calculate') + buttonBox.addWidget(self.calculateSingleCountryStats) + self.calculateSingleCountryStats.setCheckable(True) + self.calculateSingleCountryStats.clicked.connect(self.btnstate) + + # Total cases number + self.casesNumber = QLabel('

Total Case Number: NaN

') + caseNumberBox.addWidget(self.casesNumber) + + # Generate Layout + layout = QVBoxLayout() + layout.addLayout(self.header_box) + layout.addSpacing(50) + layout.addLayout(h2box1) + layout.addSpacing(10) + layout.addLayout(labelBox) + layout.addLayout(picklistBox) + layout.addSpacing(10) + layout.addLayout(buttonBox) + layout.addSpacing(10) + layout.addLayout(caseNumberBox) + layout.addSpacing(10) + layout.addLayout(self.graphBox) + layout.addStretch(1) + + self.setLayout(layout) + self.show() + + 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) + self.clearLayout(self.graphBox) + self.graphBox.addWidget(self.casesGraphPlaceHolder) + self.graphBox.addWidget(self.casesIncreasePlaceHolder) + self.casesGraphPlaceHolder.setPixmap(QPixmap(casesGraphPath)) + self.casesIncreasePlaceHolder.setPixmap(QPixmap(caseIncreaseGraphPath)) + + def clearLayout(self, layout): + for i in reversed(range(layout.count())): + widgetToRemove = layout.itemAt(i).widget() + # remove it from the layout list + layout.removeWidget(widgetToRemove) + # remove it from the gui + widgetToRemove.setParent(None) + + +def main(): + app = QApplication(sys.argv) + ex = UserInterface(app) + sys.exit(app.exec_()) diff --git a/statsfile.csv b/statsfile.csv index 6983a3c..5eae4f8 100644 --- a/statsfile.csv +++ b/statsfile.csv @@ -1,4 +1,5 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterritoryCode,popData2018 +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 26/03/2020,26,3,2020,33,0,Afghanistan,AF,AFG,37172386 @@ -78,6 +79,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 +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 26/03/2020,26,3,2020,0,0,Angola,AO,AGO,30809762 @@ -85,6 +87,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 +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 26/03/2020,26,3,2020,23,0,Albania,AL,ALB,2866376 @@ -105,6 +108,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 +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 26/03/2020,26,3,2020,24,0,Andorra,AD,AND,77006 @@ -120,13 +124,7 @@ 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 -28/03/2020,28,3,2020,101,5,Argentina,AR,ARG,44494502 -27/03/2020,27,3,2020,87,4,Argentina,AR,ARG,44494502 -26/03/2020,26,3,2020,115,2,Argentina,AR,ARG,44494502 -25/03/2020,25,3,2020,86,2,Argentina,AR,ARG,44494502 -24/03/2020,24,3,2020,35,0,Argentina,AR,ARG,44494502 -23/03/2020,23,3,2020,41,0,Argentina,AR,ARG,44494502 -22/03/2020,22,3,2020,67,1,Argentina,AR,ARG,44494502 +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 @@ -136,6 +134,7 @@ dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterrito 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 +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 26/03/2020,26,3,2020,33,0,Algeria,DZ,DZA,42228429 @@ -220,8 +219,17 @@ 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 +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,, +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 +26/03/2020,26,3,2020,115,2,Argentina,AR,ARG,44494502 +25/03/2020,25,3,2020,86,2,Argentina,AR,ARG,44494502 +24/03/2020,24,3,2020,35,0,Argentina,AR,ARG,44494502 +23/03/2020,23,3,2020,41,0,Argentina,AR,ARG,44494502 +22/03/2020,22,3,2020,67,1,Argentina,AR,ARG,44494502 21/03/2020,21,3,2020,30,0,Argentina,AR,ARG,44494502 20/03/2020,20,3,2020,31,1,Argentina,AR,ARG,44494502 19/03/2020,19,3,2020,18,0,Argentina,AR,ARG,44494502 @@ -237,6 +245,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 +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 26/03/2020,26,3,2020,25,0,Armenia,AM,ARM,2951776 @@ -317,6 +326,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 +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 26/03/2020,26,3,2020,2,0,Aruba,AW,ABW,105845 @@ -324,6 +334,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 +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 26/03/2020,26,3,2020,376,3,Australia,AU,AUS,24992369 @@ -413,6 +424,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 +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 26/03/2020,26,3,2020,606,4,Austria,AT,AUT,8847037 @@ -502,6 +514,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 +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 26/03/2020,26,3,2020,6,1,Azerbaijan,AZ,AZE,9942334 @@ -584,6 +597,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 +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 26/03/2020,26,3,2020,1,0,Bahamas,BS,BHS,385640 @@ -595,6 +609,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 +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 26/03/2020,26,3,2020,29,0,Bahrain,BH,BHR,1569439 @@ -683,6 +698,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 +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 26/03/2020,26,3,2020,0,1,Bangladesh,BD,BGD,161356039 @@ -697,6 +713,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 +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 26/03/2020,26,3,2020,0,0,Barbados,BB,BRB,286641 @@ -708,6 +725,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 +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 26/03/2020,26,3,2020,5,0,Belarus,BY,BLR,9485386 @@ -789,6 +807,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 +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 26/03/2020,26,3,2020,668,56,Belgium,BE,BEL,11422068 @@ -878,11 +897,13 @@ 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 +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 +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 26/03/2020,26,3,2020,0,0,Benin,BJ,BEN,11485048 @@ -895,6 +916,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 +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 26/03/2020,26,3,2020,0,0,Bermuda,BM,BMU,63968 @@ -904,6 +926,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 +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 26/03/2020,26,3,2020,1,0,Bhutan,BT,BTN,754394 @@ -919,6 +942,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 +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 26/03/2020,26,3,2020,7,0,Bolivia,BO,BOL,11353142 @@ -935,6 +959,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 +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 26/03/2020,26,3,2020,19,1,Bosnia_and_Herzegovina,BA,BIH,3323929 @@ -951,6 +976,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 +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 26/03/2020,26,3,2020,232,11,Brazil,BR,BRA,209469333 @@ -1037,8 +1063,10 @@ 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 +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 +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 26/03/2020,26,3,2020,3,0,Brunei_Darussalam,BN,BRN,428962 @@ -1057,6 +1085,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 +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 26/03/2020,26,3,2020,22,0,Bulgaria,BG,BGR,7024216 @@ -1076,6 +1105,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 +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 26/03/2020,26,3,2020,15,0,Burkina_Faso,BF,BFA,19751535 @@ -1092,6 +1122,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 +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 26/03/2020,26,3,2020,5,0,Cambodia,KH,KHM,16249798 @@ -1172,6 +1203,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 +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 26/03/2020,26,3,2020,0,0,Cameroon,CM,CMR,25216237 @@ -1188,6 +1220,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 +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 26/03/2020,26,3,2020,1426,8,Canada,CA,CAN,37058856 @@ -1277,6 +1310,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 +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 26/03/2020,26,3,2020,1,0,Cape_Verde,CV,CPV,543767 @@ -1349,6 +1383,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 +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 26/03/2020,26,3,2020,0,0,Cayman_Islands,KY,CYM,64174 @@ -1358,6 +1393,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 +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 26/03/2020,26,3,2020,0,0,Central_African_Republic,CF,CAF,4666377 @@ -1371,6 +1407,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 +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 26/03/2020,26,3,2020,0,0,Chad,TD,TCD,15477751 @@ -1380,6 +1417,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 +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 26/03/2020,26,3,2020,220,1,Chile,CL,CHL,18729160 @@ -1404,6 +1442,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 +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 26/03/2020,26,3,2020,121,6,China,CN,CHN,1392730000 @@ -1493,6 +1532,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 +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 26/03/2020,26,3,2020,92,1,Colombia,CO,COL,49648685 @@ -1511,6 +1551,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 +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 26/03/2020,26,3,2020,0,0,Congo,CG,COG,5244363 @@ -1524,6 +1565,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 +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 26/03/2020,26,3,2020,24,0,Costa_Rica,CR,CRI,4999441 @@ -1545,6 +1587,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 +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 26/03/2020,26,3,2020,7,0,Cote_dIvoire,CI,CIV,25069229 @@ -1560,6 +1603,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 +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 26/03/2020,26,3,2020,36,0,Croatia,HR,HRV,4089400 @@ -1646,6 +1690,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 +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 26/03/2020,26,3,2020,9,0,Cuba,CU,CUB,11338138 @@ -1660,12 +1705,14 @@ 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 +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 26/03/2020,26,3,2020,8,0,Cyprus,CY,CYP,1189265 @@ -1683,6 +1730,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 +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 26/03/2020,26,3,2020,260,3,Czech_Republic,CZ,CZE,10625695 @@ -1772,6 +1820,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 +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 26/03/2020,26,3,2020,0,0,Democratic_Republic_of_the_Congo,CD,COD,84068091 @@ -1788,6 +1837,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 +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 26/03/2020,26,3,2020,133,2,Denmark,DK,DNK,5797446 @@ -1877,6 +1927,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 +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 26/03/2020,26,3,2020,9,0,Djibouti,DJ,DJI,958920 @@ -1887,12 +1938,14 @@ 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 +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 26/03/2020,26,3,2020,5,0,Dominica,DM,DMA,71625 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 +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 26/03/2020,26,3,2020,80,4,Dominican_Republic,DO,DOM,10627165 @@ -1973,6 +2026,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 +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 26/03/2020,26,3,2020,129,2,Ecuador,EC,ECU,17084357 @@ -2057,6 +2111,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 +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 26/03/2020,26,3,2020,76,2,Egypt,EG,EGY,98423595 @@ -2142,6 +2197,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 +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 26/03/2020,26,3,2020,4,0,El_Salvador,SV,SLV,6420744 @@ -2152,6 +2208,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 +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 26/03/2020,26,3,2020,2,0,Equatorial_Guinea,GQ,GNQ,1308974 @@ -2166,6 +2223,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 +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, 26/03/2020,26,3,2020,3,0,Eritrea,ER,ERI, @@ -2173,6 +2231,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, +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 26/03/2020,26,3,2020,35,1,Estonia,EE,EST,1320884 @@ -2257,6 +2316,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 +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 26/03/2020,26,3,2020,0,0,Eswatini,SZ,SWZ,1367000 @@ -2271,6 +2331,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 +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 26/03/2020,26,3,2020,1,0,Ethiopia,ET,ETH,109224559 @@ -2286,6 +2347,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 +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 26/03/2020,26,3,2020,10,0,Faroe_Islands,FO,FRO,48497 @@ -2295,6 +2357,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 +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 26/03/2020,26,3,2020,0,0,Fiji,FJ,FJI,883483 @@ -2304,6 +2367,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 +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 26/03/2020,26,3,2020,88,2,Finland,FI,FIN,5518050 @@ -2388,6 +2452,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 +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 26/03/2020,26,3,2020,2931,231,France,FR,FRA,66987244 @@ -2477,6 +2542,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 +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 26/03/2020,26,3,2020,0,0,French_Polynesia,PF,PYF,277679 @@ -2487,6 +2553,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 +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 26/03/2020,26,3,2020,0,0,Gabon,GA,GAB,2119275 @@ -2502,6 +2569,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 +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 26/03/2020,26,3,2020,0,0,Gambia,GM,GMB,2280102 @@ -2513,6 +2581,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 +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 26/03/2020,26,3,2020,3,0,Georgia,GE,GEO,3731000 @@ -2599,6 +2668,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 +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 26/03/2020,26,3,2020,4954,49,Germany,DE,DEU,82927922 @@ -2688,6 +2758,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 +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 26/03/2020,26,3,2020,15,1,Ghana,GH,GHA,29767108 @@ -2703,6 +2774,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 +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 26/03/2020,26,3,2020,11,0,Gibraltar,GI,GIB,33718 @@ -2712,6 +2784,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 +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 26/03/2020,26,3,2020,78,2,Greece,EL,GRC,10727668 @@ -2799,6 +2872,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 +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 26/03/2020,26,3,2020,1,0,Greenland,GL,GRL,56025 @@ -2808,12 +2882,14 @@ 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 +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 26/03/2020,26,3,2020,0,0,Grenada,GD,GRD,111454 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 +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 26/03/2020,26,3,2020,5,0,Guam,GU,GUM,165768 @@ -2824,6 +2900,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 +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 26/03/2020,26,3,2020,3,0,Guatemala,GT,GTM,17247807 @@ -2838,6 +2915,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 +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 26/03/2020,26,3,2020,7,0,Guernsey,GG,GGY,63026 @@ -2847,6 +2925,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 +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 26/03/2020,26,3,2020,0,0,Guinea,GN,GIN,12414318 @@ -2861,8 +2940,10 @@ 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 +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 +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 26/03/2020,26,3,2020,0,0,Guyana,GY,GUY,779004 @@ -2877,6 +2958,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 +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 26/03/2020,26,3,2020,1,0,Haiti,HT,HTI,11123176 @@ -2886,6 +2968,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 +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 26/03/2020,26,3,2020,0,0,Holy_See,VA,VAT,1000 @@ -2900,6 +2983,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 +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 26/03/2020,26,3,2020,16,0,Honduras,HN,HND,9587522 @@ -2915,6 +2999,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 +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 26/03/2020,26,3,2020,35,0,Hungary,HU,HUN,9768785 @@ -2938,6 +3023,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 +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 26/03/2020,26,3,2020,89,0,Iceland,IS,ISL,353574 @@ -3027,6 +3113,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 +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 26/03/2020,26,3,2020,87,4,India,IN,IND,1352617328 @@ -3115,6 +3202,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 +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 26/03/2020,26,3,2020,104,3,Indonesia,ID,IDN,267663435 @@ -3197,6 +3285,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 +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 26/03/2020,26,3,2020,2206,143,Iran,IR,IRN,81800269 @@ -3286,6 +3375,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 +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 26/03/2020,26,3,2020,30,2,Iraq,IQ,IRQ,38433600 @@ -3373,6 +3463,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 +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 26/03/2020,26,3,2020,235,2,Ireland,IE,IRL,4853506 @@ -3460,6 +3551,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 +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 26/03/2020,26,3,2020,0,0,Isle_of_Man,IM,IMN,84077 @@ -3468,6 +3560,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 +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 26/03/2020,26,3,2020,439,2,Israel,IL,ISR,8883800 @@ -3554,6 +3647,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 +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 26/03/2020,26,3,2020,5210,685,Italy,IT,ITA,60431283 @@ -3643,6 +3737,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 +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 26/03/2020,26,3,2020,4,0,Jamaica,JM,JAM,2934855 @@ -3659,6 +3754,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 +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 26/03/2020,26,3,2020,75,2,Japan,JP,JPN,126529100 @@ -3748,6 +3844,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 +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 26/03/2020,26,3,2020,0,0,Jersey,JE,JEY,106800 @@ -3757,6 +3854,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 +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 26/03/2020,26,3,2020,26,0,Jordan,JO,JOR,9956011 @@ -3773,6 +3871,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 +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 26/03/2020,26,3,2020,9,0,Kazakhstan,KZ,KAZ,18276499 @@ -3787,6 +3886,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 +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 26/03/2020,26,3,2020,0,0,Kenya,KE,KEN,51393010 @@ -3802,6 +3902,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 +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 26/03/2020,26,3,2020,8,0,Kosovo,XK,XKX,1845300 @@ -3815,6 +3916,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 +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 26/03/2020,26,3,2020,4,0,Kuwait,KW,KWT,4137309 @@ -3901,6 +4003,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 +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 26/03/2020,26,3,2020,2,0,Kyrgyzstan,KG,KGZ,6315800 @@ -3911,10 +4014,12 @@ 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 +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 +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 26/03/2020,26,3,2020,24,0,Latvia,LV,LVA,1926542 @@ -3937,6 +4042,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 +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 26/03/2020,26,3,2020,29,0,Lebanon,LB,LBN,6848925 @@ -4022,6 +4128,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 +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 26/03/2020,26,3,2020,0,0,Liberia,LR,LBR,4818977 @@ -4034,10 +4141,12 @@ 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 +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 +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 26/03/2020,26,3,2020,4,0,Liechtenstein,LI,LIE,37910 @@ -4056,6 +4165,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 +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 26/03/2020,26,3,2020,65,2,Lithuania,LT,LTU,2789533 @@ -4136,6 +4246,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 +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 26/03/2020,26,3,2020,234,0,Luxembourg,LU,LUX,607728 @@ -4218,6 +4329,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 +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 26/03/2020,26,3,2020,0,0,Madagascar,MG,MDG,26262368 @@ -4226,6 +4338,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 +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 26/03/2020,26,3,2020,172,4,Malaysia,MY,MYS,31528585 @@ -4314,6 +4427,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 +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 26/03/2020,26,3,2020,0,0,Maldives,MV,MDV,515696 @@ -4333,9 +4447,11 @@ 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 +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 +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 26/03/2020,26,3,2020,9,0,Malta,MT,MLT,483530 @@ -4355,6 +4471,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 +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 26/03/2020,26,3,2020,0,0,Mauritania,MR,MRT,4403319 @@ -4369,6 +4486,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 +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 26/03/2020,26,3,2020,6,0,Mauritius,MU,MUS,1265303 @@ -4378,6 +4496,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 +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 26/03/2020,26,3,2020,70,0,Mexico,MX,MEX,126190788 @@ -4459,6 +4578,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 +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 26/03/2020,26,3,2020,24,0,Moldova,MD,MDA,3545883 @@ -4478,6 +4598,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 +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 26/03/2020,26,3,2020,4,0,Monaco,MC,MCO,38682 @@ -4555,6 +4676,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 +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 26/03/2020,26,3,2020,0,0,Mongolia,MN,MNG,3170208 @@ -4568,6 +4690,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 +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 26/03/2020,26,3,2020,6,0,Montenegro,ME,MNE,622345 @@ -4579,6 +4702,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 +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 26/03/2020,26,3,2020,0,0,Montserrat,MS,MSR,5900 @@ -4587,6 +4711,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 +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 26/03/2020,26,3,2020,55,1,Morocco,MA,MAR,36029138 @@ -4606,18 +4731,21 @@ 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 +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 26/03/2020,26,3,2020,4,0,Mozambique,MZ,MOZ,29495962 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 +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 26/03/2020,26,3,2020,0,0,Myanmar,MM,MMR,53708395 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 +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 26/03/2020,26,3,2020,1,0,Namibia,NA,NAM,2448255 @@ -4632,6 +4760,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 +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 26/03/2020,26,3,2020,0,0,Nepal,NP,NPL,28087871 @@ -4708,6 +4837,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 +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 26/03/2020,26,3,2020,852,80,Netherlands,NL,NLD,17231017 @@ -4797,6 +4927,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 +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 26/03/2020,26,3,2020,5,0,New_Caledonia,NC,NCL,284060 @@ -4805,6 +4936,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 +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 26/03/2020,26,3,2020,73,0,New_Zealand,NZ,NZL,4885500 @@ -4885,6 +5017,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 +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 26/03/2020,26,3,2020,0,0,Nicaragua,NI,NIC,6465513 @@ -4895,6 +5028,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 +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 26/03/2020,26,3,2020,0,0,Niger,NE,NER,22442948 @@ -4903,6 +5037,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 +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 26/03/2020,26,3,2020,7,0,Nigeria,NG,NGA,195874740 @@ -4981,6 +5116,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 +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 26/03/2020,26,3,2020,29,0,North_Macedonia,MK,MKD,2082958 @@ -5061,6 +5197,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 +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 26/03/2020,26,3,2020,350,2,Norway,NO,NOR,5314336 @@ -5150,6 +5287,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 +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 26/03/2020,26,3,2020,15,0,Oman,OM,OMN,4829483 @@ -5233,6 +5371,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 +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 26/03/2020,26,3,2020,66,1,Pakistan,PK,PAK,212215030 @@ -5317,6 +5456,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 +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 26/03/2020,26,3,2020,2,0,Palestine,PS,PSE,4569087 @@ -5338,6 +5478,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 +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 26/03/2020,26,3,2020,145,0,Panama,PA,PAN,4176873 @@ -5357,6 +5498,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 +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 26/03/2020,26,3,2020,0,0,Papua_New_Guinea,PG,PNG,8606316 @@ -5365,6 +5507,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 +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 26/03/2020,26,3,2020,4,0,Paraguay,PY,PRY,6956071 @@ -5382,6 +5525,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 +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 26/03/2020,26,3,2020,142,1,Peru,PE,PER,31989256 @@ -5403,6 +5547,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 +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 26/03/2020,26,3,2020,84,3,Philippines,PH,PHL,106651922 @@ -5488,6 +5633,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 +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 26/03/2020,26,3,2020,150,4,Poland,PL,POL,37978548 @@ -5511,6 +5657,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 +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 26/03/2020,26,3,2020,633,10,Portugal,PT,PRT,10281762 @@ -5537,7 +5684,9 @@ 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 +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 +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 26/03/2020,26,3,2020,11,0,Qatar,QA,QAT,2781677 @@ -5623,6 +5772,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 +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 26/03/2020,26,3,2020,144,2,Romania,RO,ROU,19473936 @@ -5710,6 +5860,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 +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 26/03/2020,26,3,2020,163,0,Russia,RU,RUS,144478050 @@ -5794,6 +5945,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 +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 26/03/2020,26,3,2020,1,0,Rwanda,RW,RWA,12301939 @@ -5808,9 +5960,11 @@ 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 +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 +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 26/03/2020,26,3,2020,1,0,Saint_Lucia,LC,LCA,181889 @@ -5825,11 +5979,13 @@ 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 +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 +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 26/03/2020,26,3,2020,21,0,San_Marino,SM,SMR,33785 @@ -5918,6 +6074,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 +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 26/03/2020,26,3,2020,133,1,Saudi_Arabia,SA,SAU,33699947 @@ -5941,6 +6098,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 +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 26/03/2020,26,3,2020,13,0,Senegal,SN,SEN,15854360 @@ -5960,6 +6118,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 +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 26/03/2020,26,3,2020,54,1,Serbia,RS,SRB,6982084 @@ -5979,6 +6138,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 +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 26/03/2020,26,3,2020,0,0,Seychelles,SC,SYC,96762 @@ -5993,6 +6153,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 +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 26/03/2020,26,3,2020,10,0,Singapore,SG,SGP,5638676 @@ -6082,10 +6243,12 @@ 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 +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 +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 26/03/2020,26,3,2020,12,0,Slovakia,SK,SVK,5447011 @@ -6107,6 +6270,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 +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 26/03/2020,26,3,2020,48,1,Slovenia,SI,SVN,2067372 @@ -6130,6 +6294,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 +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 26/03/2020,26,3,2020,0,0,Somalia,SO,SOM,15008154 @@ -6142,6 +6307,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 +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 26/03/2020,26,3,2020,152,0,South_Africa,ZA,ZAF,57779622 @@ -6163,6 +6329,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 +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 26/03/2020,26,3,2020,104,5,South_Korea,KR,KOR,51635256 @@ -6252,6 +6419,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 +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 26/03/2020,26,3,2020,7937,738,Spain,ES,ESP,46723749 @@ -6341,6 +6509,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 +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 26/03/2020,26,3,2020,0,0,Sri_Lanka,LK,LKA,21670000 @@ -6421,6 +6590,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 +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 26/03/2020,26,3,2020,0,0,Sudan,SD,SDN,41801533 @@ -6436,6 +6606,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 +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 26/03/2020,26,3,2020,0,0,Suriname,SR,SUR,575991 @@ -6445,6 +6616,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 +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 26/03/2020,26,3,2020,238,6,Sweden,SE,SWE,10183175 @@ -6534,6 +6706,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 +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 26/03/2020,26,3,2020,925,17,Switzerland,CH,CHE,8516543 @@ -6623,12 +6796,14 @@ 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 +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 26/03/2020,26,3,2020,0,0,Syria,SY,SYR,16906283 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 +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 26/03/2020,26,3,2020,19,0,Taiwan,TW,TWN,23780452 @@ -6716,6 +6891,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 +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 26/03/2020,26,3,2020,111,0,Thailand,TH,THA,69428524 @@ -6798,6 +6974,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 +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 26/03/2020,26,3,2020,0,0,Timor_Leste,TL,TLS,1267972 @@ -6805,6 +6982,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 +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 26/03/2020,26,3,2020,5,0,Togo,TG,TGO,7889094 @@ -6820,6 +6998,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 +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 26/03/2020,26,3,2020,3,1,Trinidad_and_Tobago,TT,TTO,1389858 @@ -6836,6 +7015,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 +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 26/03/2020,26,3,2020,59,2,Tunisia,TN,TUN,11565204 @@ -6856,6 +7036,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 +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 26/03/2020,26,3,2020,561,15,Turkey,TR,TUR,82319724 @@ -6871,10 +7052,12 @@ 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 +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 +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 26/03/2020,26,3,2020,5,0,Uganda,UG,UGA,42723139 @@ -6882,6 +7065,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 +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 26/03/2020,26,3,2020,29,1,Ukraine,UA,UKR,44622516 @@ -6897,6 +7081,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 +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 26/03/2020,26,3,2020,85,0,United_Arab_Emirates,AE,ARE,9630959 @@ -6980,6 +7165,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 +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 26/03/2020,26,3,2020,1452,41,United_Kingdom,UK,GBR,66488991 @@ -7069,6 +7255,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 +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 26/03/2020,26,3,2020,0,0,United_Republic_of_Tanzania,TZ,TZA,56318348 @@ -7081,6 +7268,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 +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 26/03/2020,26,3,2020,13963,249,United_States_of_America,US,USA,327167434 @@ -7170,11 +7358,13 @@ 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 +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 +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 26/03/2020,26,3,2020,28,0,Uruguay,UY,URY,3449299 @@ -7189,6 +7379,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 +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 26/03/2020,26,3,2020,10,0,Uzbekistan,UZ,UZB,32955400 @@ -7202,6 +7393,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 +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 26/03/2020,26,3,2020,15,0,Venezuela,VE,VEN,28870195 @@ -7216,6 +7408,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 +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 26/03/2020,26,3,2020,14,0,Vietnam,VN,VNM,95540395 @@ -7301,6 +7494,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 +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 26/03/2020,26,3,2020,9,0,Zambia,ZM,ZMB,17351822 @@ -7311,6 +7505,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 +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 26/03/2020,26,3,2020,1,0,Zimbabwe,ZW,ZWE,14439018