Skip to content

v5.2.0

Compare
Choose a tag to compare
@cmbTea cmbTea released this 23 Aug 11:30
· 130 commits to master since this release
74bbb67
  • 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:
  1. 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.

  2. PeopleReceivedFirstDose
    Total number of people who received at least one vaccine dose. In OWID words this is the people_vaccinated value.

  3. PercentPeopleReceivedFirstDose
    The percentage of people of the population who received at least one vaccine dose.

  4. PeopleReceivedAllDoses
    Total number of people who received all doses defined by the vaccination protocol. In OWID words this is the people_fully_vaccinated value.

  5. PercentPeopleReceivedAllDoses
    The percentage of people of the population who received all doses defined by the vaccination protocol.

  6. 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 by set_yaxis_formatter. The default yaxis_formatter is now mpl.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