import datetime
import time
start = datetime.datetime.now()
print(f"Notebook executed on: {start.strftime('%d/%m/%Y %H:%M:%S%Z')} {time.tzname[time.daylight]}")
Notebook executed on: 07/03/2023 12:36:42 CEST
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
overview(country="Germany", subregion="LK Groß-Gerau", weeks=5);
overview(country="Germany", subregion="LK Groß-Gerau");
compare_plot(country="Germany", subregion="LK Groß-Gerau", dates="2020-03-15:");
# load the data
cases, deaths = germany_get_region(landkreis="LK Groß-Gerau")
# get population of the region for future normalisation:
inhabitants = population(country="Germany", subregion="LK Groß-Gerau")
print(f'Population of country="Germany", subregion="LK Groß-Gerau": {inhabitants} people')
# compose into one table
table = compose_dataframe_summary(cases, deaths)
# show tables with up to 1000 rows
pd.set_option("display.max_rows", 1000)
# display the table
table
Population of country="Germany", subregion="LK Groß-Gerau": 276307 people
total cases | daily new cases | total deaths | daily new deaths | |
---|---|---|---|---|
date | ||||
2023-03-06 | 119809 | 12 | 387 | 0 |
2023-03-05 | 119797 | 5 | 387 | 0 |
2023-03-04 | 119792 | 14 | 387 | 0 |
2023-03-03 | 119778 | 27 | 387 | 0 |
2023-03-02 | 119751 | 21 | 387 | 0 |
... | ... | ... | ... | ... |
2020-03-17 | 11 | 1 | 0 | 0 |
2020-03-16 | 10 | 6 | 0 | 0 |
2020-03-13 | 4 | 1 | 0 | 0 |
2020-03-12 | 3 | 1 | 0 | 0 |
2020-03-11 | 2 | 1 | 0 | 0 |
1018 rows × 4 columns
print(f"Download of data from Johns Hopkins university: cases at {fetch_cases_last_execution()} and "
f"deaths at {fetch_deaths_last_execution()}.")
Download of data from Johns Hopkins university: cases at 07/03/2023 09:31:22 and deaths at 07/03/2023 09:31:21.
# to force a fresh download of data, run "clear_cache()"
print(f"Notebook execution took: {datetime.datetime.now()-start}")
Notebook execution took: 0:03:42.781959