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 09:35:31 CEST
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
overview("Japan", weeks=5);
overview("Japan");
compare_plot("Japan", normalise=True);
# load the data
cases, deaths = get_country_data("Japan")
# get population of the region for future normalisation:
inhabitants = population("Japan")
print(f'Population of "Japan": {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 "Japan": 126476458 people
total cases | daily new cases | total deaths | daily new deaths | |
---|---|---|---|---|
2023-03-06 | 33286633 | 4263 | 72813 | 34 |
2023-03-05 | 33282370 | 8731 | 72779 | 50 |
2023-03-04 | 33273639 | 10431 | 72729 | 81 |
2023-03-03 | 33263208 | 10522 | 72648 | 67 |
2023-03-02 | 33252686 | 11506 | 72581 | 87 |
... | ... | ... | ... | ... |
2020-01-27 | 4 | 0 | 0 | 0 |
2020-01-26 | 4 | 2 | 0 | 0 |
2020-01-25 | 2 | 0 | 0 | 0 |
2020-01-24 | 2 | 0 | 0 | 0 |
2020-01-23 | 2 | 0 | 0 | 0 |
1139 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:00:18.382063