Germany: LK Schwäbisch Hall (Baden-Württemberg)¶

  • Homepage of project: https://oscovida.github.io
  • Plots are explained at http://oscovida.github.io/plots.html
  • Execute this Jupyter Notebook using myBinder
In [1]:
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 10:11:42 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Germany", subregion="LK Schwäbisch Hall", weeks=5);
2023-03-07T10:11:55.699071 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 30 30 40 40 50 50 60 60 7-day incidence rate (per 100K people) 50.7 LK Schwäbisch Hall, Germany, last 5 weeks, last data point from 2023-03-06 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0 5 10 15 20 daily change normalised per 100K 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0.0 0.2 0.4 daily change normalised per 100K 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0.8 0.8 0.9 0.9 1.0 1.0 1.1 1.1 1.2 1.2 R & growth factor (based on cases) Germany-LK Schwäbisch Hall cases daily growth factor Germany-LK Schwäbisch Hall cases daily growth factor (rolling mean) Germany-LK Schwäbisch Hall estimated R (using cases) 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0 0 1 1 2 2 3 3 4 4 R & growth factor (based on deaths) Germany-LK Schwäbisch Hall deaths daily growth factor Germany-LK Schwäbisch Hall deaths daily growth factor (rolling mean) Germany-LK Schwäbisch Hall estimated R (using deaths) 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0 2000 4000 6000 cases doubling time [days] Germany-LK Schwäbisch Hall doubling time cases (rolling mean) 0.00 9.97 19.94 29.91 39.88 daily change Germany-LK Schwäbisch Hall new cases (rolling 7d mean) Germany-LK Schwäbisch Hall new cases 0.000 0.399 0.798 daily change Germany-LK Schwäbisch Hall new deaths (rolling 7d mean) Germany-LK Schwäbisch Hall new deaths 0.00 0.28 0.56 0.84
In [4]:
overview(country="Germany", subregion="LK Schwäbisch Hall");
2023-03-07T10:12:13.173064 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 1000 1000 2000 2000 7-day incidence rate (per 100K people) 50.7 LK Schwäbisch Hall, Germany, last data point from 2023-03-06 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 200 400 daily change normalised per 100K May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 1 2 3 4 daily change normalised per 100K May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0.8 0.8 0.9 0.9 1.0 1.0 1.1 1.1 1.2 1.2 R & growth factor (based on cases) Germany-LK Schwäbisch Hall cases daily growth factor Germany-LK Schwäbisch Hall cases daily growth factor (rolling mean) Germany-LK Schwäbisch Hall estimated R (using cases) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 1 1 2 2 3 3 4 4 R & growth factor (based on deaths) Germany-LK Schwäbisch Hall deaths daily growth factor Germany-LK Schwäbisch Hall deaths daily growth factor (rolling mean) Germany-LK Schwäbisch Hall estimated R (using deaths) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 5000 10000 15000 20000 cases doubling time [days] Germany-LK Schwäbisch Hall doubling time cases (rolling mean) Germany-LK Schwäbisch Hall doubling time deaths (rolling mean) 0 399 798 daily change Germany-LK Schwäbisch Hall new cases (rolling 7d mean) Germany-LK Schwäbisch Hall new cases 0.000 1.994 3.988 5.982 7.976 daily change Germany-LK Schwäbisch Hall new deaths (rolling 7d mean) Germany-LK Schwäbisch Hall new deaths 0.0 77.4 154.7 232.1 309.4 deaths doubling time [days]
In [5]:
compare_plot(country="Germany", subregion="LK Schwäbisch Hall", dates="2020-03-15:");
2023-03-07T10:14:28.843045 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 2020-05 2020-09 2021-01 2021-05 2021-09 2022-01 2022-05 2022-09 2023-01 0.1 0.1 1 1 10 10 100 100 daily new cases (rolling 7-day mean) normalised by 100K people Daily cases (top) and deaths (below) for Germany: LK Schwäbisch Hall LK Schwäbisch Hall Bayern Berlin Bremen Hamburg Hessen Nordrhein-Westfalen Sachsen-Anhalt 2020-05 2020-09 2021-01 2021-05 2021-09 2022-01 2022-05 2022-09 2023-01 0.001 0.001 0.01 0.01 0.1 0.1 1 1 daily new deaths (rolling 7-day mean) normalised by 100K people LK Schwäbisch Hall Bayern Berlin Bremen Hamburg Hessen Nordrhein-Westfalen Sachsen-Anhalt
In [6]:
# load the data
cases, deaths = germany_get_region(landkreis="LK Schwäbisch Hall")

# get population of the region for future normalisation:
inhabitants = population(country="Germany", subregion="LK Schwäbisch Hall")
print(f'Population of country="Germany", subregion="LK Schwäbisch Hall": {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 Schwäbisch Hall": 199398 people
Out[6]:
total cases daily new cases total deaths daily new deaths
date
2023-03-06 86176 5 378 0
2023-03-04 86171 12 378 0
2023-03-03 86159 9 378 0
2023-03-02 86150 15 378 0
2023-03-01 86135 19 378 0
2023-02-28 86116 41 378 0
2023-02-27 86075 12 378 0
2023-02-25 86063 19 378 0
2023-02-24 86044 12 378 0
2023-02-23 86032 22 378 0
2023-02-22 86010 18 378 0
2023-02-21 85992 24 378 0
2023-02-20 85968 22 378 0
2023-02-18 85946 18 378 0
2023-02-17 85928 15 378 0
2023-02-16 85913 24 378 0
2023-02-15 85889 15 378 0
2023-02-14 85874 22 378 0
2023-02-13 85852 14 378 0
2023-02-11 85838 11 378 0
2023-02-10 85827 18 378 1
2023-02-09 85809 19 377 0
2023-02-08 85790 23 377 0
2023-02-07 85767 16 377 0
2023-02-06 85751 17 377 0
2023-02-04 85734 14 377 0
2023-02-03 85720 15 377 0
2023-02-02 85705 17 377 0
2023-02-01 85688 10 377 0
2023-01-31 85678 16 377 0
2023-01-30 85662 6 377 0
2023-01-28 85656 6 377 0
2023-01-27 85650 7 377 0
2023-01-26 85643 7 377 0
2023-01-25 85636 8 377 0
2023-01-24 85628 6 377 0
2023-01-23 85622 5 377 0
2023-01-21 85617 6 377 0
2023-01-20 85611 1 377 0
2023-01-19 85610 4 377 0
2023-01-18 85606 5 377 0
2023-01-17 85601 7 377 0
2023-01-16 85594 3 377 0
2023-01-14 85591 7 377 0
2023-01-13 85584 8 377 0
2023-01-12 85576 6 377 0
2023-01-11 85570 15 377 0
2023-01-10 85555 12 377 0
2023-01-09 85543 10 377 0
2023-01-07 85533 13 377 0
2023-01-05 85520 13 377 0
2023-01-04 85507 19 377 0
2023-01-03 85488 21 377 0
2023-01-02 85467 10 377 1
2022-12-31 85457 13 376 0
2022-12-30 85444 13 376 0
2022-12-29 85431 15 376 0
2022-12-28 85416 15 376 0
2022-12-27 85401 26 376 0
2022-12-24 85375 30 376 0
2022-12-23 85345 20 376 0
2022-12-22 85325 26 376 0
2022-12-21 85299 24 376 0
2022-12-20 85275 33 376 0
2022-12-19 85242 16 376 0
2022-12-17 85226 23 376 1
2022-12-16 85203 21 375 0
2022-12-15 85182 15 375 0
2022-12-14 85167 23 375 1
2022-12-13 85144 34 374 0
2022-12-12 85110 19 374 0
2022-12-10 85091 26 374 0
2022-12-09 85065 21 374 0
2022-12-08 85044 20 374 0
2022-12-07 85024 29 374 1
2022-12-06 84995 30 373 0
2022-12-05 84965 16 373 0
2022-12-03 84949 13 373 0
2022-12-02 84936 19 373 0
2022-12-01 84917 15 373 0
2022-11-30 84902 25 373 0
2022-11-29 84877 36 373 0
2022-11-28 84841 13 373 0
2022-11-26 84828 18 373 0
2022-11-25 84810 18 373 0
2022-11-24 84792 28 373 0
2022-11-23 84764 15 373 0
2022-11-22 84749 17 373 0
2022-11-21 84732 21 373 0
2022-11-19 84711 25 373 0
2022-11-18 84686 14 373 0
2022-11-17 84672 26 373 0
2022-11-16 84646 26 373 0
2022-11-15 84620 39 373 1
2022-11-14 84581 20 372 0
2022-11-12 84561 18 372 0
2022-11-11 84543 32 372 0
2022-11-10 84511 39 372 1
2022-11-09 84472 42 371 0
2022-11-08 84430 58 371 0
2022-11-07 84372 30 371 0
2022-11-05 84342 27 371 0
2022-11-04 84315 63 371 0
2022-11-03 84252 43 371 0
2022-11-02 84209 33 371 0
2022-11-01 84176 41 371 0
2022-10-31 84135 25 371 0
2022-10-29 84110 56 371 0
2022-10-28 84054 79 371 0
2022-10-27 83975 86 371 0
2022-10-26 83889 147 371 0
2022-10-25 83742 124 371 0
2022-10-24 83618 56 371 1
2022-10-22 83562 136 370 0
2022-10-21 83426 181 370 1
2022-10-20 83245 181 369 0
2022-10-19 83064 375 369 1
2022-10-18 82689 228 368 0
2022-10-17 82461 112 368 0
2022-10-15 82349 239 368 0
2022-10-14 82110 216 368 1
2022-10-13 81894 260 367 1
2022-10-12 81634 238 366 0
2022-10-11 81396 192 366 0
2022-10-10 81204 160 366 3
2022-10-08 81044 235 363 0
2022-10-07 80809 283 363 0
2022-10-06 80526 327 363 0
2022-10-05 80199 151 363 1
2022-10-04 80048 128 362 0
2022-10-03 79920 71 362 0
2022-10-01 79849 180 362 0
2022-09-30 79669 222 362 0
2022-09-29 79447 264 362 1
2022-09-28 79183 299 361 0
2022-09-27 78884 223 361 0
2022-09-26 78661 132 361 0
2022-09-24 78529 193 361 0
2022-09-23 78336 142 361 0
2022-09-22 78194 142 361 0
2022-09-21 78052 63 361 0
2022-09-20 77989 59 361 0
2022-09-19 77930 17 361 0
2022-09-17 77913 47 361 0
2022-09-16 77866 33 361 0
2022-09-15 77833 50 361 0
2022-09-14 77783 43 361 0
2022-09-13 77740 37 361 0
2022-09-12 77703 8 361 0
2022-09-10 77695 30 361 0
2022-09-09 77665 34 361 0
2022-09-08 77631 51 361 0
2022-09-07 77580 68 361 0
2022-09-06 77512 42 361 1
2022-09-05 77470 21 360 0
2022-09-03 77449 39 360 0
2022-09-02 77410 15 360 0
2022-09-01 77395 57 360 0
2022-08-31 77338 59 360 0
2022-08-30 77279 71 360 0
2022-08-29 77208 33 360 0
2022-08-27 77175 44 360 0
2022-08-26 77131 36 360 0
2022-08-25 77095 56 360 0
2022-08-24 77039 69 360 0
2022-08-23 76970 52 360 0
2022-08-22 76918 29 360 0
2022-08-20 76889 35 360 0
2022-08-19 76854 56 360 0
2022-08-18 76798 67 360 0
2022-08-17 76731 121 360 0
2022-08-16 76610 75 360 1
2022-08-15 76535 52 359 2
2022-08-13 76483 94 357 0
2022-08-12 76389 103 357 1
2022-08-11 76286 82 356 0
2022-08-10 76204 147 356 1
2022-08-09 76057 120 355 1
2022-08-08 75937 72 354 0
2022-08-06 75865 89 354 1
2022-08-05 75776 106 353 0
2022-08-04 75670 129 353 0
2022-08-03 75541 212 353 0
2022-08-02 75329 137 353 0
2022-08-01 75192 47 353 0
2022-07-30 75145 174 353 0
2022-07-29 74971 182 353 0
2022-07-28 74789 236 353 0
2022-07-27 74553 335 353 2
2022-07-26 74218 315 351 0
2022-07-25 73903 210 351 1
2022-07-23 73693 231 350 0
2022-07-22 73462 240 350 3
2022-07-21 73222 368 347 0
2022-07-20 72854 390 347 2
2022-07-19 72464 310 345 0
2022-07-18 72154 95 345 0
2022-07-16 72059 254 345 0
2022-07-15 71805 262 345 0
2022-07-14 71543 345 345 0
2022-07-13 71198 275 345 0
2022-07-12 70923 258 345 0
2022-07-11 70665 193 345 0
2022-07-09 70472 184 345 0
2022-07-08 70288 216 345 0
2022-07-07 70072 122 345 0
2022-07-06 69950 274 345 0
2022-07-05 69676 169 345 2
2022-07-04 69507 127 343 0
2022-07-02 69380 118 343 0
2022-07-01 69262 112 343 0
2022-06-30 69150 181 343 0
2022-06-29 68969 211 343 0
2022-06-28 68758 203 343 0
2022-06-27 68555 84 343 1
2022-06-25 68471 71 342 1
2022-06-24 68400 115 341 0
2022-06-23 68285 162 341 0
2022-06-22 68123 141 341 0
2022-06-21 67982 190 341 0
2022-06-20 67792 33 341 1
2022-06-18 67759 92 340 0
2022-06-17 67667 72 340 0
2022-06-16 67595 71 340 0
2022-06-15 67524 82 340 0
2022-06-14 67442 113 340 1
2022-06-13 67329 39 339 0
2022-06-11 67290 73 339 0
2022-06-10 67217 60 339 0
2022-06-09 67157 105 339 0
2022-06-08 67052 66 339 0
2022-06-07 66986 8 339 0
2022-06-06 66978 25 339 0
2022-06-04 66953 59 339 0
2022-06-03 66894 56 339 0
2022-06-02 66838 77 339 1
2022-06-01 66761 80 338 0
2022-05-31 66681 63 338 0
2022-05-30 66618 26 338 0
2022-05-28 66592 44 338 0
2022-05-27 66548 29 338 0
2022-05-26 66519 55 338 0
2022-05-25 66464 99 338 0
2022-05-24 66365 48 338 0
2022-05-23 66317 35 338 0
2022-05-21 66282 97 338 0
2022-05-20 66185 94 338 0
2022-05-19 66091 86 338 0
2022-05-18 66005 91 338 0
2022-05-17 65914 123 338 0
2022-05-16 65791 47 338 0
2022-05-14 65744 109 338 0
2022-05-13 65635 99 338 0
2022-05-12 65536 164 338 0
2022-05-11 65372 133 338 0
2022-05-10 65239 196 338 0
2022-05-09 65043 61 338 0
2022-05-07 64982 152 338 0
2022-05-06 64830 183 338 0
2022-05-05 64647 153 338 0
2022-05-04 64494 242 338 0
2022-05-03 64252 150 338 0
2022-05-02 64102 87 338 0
2022-04-30 64015 116 338 0
2022-04-29 63899 173 338 0
2022-04-28 63726 146 338 0
2022-04-27 63580 267 338 0
2022-04-26 63313 239 338 1
2022-04-25 63074 263 337 0
2022-04-23 62811 225 337 0
2022-04-22 62586 252 337 0
2022-04-21 62334 293 337 0
2022-04-20 62041 257 337 0
2022-04-19 61784 106 337 0
2022-04-18 61678 184 337 0
2022-04-16 61494 143 337 0
2022-04-15 61351 257 337 0
2022-04-14 61094 340 337 1
2022-04-13 60754 425 336 0
2022-04-12 60329 330 336 0
2022-04-11 59999 261 336 0
2022-04-09 59738 295 336 0
2022-04-08 59443 300 336 0
2022-04-07 59143 359 336 2
2022-04-06 58784 629 334 0
2022-04-05 58155 275 334 0
2022-04-04 57880 280 334 0
2022-04-02 57600 356 334 1
2022-04-01 57244 498 333 0
2022-03-31 56746 602 333 0
2022-03-30 56144 755 333 1
2022-03-29 55389 375 332 1
2022-03-28 55014 352 331 0
2022-03-27 54662 131 331 0
2022-03-26 54531 573 331 0
2022-03-25 53958 584 331 0
2022-03-24 53374 645 331 3
2022-03-23 52729 888 328 0
2022-03-22 51841 553 328 0
2022-03-21 51288 366 328 0
2022-03-20 50922 271 328 0
2022-03-19 50651 463 328 1
2022-03-18 50188 772 327 0
2022-03-17 49416 910 327 0
2022-03-16 48506 820 327 2
2022-03-15 47686 622 325 0
2022-03-14 47064 623 325 1
2022-03-13 46441 213 324 0
2022-03-12 46228 393 324 1
2022-03-11 45835 746 323 0
2022-03-10 45089 648 323 0
2022-03-09 44441 760 323 0
2022-03-08 43681 532 323 0
2022-03-07 43149 224 323 0
2022-03-06 42925 186 323 1
2022-03-05 42739 420 322 0
2022-03-04 42319 577 322 1
2022-03-03 41742 558 321 1
2022-03-02 41184 442 320 0
2022-03-01 40742 425 320 0
2022-02-28 40317 161 320 1
2022-02-27 40156 105 319 0
2022-02-26 40051 394 319 0
2022-02-25 39657 581 319 0
2022-02-24 39076 540 319 1
2022-02-23 38536 723 318 0
2022-02-22 37813 420 318 0
2022-02-21 37393 103 318 0
2022-02-20 37290 190 318 1
2022-02-19 37100 515 317 0
2022-02-18 36585 577 317 0
2022-02-17 36008 766 317 3
2022-02-16 35242 801 314 0
2022-02-15 34441 550 314 0
2022-02-14 33891 549 314 0
2022-02-13 33342 338 314 1
2022-02-12 33004 322 313 1
2022-02-11 32682 856 312 1
2022-02-10 31826 696 311 1
2022-02-09 31130 727 310 0
2022-02-08 30403 908 310 3
2022-02-07 29495 401 307 2
2022-02-06 29094 301 305 0
2022-02-05 28793 525 305 0
2022-02-04 28268 681 305 2
2022-02-03 27587 1036 303 1
2022-02-02 26551 648 302 1
2022-02-01 25903 474 301 0
2022-01-31 25429 207 301 1
2022-01-30 25222 209 300 0
2022-01-29 25013 449 300 1
2022-01-28 24564 690 299 0
2022-01-27 23874 553 299 0
2022-01-26 23321 442 299 1
2022-01-25 22879 374 298 0
2022-01-24 22505 152 298 0
2022-01-23 22353 159 298 0
2022-01-22 22194 264 298 1
2022-01-21 21930 264 297 0
2022-01-20 21666 338 297 1
2022-01-19 21328 287 296 0
2022-01-18 21041 221 296 0
2022-01-17 20820 69 296 0
2022-01-16 20751 10 296 0
2022-01-15 20741 169 296 0
2022-01-14 20572 130 296 0
2022-01-13 20442 163 296 0
2022-01-12 20279 166 296 0
2022-01-11 20113 122 296 0
2022-01-10 19991 50 296 1
2022-01-09 19941 33 295 0
2022-01-08 19908 108 295 0
2022-01-07 19800 114 295 0
2022-01-06 19686 80 295 0
2022-01-05 19606 145 295 0
2022-01-04 19461 84 295 1
2022-01-03 19377 44 294 0
2022-01-02 19333 6 294 0
2022-01-01 19327 30 294 0
2021-12-31 19297 75 294 0
2021-12-30 19222 76 294 0
2021-12-29 19146 122 294 0
2021-12-28 19024 89 294 1
2021-12-27 18935 26 293 2
2021-12-26 18909 5 291 1
2021-12-25 18904 28 290 0
2021-12-24 18876 62 290 0
2021-12-23 18814 96 290 0
2021-12-22 18718 105 290 1
2021-12-21 18613 90 289 0
2021-12-20 18523 20 289 0
2021-12-19 18503 34 289 0
2021-12-18 18469 77 289 0
2021-12-17 18392 100 289 0
2021-12-16 18292 87 289 1
2021-12-15 18205 168 288 2
2021-12-14 18037 113 286 1
2021-12-13 17924 22 285 0
2021-12-12 17902 29 285 1
2021-12-11 17873 117 284 0
2021-12-10 17756 115 284 0
2021-12-09 17641 115 284 0
2021-12-08 17526 243 284 0
2021-12-07 17283 83 284 1
2021-12-06 17200 30 283 0
2021-12-05 17170 86 283 0
2021-12-04 17084 142 283 0
2021-12-03 16942 198 283 1
2021-12-02 16744 246 282 0
2021-12-01 16498 188 282 0
2021-11-30 16310 122 282 0
2021-11-29 16188 35 282 0
2021-11-28 16153 54 282 1
2021-11-27 16099 213 281 1
2021-11-26 15886 181 280 0
2021-11-25 15705 196 280 2
2021-11-24 15509 155 278 1
2021-11-23 15354 188 277 2
2021-11-22 15166 46 275 0
2021-11-21 15120 57 275 1
2021-11-20 15063 164 274 1
2021-11-19 14899 155 273 1
2021-11-18 14744 170 272 1
2021-11-17 14574 114 271 1
2021-11-16 14460 135 270 0
2021-11-15 14325 22 270 1
2021-11-14 14303 42 269 0
2021-11-13 14261 103 269 0
2021-11-12 14158 94 269 0
2021-11-11 14064 169 269 0
2021-11-10 13895 136 269 0
2021-11-09 13759 128 269 0
2021-11-08 13631 28 269 0
2021-11-07 13603 38 269 0
2021-11-06 13565 141 269 0
2021-11-05 13424 99 269 0
2021-11-04 13325 109 269 0
2021-11-03 13216 53 269 0
2021-11-02 13163 21 269 0
2021-11-01 13142 18 269 0
2021-10-31 13124 18 269 0
2021-10-30 13106 51 269 0
2021-10-29 13055 53 269 0
2021-10-28 13002 63 269 0
2021-10-27 12939 70 269 0
2021-10-26 12869 39 269 0
2021-10-25 12830 12 269 0
2021-10-24 12818 5 269 0
2021-10-23 12813 41 269 0
2021-10-22 12772 26 269 0
2021-10-21 12746 42 269 0
2021-10-20 12704 45 269 0
2021-10-19 12659 26 269 0
2021-10-18 12633 1 269 0
2021-10-17 12632 4 269 0
2021-10-16 12628 20 269 0
2021-10-15 12608 20 269 1
2021-10-14 12588 17 268 0
2021-10-13 12571 15 268 0
2021-10-12 12556 20 268 1
2021-10-11 12536 2 267 0
2021-10-10 12534 6 267 0
2021-10-09 12528 13 267 0
2021-10-08 12515 20 267 0
2021-10-07 12495 23 267 0
2021-10-06 12472 38 267 0
2021-10-05 12434 18 267 0
2021-10-03 12416 2 267 0
2021-10-02 12414 16 267 0
2021-10-01 12398 17 267 0
2021-09-30 12381 11 267 0
2021-09-29 12370 15 267 0
2021-09-28 12355 21 267 0
2021-09-27 12334 4 267 0
2021-09-26 12330 5 267 1
2021-09-25 12325 24 266 0
2021-09-24 12301 11 266 0
2021-09-23 12290 27 266 0
2021-09-22 12263 25 266 1
2021-09-21 12238 30 265 0
2021-09-20 12208 1 265 0
2021-09-19 12207 14 265 0
2021-09-18 12193 16 265 0
2021-09-17 12177 22 265 0
2021-09-16 12155 16 265 0
2021-09-15 12139 34 265 0
2021-09-14 12105 27 265 1
2021-09-13 12078 1 264 0
2021-09-12 12077 10 264 0
2021-09-11 12067 22 264 0
2021-09-10 12045 18 264 0
2021-09-09 12027 21 264 0
2021-09-08 12006 28 264 0
2021-09-07 11978 21 264 0
2021-09-06 11957 5 264 0
2021-09-05 11952 13 264 0
2021-09-04 11939 25 264 0
2021-09-03 11914 23 264 0
2021-09-02 11891 25 264 1
2021-09-01 11866 33 263 0
2021-08-31 11833 26 263 0
2021-08-30 11807 2 263 0
2021-08-29 11805 3 263 0
2021-08-28 11802 37 263 0
2021-08-27 11765 16 263 0
2021-08-26 11749 33 263 0
2021-08-25 11716 33 263 0
2021-08-24 11683 23 263 0
2021-08-23 11660 3 263 0
2021-08-21 11657 28 263 1
2021-08-20 11629 17 262 0
2021-08-19 11612 16 262 1
2021-08-18 11596 15 261 0
2021-08-17 11581 12 261 0
2021-08-16 11569 1 261 0
2021-08-15 11568 2 261 0
2021-08-14 11566 7 261 0
2021-08-13 11559 6 261 0
2021-08-12 11553 7 261 0
2021-08-11 11546 6 261 0
2021-08-10 11540 5 261 0
2021-08-08 11535 2 261 0
2021-08-07 11533 5 261 0
2021-08-06 11528 2 261 0
2021-08-05 11526 3 261 0
2021-08-04 11523 9 261 0
2021-07-29 11514 2 261 0
2021-07-28 11512 4 261 0
2021-07-24 11508 1 261 0
2021-07-22 11507 1 261 0
2021-07-21 11506 1 261 0
2021-07-17 11505 2 261 0
2021-07-16 11503 2 261 0
2021-07-15 11501 1 261 0
2021-07-12 11500 1 261 0
2021-07-07 11499 1 261 0
2021-07-06 11498 2 261 0
2021-07-03 11496 1 261 0
2021-07-02 11495 1 261 0
2021-07-01 11494 1 261 0
2021-06-30 11493 2 261 0
2021-06-27 11491 1 261 0
2021-06-24 11490 1 261 0
2021-06-23 11489 3 261 0
2021-06-22 11486 2 261 0
2021-06-19 11484 2 261 0
2021-06-18 11482 5 261 0
2021-06-17 11477 8 261 0
2021-06-16 11469 3 261 0
2021-06-15 11466 5 261 0
2021-06-14 11461 1 261 0
2021-06-12 11460 5 261 0
2021-06-11 11455 7 261 0
2021-06-10 11448 9 261 1
2021-06-09 11439 15 260 0
2021-06-08 11424 13 260 0
2021-06-07 11411 4 260 0
2021-06-06 11407 10 260 1
2021-06-05 11397 11 259 1
2021-06-04 11386 10 258 0
2021-06-03 11376 6 258 1
2021-06-02 11370 13 257 0
2021-06-01 11357 15 257 0
2021-05-31 11342 2 257 0
2021-05-30 11340 9 257 0
2021-05-29 11331 19 257 0
2021-05-28 11312 25 257 0
2021-05-27 11287 35 257 0
2021-05-26 11252 20 257 0
2021-05-25 11232 2 257 0
2021-05-24 11230 5 257 0
2021-05-23 11225 30 257 0
2021-05-22 11195 22 257 0
2021-05-21 11173 41 257 1
2021-05-20 11132 30 256 0
2021-05-19 11102 50 256 0
2021-05-18 11052 32 256 0
2021-05-17 11020 4 256 0
2021-05-16 11016 18 256 1
2021-05-15 10998 16 255 0
2021-05-14 10982 41 255 0
2021-05-13 10941 59 255 0
2021-05-12 10882 60 255 1
2021-05-11 10822 33 254 0
2021-05-10 10789 3 254 0
2021-05-09 10786 30 254 0
2021-05-08 10756 36 254 2
2021-05-07 10720 47 252 2
2021-05-06 10673 74 250 1
2021-05-05 10599 41 249 0
2021-05-04 10558 45 249 1
2021-05-03 10513 10 248 0
2021-05-02 10503 43 248 1
2021-05-01 10460 55 247 0
2021-04-30 10405 94 247 2
2021-04-29 10311 93 245 0
2021-04-28 10218 91 245 0
2021-04-27 10127 44 245 0
2021-04-26 10083 45 245 1
2021-04-25 10038 42 244 0
2021-04-24 9996 55 244 0
2021-04-23 9941 102 244 0
2021-04-22 9839 108 244 1
2021-04-21 9731 109 243 0
2021-04-20 9622 50 243 0
2021-04-19 9572 16 243 0
2021-04-18 9556 43 243 3
2021-04-17 9513 68 240 0
2021-04-16 9445 114 240 4
2021-04-15 9331 149 236 3
2021-04-14 9182 95 233 0
2021-04-13 9087 55 233 1
2021-04-12 9032 37 232 0
2021-04-11 8995 48 232 1
2021-04-10 8947 104 231 5
2021-04-09 8843 153 226 1
2021-04-08 8690 117 225 1
2021-04-07 8573 51 224 0
2021-04-06 8522 35 224 0
2021-04-05 8487 23 224 1
2021-04-04 8464 85 223 3
2021-04-03 8379 81 220 1
2021-04-02 8298 79 219 2
2021-04-01 8219 104 217 0
2021-03-31 8115 87 217 1
2021-03-30 8028 92 216 3
2021-03-29 7936 101 213 3
2021-03-28 7835 106 210 4
2021-03-27 7729 149 206 9
2021-03-26 7580 152 197 4
2021-03-25 7428 175 193 3
2021-03-24 7253 161 190 4
2021-03-23 7092 119 186 4
2021-03-22 6973 90 182 0
2021-03-21 6883 104 182 0
2021-03-20 6779 78 182 1
2021-03-19 6701 77 181 0
2021-03-18 6624 127 181 1
2021-03-17 6497 113 180 0
2021-03-16 6384 80 180 2
2021-03-15 6304 35 178 0
2021-03-14 6269 53 178 1
2021-03-13 6216 73 177 0
2021-03-12 6143 107 177 3
2021-03-11 6036 85 174 0
2021-03-10 5951 74 174 2
2021-03-09 5877 33 172 0
2021-03-08 5844 17 172 0
2021-03-07 5827 44 172 0
2021-03-06 5783 81 172 1
2021-03-05 5702 63 171 0
2021-03-04 5639 78 171 4
2021-03-03 5561 42 167 1
2021-03-02 5519 23 166 0
2021-03-01 5496 18 166 0
2021-02-28 5478 47 166 1
2021-02-27 5431 29 165 1
2021-02-26 5402 45 164 0
2021-02-25 5357 55 164 1
2021-02-24 5302 49 163 0
2021-02-23 5253 50 163 0
2021-02-22 5203 36 163 1
2021-02-21 5167 18 162 0
2021-02-20 5149 19 162 0
2021-02-19 5130 60 162 1
2021-02-18 5070 71 161 0
2021-02-17 4999 19 161 0
2021-02-16 4980 18 161 0
2021-02-15 4962 20 161 0
2021-02-14 4942 12 161 0
2021-02-13 4930 53 161 2
2021-02-12 4877 45 159 0
2021-02-11 4832 41 159 2
2021-02-10 4791 47 157 2
2021-02-09 4744 13 155 2
2021-02-08 4731 5 153 1
2021-02-07 4726 16 152 0
2021-02-06 4710 17 152 0
2021-02-05 4693 15 152 0
2021-02-04 4678 40 152 0
2021-02-03 4638 31 152 0
2021-02-02 4607 15 152 1
2021-02-01 4592 5 151 0
2021-01-31 4587 2 151 0
2021-01-30 4585 17 151 0
2021-01-29 4568 43 151 4
2021-01-28 4525 27 147 0
2021-01-27 4498 37 147 2
2021-01-26 4461 19 145 0
2021-01-25 4442 9 145 0
2021-01-24 4433 4 145 0
2021-01-23 4429 19 145 0
2021-01-22 4410 34 145 1
2021-01-21 4376 17 144 1
2021-01-20 4359 38 143 2
2021-01-19 4321 16 141 1
2021-01-18 4305 8 140 1
2021-01-17 4297 8 139 0
2021-01-16 4289 30 139 1
2021-01-15 4259 30 138 2
2021-01-14 4229 40 136 1
2021-01-13 4189 70 135 0
2021-01-12 4119 44 135 3
2021-01-11 4075 41 132 0
2021-01-10 4034 28 132 2
2021-01-09 4006 31 130 1
2021-01-08 3975 51 129 4
2021-01-07 3924 90 125 1
2021-01-06 3834 62 124 1
2021-01-05 3772 80 123 2
2021-01-04 3692 19 121 1
2021-01-03 3673 5 120 0
2021-01-02 3668 29 120 1
2021-01-01 3639 50 119 0
2020-12-31 3589 64 119 5
2020-12-30 3525 71 114 2
2020-12-29 3454 32 112 4
2020-12-28 3422 23 108 0
2020-12-27 3399 5 108 2
2020-12-26 3394 22 106 3
2020-12-25 3372 41 103 1
2020-12-24 3331 46 102 4
2020-12-23 3285 65 98 1
2020-12-22 3220 17 97 0
2020-12-21 3203 24 97 2
2020-12-20 3179 40 95 0
2020-12-19 3139 47 95 1
2020-12-18 3092 71 94 1
2020-12-17 3021 70 93 2
2020-12-16 2951 75 91 1
2020-12-15 2876 31 90 0
2020-12-14 2845 31 90 0
2020-12-13 2814 23 90 2
2020-12-12 2791 44 88 0
2020-12-11 2747 56 88 0
2020-12-10 2691 47 88 1
2020-12-09 2644 83 87 1
2020-12-08 2561 25 86 2
2020-12-07 2536 17 84 0
2020-12-06 2519 11 84 0
2020-12-05 2508 37 84 3
2020-12-04 2471 38 81 1
2020-12-03 2433 48 80 0
2020-12-02 2385 51 80 3
2020-12-01 2334 16 77 0
2020-11-30 2318 11 77 1
2020-11-29 2307 9 76 0
2020-11-28 2298 19 76 0
2020-11-27 2279 27 76 0
2020-11-26 2252 34 76 2
2020-11-25 2218 31 74 1
2020-11-24 2187 7 73 0
2020-11-23 2180 5 73 0
2020-11-22 2175 1 73 0
2020-11-21 2174 24 73 0
2020-11-20 2150 31 73 0
2020-11-19 2119 38 73 0
2020-11-18 2081 35 73 0
2020-11-17 2046 14 73 0
2020-11-16 2032 24 73 0
2020-11-15 2008 11 73 0
2020-11-14 1997 43 73 1
2020-11-13 1954 19 72 0
2020-11-12 1935 33 72 1
2020-11-11 1902 19 71 0
2020-11-10 1883 27 71 0
2020-11-09 1856 16 71 0
2020-11-08 1840 7 71 0
2020-11-07 1833 7 71 0
2020-11-06 1826 38 71 0
2020-11-05 1788 30 71 1
2020-11-04 1758 32 70 1
2020-11-03 1726 21 69 0
2020-11-02 1705 30 69 0
2020-11-01 1675 25 69 1
2020-10-31 1650 30 68 0
2020-10-30 1620 37 68 0
2020-10-29 1583 32 68 0
2020-10-28 1551 32 68 2
2020-10-27 1519 14 66 0
2020-10-26 1505 19 66 1
2020-10-25 1486 21 65 0
2020-10-24 1465 24 65 2
2020-10-23 1441 25 63 1
2020-10-22 1416 41 62 0
2020-10-21 1375 21 62 1
2020-10-20 1354 11 61 0
2020-10-19 1343 13 61 0
2020-10-18 1330 5 61 1
2020-10-17 1325 21 60 0
2020-10-16 1304 20 60 0
2020-10-15 1284 24 60 0
2020-10-14 1260 17 60 0
2020-10-13 1243 12 60 0
2020-10-12 1231 5 60 0
2020-10-11 1226 10 60 0
2020-10-10 1216 17 60 0
2020-10-09 1199 15 60 0
2020-10-08 1184 22 60 0
2020-10-07 1162 14 60 0
2020-10-06 1148 9 60 0
2020-10-05 1139 9 60 0
2020-10-03 1130 6 60 0
2020-10-02 1124 6 60 0
2020-10-01 1118 8 60 0
2020-09-30 1110 4 60 0
2020-09-29 1106 8 60 0
2020-09-28 1098 9 60 0
2020-09-27 1089 1 60 0
2020-09-26 1088 11 60 1
2020-09-25 1077 11 59 0
2020-09-24 1066 14 59 0
2020-09-23 1052 6 59 0
2020-09-22 1046 5 59 0
2020-09-21 1041 2 59 0
2020-09-20 1039 9 59 0
2020-09-19 1030 12 59 0
2020-09-18 1018 9 59 0
2020-09-17 1009 8 59 0
2020-09-16 1001 10 59 0
2020-09-14 991 7 59 0
2020-09-12 984 4 59 0
2020-09-11 980 4 59 0
2020-09-10 976 1 59 0
2020-09-09 975 2 59 0
2020-09-08 973 2 59 0
2020-09-07 971 12 59 0
2020-09-05 959 5 59 0
2020-09-04 954 1 59 0
2020-09-03 953 2 59 0
2020-09-02 951 1 59 0
2020-09-01 950 7 59 0
2020-08-30 943 2 59 0
2020-08-29 941 5 59 0
2020-08-28 936 1 59 0
2020-08-27 935 6 59 0
2020-08-26 929 4 59 0
2020-08-25 925 3 59 0
2020-08-24 922 5 59 0
2020-08-22 917 2 59 0
2020-08-21 915 5 59 0
2020-08-20 910 6 59 0
2020-08-19 904 6 59 0
2020-08-18 898 1 59 0
2020-08-17 897 2 59 0
2020-08-14 895 6 59 0
2020-08-13 889 1 59 0
2020-08-12 888 5 59 0
2020-08-11 883 3 59 0
2020-08-10 880 1 59 0
2020-08-08 879 5 59 0
2020-08-07 874 1 59 0
2020-08-05 873 2 59 0
2020-08-04 871 2 59 0
2020-07-30 869 1 59 0
2020-07-29 868 1 59 0
2020-07-14 867 1 59 0
2020-07-12 866 2 59 0
2020-07-09 864 1 59 0
2020-06-26 863 1 59 0
2020-06-24 862 1 59 0
2020-06-20 861 1 59 0
2020-06-19 860 1 59 0
2020-06-17 859 1 59 0
2020-06-15 858 1 59 0
2020-06-03 857 1 59 0
2020-05-30 856 5 59 0
2020-05-28 851 4 59 0
2020-05-27 847 1 59 0
2020-05-25 846 1 59 0
2020-05-22 845 9 59 0
2020-05-20 836 4 59 0
2020-05-18 832 1 59 0
2020-05-16 831 1 59 0
2020-05-15 830 4 59 0
2020-05-14 826 1 59 0
2020-05-13 825 2 59 0
2020-05-12 823 1 59 0
2020-05-09 822 9 59 0
2020-05-08 813 1 59 0
2020-05-07 812 8 59 1
2020-05-06 804 2 58 0
2020-05-05 802 2 58 0
2020-05-02 800 1 58 0
2020-05-01 799 1 58 0
2020-04-30 798 4 58 0
2020-04-29 794 4 58 0
2020-04-28 790 4 58 1
2020-04-27 786 5 57 0
2020-04-26 781 21 57 0
2020-04-25 760 6 57 1
2020-04-24 754 14 56 0
2020-04-23 740 7 56 0
2020-04-22 733 6 56 0
2020-04-21 727 11 56 0
2020-04-20 716 13 56 2
2020-04-19 703 5 54 1
2020-04-18 698 9 53 0
2020-04-17 689 17 53 2
2020-04-16 672 22 51 3
2020-04-15 650 14 48 1
2020-04-14 636 9 47 1
2020-04-13 627 1 46 0
2020-04-12 626 4 46 0
2020-04-11 622 12 46 0
2020-04-10 610 7 46 1
2020-04-09 603 16 45 0
2020-04-08 587 33 45 3
2020-04-07 554 11 42 2
2020-04-06 543 23 40 2
2020-04-05 520 14 38 3
2020-04-04 506 35 35 1
2020-04-03 471 39 34 2
2020-04-02 432 37 32 1
2020-04-01 395 39 31 4
2020-03-31 356 16 27 1
2020-03-30 340 30 26 3
2020-03-29 310 19 23 3
2020-03-28 291 20 20 0
2020-03-27 271 24 20 2
2020-03-26 247 54 18 3
2020-03-25 193 29 15 2
2020-03-24 164 15 13 3
2020-03-23 149 9 10 2
2020-03-22 140 15 8 0
2020-03-21 125 21 8 3
2020-03-20 104 19 5 3
2020-03-19 85 15 2 0
2020-03-18 70 12 2 0
2020-03-17 58 25 2 2
2020-03-16 33 1 0 0
2020-03-15 32 1 0 0
2020-03-14 31 9 0 0
2020-03-13 22 5 0 0
2020-03-12 17 3 0 0
2020-03-11 14 6 0 0
2020-03-10 8 7 0 0

Explore the data in your web browser¶

  • If you want to execute this notebook, click here to use myBinder
  • and wait (~1 to 2 minutes)
  • Then press SHIFT+RETURN to advance code cell to code cell
  • See http://jupyter.org for more details on how to use Jupyter Notebook

Acknowledgements:¶

  • Johns Hopkins University provides data for countries
  • Robert Koch Institute provides data for within Germany
  • Atlo Team for gathering and providing data from Hungary (https://atlo.team/koronamonitor/)
  • Open source and scientific computing community for the data tools
  • Github for hosting repository and html files
  • Project Jupyter for the Notebook and binder service
  • The H2020 project Photon and Neutron Open Science Cloud (PaNOSC)

In [7]:
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.
In [8]:
# to force a fresh download of data, run "clear_cache()"
In [9]:
print(f"Notebook execution took: {datetime.datetime.now()-start}")
Notebook execution took: 0:03:09.979039