v5.2.0
- A method called
create_combined_dataframe_by_geoid_string_list
was added to the CovidCases class. The method will create a combined data frame from a list of individual data fames. To avoid duplicate country names the method will add a -DATASOURCE string behind the country name (e.g. 'Germany-OWID'). - The CovidCasesOWID now provides information about the vaccination status of a country. This includes the following attributes:
-
DailyVaccineDosesAdministered7DayAverage
New COVID-19 vaccination doses administered (7-day smoothed). For countries that don't report vaccination data on a daily basis, we assume that vaccination changed equally on a daily basis over any periods in which no data was reported. This produces a complete series of daily figures, which is then averaged over a rolling 7-day window. In OWID words this is the new_vaccinations_smoothed value. -
PeopleReceivedFirstDose
Total number of people who received at least one vaccine dose. In OWID words this is the people_vaccinated value. -
PercentPeopleReceivedFirstDose
The percentage of people of the population who received at least one vaccine dose. -
PeopleReceivedAllDoses
Total number of people who received all doses defined by the vaccination protocol. In OWID words this is the people_fully_vaccinated value. -
PercentPeopleReceivedAllDoses
The percentage of people of the population who received all doses defined by the vaccination protocol. -
VaccineDosesAdministered
Total number of COVID-19 vaccination doses administered. It's the sum of PeopleReceivedFirstDose and PeopleReceivedAllDoses. In OWID words this is the total_vaccinations value.
-
A method called
set_grid
has been added to toggle the display of a grid in the PlotterBuilder class. -
The method
set_log
of the PlotterBuilder class now has an argument to toggle between a linear or logarithmic y-axis. -
The method
set_xaxis_index
now has a parameter to toggle between index or date based x-axis. -
A new attribute
__xaxis_formatter
has been add to the PlotterBuilder class. The attribute can be changed byset_yaxis_formatter
. The default yaxis_formatter is nowmpl.ticker.StrMethodFormatter('{x:,.0f}')
. -
The Jupyter Notebook now includes the vaccination data for the given list of countries.
-
The REST API now lets you switch between different data providers. This is done by the new parameter called data_spurce. This can be WHO or OWID. If the parameter is not given it will use WHO as a default.
-
The REST API now also includes vaccination data for the given list of countries. The online version on mb.cmbt.de includes this feature as well.
-
Updated MacOS and Windows web-client applications