Germany: LK Märkisch-Oderland (Brandenburg)¶

  • 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 12:28:41 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Germany", subregion="LK Märkisch-Oderland", weeks=5);
2023-03-07T12:28:50.427614 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 40 40 60 60 80 80 7-day incidence rate (per 100K people) 30.8 LK Märkisch-Oderland, Germany, last 5 weeks, last data point from 2023-03-06 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0 10 20 30 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.6 0.6 0.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Germany-LK Märkisch-Oderland cases daily growth factor Germany-LK Märkisch-Oderland cases daily growth factor (rolling mean) Germany-LK Märkisch-Oderland estimated R (using cases) 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0 0 2 2 4 4 6 6 8 8 R & growth factor (based on deaths) Germany-LK Märkisch-Oderland deaths daily growth factor Germany-LK Märkisch-Oderland deaths daily growth factor (rolling mean) Germany-LK Märkisch-Oderland 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 Märkisch-Oderland doubling time cases (rolling mean) 0.00 19.80 39.59 59.39 daily change Germany-LK Märkisch-Oderland new cases (rolling 7d mean) Germany-LK Märkisch-Oderland new cases 0.000 0.396 0.792 daily change Germany-LK Märkisch-Oderland new deaths (rolling 7d mean) Germany-LK Märkisch-Oderland new deaths 0.000 0.271 0.541 0.812
In [4]:
overview(country="Germany", subregion="LK Märkisch-Oderland");
2023-03-07T12:29:06.430287 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ Jan 20 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) 30.8 LK Märkisch-Oderland, Germany, last data point from 2023-03-06 Jan 20 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 Jan 20 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 2 4 daily change normalised per 100K Jan 20 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0.6 0.6 0.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Germany-LK Märkisch-Oderland cases daily growth factor Germany-LK Märkisch-Oderland cases daily growth factor (rolling mean) Germany-LK Märkisch-Oderland estimated R (using cases) Jan 20 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 2 2 4 4 6 6 8 8 R & growth factor (based on deaths) Germany-LK Märkisch-Oderland deaths daily growth factor Germany-LK Märkisch-Oderland deaths daily growth factor (rolling mean) Germany-LK Märkisch-Oderland estimated R (using deaths) Jan 20 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 2500 5000 7500 10000 cases doubling time [days] Germany-LK Märkisch-Oderland doubling time cases (rolling mean) Germany-LK Märkisch-Oderland doubling time deaths (rolling mean) 0 396 792 daily change Germany-LK Märkisch-Oderland new cases (rolling 7d mean) Germany-LK Märkisch-Oderland new cases 0.00 3.96 7.92 daily change Germany-LK Märkisch-Oderland new deaths (rolling 7d mean) Germany-LK Märkisch-Oderland new deaths 0.0 79.9 159.7 239.6 319.5 deaths doubling time [days]
In [5]:
compare_plot(country="Germany", subregion="LK Märkisch-Oderland", dates="2020-03-15:");
2023-03-07T12:31:14.939628 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 Märkisch-Oderland LK Märkisch-Oderland 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 Märkisch-Oderland Bayern Berlin Bremen Hamburg Hessen Nordrhein-Westfalen Sachsen-Anhalt
In [6]:
# load the data
cases, deaths = germany_get_region(landkreis="LK Märkisch-Oderland")

# get population of the region for future normalisation:
inhabitants = population(country="Germany", subregion="LK Märkisch-Oderland")
print(f'Population of country="Germany", subregion="LK Märkisch-Oderland": {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 Märkisch-Oderland": 197965 people
Out[6]:
total cases daily new cases total deaths daily new deaths
date
2023-03-06 81739 8 451 0
2023-03-03 81731 11 451 0
2023-03-02 81720 10 451 0
2023-03-01 81710 9 451 0
2023-02-28 81701 23 451 0
2023-02-27 81678 33 451 1
2023-02-24 81645 14 450 0
2023-02-23 81631 18 450 0
2023-02-22 81613 65 450 0
2023-02-21 81548 23 450 0
2023-02-20 81525 30 450 0
2023-02-17 81495 9 450 0
2023-02-16 81486 33 450 0
2023-02-15 81453 29 450 0
2023-02-14 81424 39 450 1
2023-02-13 81385 46 449 1
2023-02-10 81339 17 448 0
2023-02-09 81322 25 448 0
2023-02-08 81297 36 448 0
2023-02-07 81261 36 448 0
2023-02-06 81225 29 448 0
2023-02-03 81196 19 448 0
2023-02-02 81177 21 448 0
2023-02-01 81156 43 448 0
2023-01-31 81113 32 448 1
2023-01-30 81081 44 447 2
2023-01-27 81037 14 445 0
2023-01-26 81023 29 445 0
2023-01-25 80994 32 445 0
2023-01-24 80962 24 445 0
2023-01-23 80938 21 445 0
2023-01-20 80917 30 445 0
2023-01-19 80887 9 445 0
2023-01-18 80878 32 445 0
2023-01-17 80846 27 445 0
2023-01-16 80819 13 445 3
2023-01-15 80806 26 442 0
2023-01-13 80780 20 442 0
2023-01-12 80760 37 442 1
2023-01-11 80723 46 441 0
2023-01-10 80677 45 441 0
2023-01-09 80632 49 441 0
2023-01-06 80583 29 441 1
2023-01-05 80554 57 440 1
2023-01-04 80497 42 439 0
2023-01-03 80455 91 439 1
2023-01-02 80364 155 438 2
2022-12-30 80209 2 436 0
2022-12-29 80207 45 436 0
2022-12-28 80162 92 436 1
2022-12-27 80070 42 435 1
2022-12-26 80028 8 434 0
2022-12-25 80020 10 434 0
2022-12-24 80010 62 434 0
2022-12-23 79948 105 434 0
2022-12-22 79843 89 434 1
2022-12-21 79754 79 433 1
2022-12-20 79675 151 432 1
2022-12-19 79524 74 431 1
2022-12-18 79450 18 430 0
2022-12-17 79432 46 430 1
2022-12-16 79386 69 429 0
2022-12-15 79317 129 429 0
2022-12-14 79188 138 429 0
2022-12-13 79050 164 429 0
2022-12-12 78886 74 429 1
2022-12-11 78812 10 428 0
2022-12-10 78802 104 428 0
2022-12-09 78698 99 428 0
2022-12-08 78599 95 428 1
2022-12-07 78504 130 427 1
2022-12-06 78374 220 426 2
2022-12-05 78154 47 424 0
2022-12-04 78107 5 424 0
2022-12-03 78102 70 424 0
2022-12-02 78032 92 424 0
2022-12-01 77940 61 424 0
2022-11-30 77879 156 424 1
2022-11-29 77723 140 423 0
2022-11-28 77583 85 423 2
2022-11-27 77498 2 421 0
2022-11-26 77496 39 421 0
2022-11-25 77457 86 421 0
2022-11-24 77371 85 421 1
2022-11-23 77286 81 420 0
2022-11-22 77205 133 420 0
2022-11-21 77072 61 420 0
2022-11-20 77011 18 420 0
2022-11-19 76993 17 420 0
2022-11-18 76976 78 420 0
2022-11-17 76898 88 420 0
2022-11-16 76810 64 420 0
2022-11-15 76746 91 420 0
2022-11-14 76655 62 420 1
2022-11-13 76593 3 419 0
2022-11-12 76590 35 419 0
2022-11-11 76555 93 419 0
2022-11-10 76462 86 419 0
2022-11-09 76376 65 419 0
2022-11-08 76311 147 419 0
2022-11-07 76164 75 419 0
2022-11-06 76089 11 419 0
2022-11-05 76078 32 419 0
2022-11-04 76046 81 419 0
2022-11-03 75965 64 419 0
2022-11-02 75901 156 419 0
2022-11-01 75745 89 419 1
2022-10-31 75656 63 418 0
2022-10-30 75593 9 418 0
2022-10-29 75584 59 418 0
2022-10-28 75525 83 418 0
2022-10-27 75442 122 418 0
2022-10-26 75320 123 418 0
2022-10-25 75197 316 418 1
2022-10-24 74881 55 417 0
2022-10-23 74826 12 417 0
2022-10-22 74814 127 417 0
2022-10-21 74687 102 417 0
2022-10-20 74585 191 417 0
2022-10-19 74394 184 417 0
2022-10-18 74210 400 417 0
2022-10-17 73810 68 417 1
2022-10-16 73742 18 416 0
2022-10-15 73724 81 416 0
2022-10-14 73643 243 416 0
2022-10-13 73400 214 416 0
2022-10-12 73186 191 416 1
2022-10-11 72995 274 415 0
2022-10-10 72721 183 415 2
2022-10-09 72538 28 413 0
2022-10-08 72510 97 413 0
2022-10-07 72413 262 413 1
2022-10-06 72151 302 412 0
2022-10-05 71849 337 412 1
2022-10-04 71512 158 411 0
2022-10-03 71354 24 411 0
2022-10-02 71330 16 411 0
2022-10-01 71314 61 411 0
2022-09-30 71253 168 411 1
2022-09-29 71085 212 410 0
2022-09-28 70873 224 410 2
2022-09-27 70649 328 408 0
2022-09-26 70321 35 408 0
2022-09-25 70286 63 408 0
2022-09-24 70223 44 408 1
2022-09-23 70179 90 407 0
2022-09-22 70089 118 407 0
2022-09-21 69971 159 407 0
2022-09-20 69812 229 407 0
2022-09-19 69583 58 407 2
2022-09-18 69525 14 405 0
2022-09-17 69511 86 405 0
2022-09-16 69425 57 405 0
2022-09-15 69368 94 405 0
2022-09-14 69274 138 405 0
2022-09-13 69136 160 405 0
2022-09-12 68976 63 405 0
2022-09-11 68913 8 405 0
2022-09-10 68905 48 405 0
2022-09-09 68857 120 405 0
2022-09-08 68737 60 405 0
2022-09-07 68677 249 405 0
2022-09-06 68428 40 405 0
2022-09-05 68388 33 405 0
2022-09-04 68355 7 405 0
2022-09-03 68348 39 405 0
2022-09-02 68309 82 405 0
2022-09-01 68227 71 405 0
2022-08-31 68156 77 405 0
2022-08-30 68079 106 405 0
2022-08-29 67973 75 405 0
2022-08-28 67898 3 405 0
2022-08-27 67895 58 405 0
2022-08-26 67837 69 405 0
2022-08-25 67768 64 405 0
2022-08-24 67704 95 405 0
2022-08-23 67609 147 405 0
2022-08-22 67462 86 405 0
2022-08-21 67376 13 405 0
2022-08-20 67363 72 405 0
2022-08-19 67291 63 405 0
2022-08-18 67228 112 405 0
2022-08-17 67116 95 405 1
2022-08-16 67021 188 404 3
2022-08-15 66833 77 401 0
2022-08-14 66756 13 401 0
2022-08-13 66743 42 401 0
2022-08-12 66701 119 401 0
2022-08-11 66582 134 401 0
2022-08-10 66448 135 401 0
2022-08-09 66313 198 401 0
2022-08-08 66115 43 401 0
2022-08-07 66072 14 401 0
2022-08-06 66058 50 401 0
2022-08-05 66008 100 401 1
2022-08-04 65908 114 400 0
2022-08-03 65794 128 400 0
2022-08-02 65666 215 400 1
2022-08-01 65451 99 399 0
2022-07-31 65352 19 399 0
2022-07-30 65333 63 399 0
2022-07-29 65270 136 399 0
2022-07-28 65134 104 399 0
2022-07-27 65030 202 399 0
2022-07-26 64828 264 399 0
2022-07-25 64564 125 399 1
2022-07-24 64439 7 398 0
2022-07-23 64432 66 398 0
2022-07-22 64366 157 398 0
2022-07-21 64209 151 398 0
2022-07-20 64058 168 398 1
2022-07-19 63890 314 397 1
2022-07-18 63576 125 396 0
2022-07-17 63451 10 396 0
2022-07-16 63441 64 396 0
2022-07-15 63377 147 396 0
2022-07-14 63230 129 396 1
2022-07-13 63101 147 395 0
2022-07-12 62954 267 395 1
2022-07-11 62687 100 394 1
2022-07-10 62587 25 393 0
2022-07-09 62562 106 393 0
2022-07-08 62456 90 393 0
2022-07-07 62366 148 393 0
2022-07-06 62218 162 393 0
2022-07-05 62056 283 393 0
2022-07-04 61773 106 393 0
2022-07-03 61667 14 393 0
2022-07-02 61653 114 393 0
2022-07-01 61539 115 393 1
2022-06-30 61424 152 392 1
2022-06-29 61272 179 391 1
2022-06-28 61093 281 390 0
2022-06-27 60812 86 390 0
2022-06-26 60726 14 390 0
2022-06-25 60712 79 390 0
2022-06-24 60633 138 390 0
2022-06-23 60495 135 390 0
2022-06-22 60360 133 390 0
2022-06-21 60227 239 390 0
2022-06-20 59988 99 390 0
2022-06-19 59889 17 390 0
2022-06-18 59872 71 390 0
2022-06-17 59801 140 390 0
2022-06-16 59661 81 390 0
2022-06-15 59580 90 390 0
2022-06-14 59490 158 390 0
2022-06-13 59332 66 390 0
2022-06-12 59266 11 390 1
2022-06-11 59255 44 389 0
2022-06-10 59211 100 389 0
2022-06-09 59111 88 389 0
2022-06-08 59023 148 389 0
2022-06-07 58875 78 389 0
2022-06-06 58797 13 389 0
2022-06-05 58784 4 389 0
2022-06-04 58780 32 389 0
2022-06-03 58748 66 389 0
2022-06-02 58682 73 389 0
2022-06-01 58609 62 389 0
2022-05-31 58547 152 389 0
2022-05-30 58395 28 389 0
2022-05-29 58367 1 389 0
2022-05-28 58366 45 389 0
2022-05-27 58321 20 389 0
2022-05-26 58301 23 389 0
2022-05-25 58278 24 389 0
2022-05-24 58254 91 389 0
2022-05-23 58163 20 389 0
2022-05-22 58143 8 389 0
2022-05-21 58135 32 389 0
2022-05-20 58103 61 389 0
2022-05-19 58042 36 389 0
2022-05-18 58006 110 389 0
2022-05-17 57896 77 389 0
2022-05-16 57819 55 389 0
2022-05-15 57764 5 389 0
2022-05-14 57759 56 389 1
2022-05-13 57703 77 388 1
2022-05-12 57626 112 387 1
2022-05-11 57514 71 386 1
2022-05-10 57443 211 385 0
2022-05-09 57232 111 385 0
2022-05-08 57121 8 385 0
2022-05-07 57113 34 385 0
2022-05-06 57079 83 385 1
2022-05-05 56996 118 384 0
2022-05-04 56878 95 384 0
2022-05-03 56783 209 384 0
2022-05-02 56574 104 384 0
2022-05-01 56470 14 384 0
2022-04-30 56456 69 384 0
2022-04-29 56387 110 384 0
2022-04-28 56277 107 384 0
2022-04-27 56170 133 384 0
2022-04-26 56037 277 384 1
2022-04-25 55760 146 383 0
2022-04-24 55614 8 383 0
2022-04-23 55606 108 383 0
2022-04-22 55498 163 383 0
2022-04-21 55335 201 383 0
2022-04-20 55134 437 383 0
2022-04-19 54697 52 383 0
2022-04-18 54645 27 383 0
2022-04-17 54618 19 383 0
2022-04-16 54599 41 383 0
2022-04-15 54558 110 383 0
2022-04-14 54448 193 383 0
2022-04-13 54255 149 383 0
2022-04-12 54106 251 383 1
2022-04-11 53855 115 382 0
2022-04-10 53740 31 382 0
2022-04-09 53709 137 382 1
2022-04-08 53572 197 381 0
2022-04-07 53375 159 381 0
2022-04-06 53216 200 381 1
2022-04-05 53016 313 380 0
2022-04-04 52703 150 380 1
2022-04-03 52553 46 379 0
2022-04-02 52507 113 379 0
2022-04-01 52394 234 379 0
2022-03-31 52160 216 379 1
2022-03-30 51944 294 378 0
2022-03-29 51650 583 378 0
2022-03-28 51067 169 378 0
2022-03-27 50898 57 378 0
2022-03-26 50841 237 378 0
2022-03-25 50604 307 378 1
2022-03-24 50297 369 377 0
2022-03-23 49928 423 377 0
2022-03-22 49505 705 377 0
2022-03-21 48800 718 377 2
2022-03-20 48082 14 375 0
2022-03-19 48068 53 375 1
2022-03-18 48015 299 374 1
2022-03-17 47716 462 373 0
2022-03-16 47254 599 373 0
2022-03-15 46655 667 373 0
2022-03-14 45988 329 373 1
2022-03-13 45659 120 372 1
2022-03-12 45539 270 371 0
2022-03-11 45269 548 371 0
2022-03-10 44721 439 371 0
2022-03-09 44282 531 371 0
2022-03-08 43751 813 371 0
2022-03-07 42938 191 371 0
2022-03-06 42747 92 371 0
2022-03-05 42655 232 371 0
2022-03-04 42423 474 371 0
2022-03-03 41949 479 371 0
2022-03-02 41470 653 371 0
2022-03-01 40817 659 371 0
2022-02-28 40158 281 371 0
2022-02-27 39877 42 371 0
2022-02-26 39835 296 371 0
2022-02-25 39539 476 371 0
2022-02-24 39063 476 371 0
2022-02-23 38587 612 371 0
2022-02-22 37975 796 371 1
2022-02-21 37179 280 370 0
2022-02-20 36899 99 370 0
2022-02-19 36800 282 370 0
2022-02-18 36518 522 370 0
2022-02-17 35996 562 370 0
2022-02-16 35434 659 370 1
2022-02-15 34775 876 369 1
2022-02-14 33899 278 368 1
2022-02-13 33621 115 367 0
2022-02-12 33506 435 367 0
2022-02-11 33071 622 367 1
2022-02-10 32449 685 366 1
2022-02-09 31764 870 365 2
2022-02-08 30894 1101 363 1
2022-02-07 29793 230 362 2
2022-02-06 29563 88 360 1
2022-02-05 29475 696 359 0
2022-02-04 28779 640 359 0
2022-02-03 28139 693 359 0
2022-02-02 27446 827 359 1
2022-02-01 26619 861 358 0
2022-01-31 25758 339 358 0
2022-01-30 25419 187 358 0
2022-01-29 25232 847 358 1
2022-01-28 24385 746 357 0
2022-01-27 23639 829 357 0
2022-01-26 22810 921 357 0
2022-01-25 21889 870 357 0
2022-01-24 21019 334 357 0
2022-01-23 20685 66 357 0
2022-01-22 20619 501 357 0
2022-01-21 20118 510 357 0
2022-01-20 19608 489 357 0
2022-01-19 19119 642 357 1
2022-01-18 18477 472 356 0
2022-01-17 18005 243 356 0
2022-01-16 17762 55 356 0
2022-01-15 17707 269 356 1
2022-01-14 17438 251 355 3
2022-01-13 17187 203 352 0
2022-01-12 16984 251 352 0
2022-01-11 16733 247 352 1
2022-01-10 16486 118 351 2
2022-01-09 16368 33 349 1
2022-01-08 16335 87 348 0
2022-01-07 16248 125 348 0
2022-01-06 16123 137 348 1
2022-01-05 15986 193 347 1
2022-01-04 15793 247 346 0
2022-01-03 15546 102 346 0
2022-01-02 15444 19 346 0
2022-01-01 15425 23 346 0
2021-12-31 15402 85 346 0
2021-12-30 15317 129 346 4
2021-12-29 15188 171 342 1
2021-12-28 15017 224 341 1
2021-12-27 14793 50 340 1
2021-12-26 14743 8 339 0
2021-12-25 14735 34 339 0
2021-12-24 14701 63 339 0
2021-12-23 14638 106 339 0
2021-12-22 14532 135 339 2
2021-12-21 14397 203 337 1
2021-12-20 14194 95 336 1
2021-12-19 14099 22 335 0
2021-12-18 14077 178 335 2
2021-12-17 13899 159 333 4
2021-12-16 13740 183 329 0
2021-12-15 13557 253 329 4
2021-12-14 13304 243 325 1
2021-12-13 13061 45 324 3
2021-12-12 13016 27 321 1
2021-12-11 12989 130 320 2
2021-12-10 12859 173 318 1
2021-12-09 12686 150 317 1
2021-12-08 12536 212 316 2
2021-12-07 12324 238 314 0
2021-12-06 12086 121 314 1
2021-12-05 11965 19 313 0
2021-12-04 11946 114 313 1
2021-12-03 11832 183 312 1
2021-12-02 11649 130 311 4
2021-12-01 11519 189 307 1
2021-11-30 11330 224 306 0
2021-11-29 11106 67 306 1
2021-11-28 11039 23 305 0
2021-11-27 11016 151 305 1
2021-11-26 10865 147 304 2
2021-11-25 10718 150 302 2
2021-11-24 10568 206 300 1
2021-11-23 10362 240 299 1
2021-11-22 10122 90 298 0
2021-11-21 10032 24 298 0
2021-11-20 10008 122 298 3
2021-11-19 9886 154 295 0
2021-11-18 9732 163 295 0
2021-11-17 9569 106 295 0
2021-11-16 9463 209 295 1
2021-11-15 9254 56 294 0
2021-11-14 9198 10 294 0
2021-11-13 9188 103 294 0
2021-11-12 9085 98 294 0
2021-11-11 8987 101 294 0
2021-11-10 8886 110 294 0
2021-11-09 8776 146 294 1
2021-11-08 8630 59 293 1
2021-11-07 8571 9 292 0
2021-11-06 8562 55 292 1
2021-11-05 8507 98 291 0
2021-11-04 8409 58 291 0
2021-11-03 8351 82 291 1
2021-11-02 8269 101 290 1
2021-11-01 8168 53 289 1
2021-10-31 8115 5 288 1
2021-10-30 8110 40 287 2
2021-10-29 8070 63 285 1
2021-10-28 8007 34 284 0
2021-10-27 7973 67 284 1
2021-10-26 7906 43 283 1
2021-10-25 7863 62 282 1
2021-10-24 7801 3 281 0
2021-10-23 7798 19 281 0
2021-10-22 7779 18 281 1
2021-10-21 7761 28 280 1
2021-10-20 7733 17 279 1
2021-10-19 7716 52 278 2
2021-10-18 7664 31 276 0
2021-10-16 7633 18 276 0
2021-10-15 7615 22 276 0
2021-10-14 7593 26 276 0
2021-10-13 7567 28 276 0
2021-10-12 7539 23 276 0
2021-10-11 7516 9 276 0
2021-10-10 7507 6 276 0
2021-10-09 7501 2 276 0
2021-10-08 7499 33 276 0
2021-10-07 7466 22 276 0
2021-10-06 7444 22 276 0
2021-10-05 7422 24 276 1
2021-10-04 7398 4 275 0
2021-10-02 7394 7 275 0
2021-10-01 7387 11 275 0
2021-09-30 7376 13 275 0
2021-09-29 7363 4 275 0
2021-09-28 7359 17 275 0
2021-09-27 7342 9 275 0
2021-09-26 7333 3 275 0
2021-09-25 7330 5 275 0
2021-09-24 7325 10 275 0
2021-09-23 7315 1 275 0
2021-09-22 7314 14 275 0
2021-09-21 7300 23 275 0
2021-09-20 7277 15 275 1
2021-09-19 7262 2 274 0
2021-09-18 7260 13 274 0
2021-09-17 7247 8 274 0
2021-09-16 7239 3 274 0
2021-09-15 7236 7 274 0
2021-09-14 7229 12 274 0
2021-09-13 7217 11 274 0
2021-09-12 7206 2 274 0
2021-09-11 7204 4 274 0
2021-09-10 7200 4 274 0
2021-09-09 7196 12 274 0
2021-09-08 7184 10 274 1
2021-09-07 7174 14 273 0
2021-09-06 7160 8 273 0
2021-09-05 7152 4 273 0
2021-09-04 7148 8 273 0
2021-09-03 7140 5 273 0
2021-09-02 7135 9 273 0
2021-09-01 7126 4 273 0
2021-08-31 7122 4 273 0
2021-08-30 7118 4 273 0
2021-08-29 7114 1 273 0
2021-08-28 7113 1 273 0
2021-08-27 7112 3 273 0
2021-08-26 7109 3 273 0
2021-08-25 7106 4 273 0
2021-08-24 7102 8 273 0
2021-08-23 7094 1 273 0
2021-08-21 7093 8 273 0
2021-08-20 7085 9 273 0
2021-08-19 7076 5 273 0
2021-08-18 7071 12 273 0
2021-08-17 7059 3 273 0
2021-08-16 7056 2 273 0
2021-08-15 7054 2 273 0
2021-08-14 7052 3 273 0
2021-08-13 7049 8 273 0
2021-08-12 7041 4 273 0
2021-08-10 7037 7 273 0
2021-08-09 7030 4 273 0
2021-08-07 7026 9 273 0
2021-08-06 7017 4 273 0
2021-08-05 7013 4 273 0
2021-08-04 7009 1 273 0
2021-08-03 7008 7 273 0
2021-08-02 7001 2 273 0
2021-08-01 6999 2 273 0
2021-07-31 6997 2 273 0
2021-07-30 6995 4 273 0
2021-07-29 6991 3 273 0
2021-07-28 6988 3 273 0
2021-07-26 6985 3 273 0
2021-07-25 6982 1 273 0
2021-07-24 6981 2 273 0
2021-07-23 6979 6 273 0
2021-07-22 6973 1 273 0
2021-07-21 6972 1 273 0
2021-07-19 6971 2 273 0
2021-07-17 6969 2 273 0
2021-07-16 6967 2 273 0
2021-07-15 6965 2 273 0
2021-07-14 6963 3 273 0
2021-07-13 6960 1 273 0
2021-07-11 6959 1 273 0
2021-07-10 6958 1 273 0
2021-07-08 6957 2 273 0
2021-07-07 6955 1 273 0
2021-07-02 6954 2 273 0
2021-06-25 6952 2 273 0
2021-06-23 6950 1 273 0
2021-06-22 6949 1 273 0
2021-06-18 6948 2 273 0
2021-06-15 6946 2 273 0
2021-06-12 6944 1 273 0
2021-06-10 6943 1 273 0
2021-06-09 6942 1 273 0
2021-06-08 6941 2 273 0
2021-06-05 6939 2 273 0
2021-06-04 6937 3 273 0
2021-06-03 6934 1 273 0
2021-06-02 6933 9 273 0
2021-06-01 6924 2 273 0
2021-05-31 6922 1 273 0
2021-05-30 6921 1 273 0
2021-05-28 6920 1 273 0
2021-05-27 6919 14 273 1
2021-05-26 6905 7 272 0
2021-05-25 6898 7 272 0
2021-05-24 6891 2 272 0
2021-05-23 6889 2 272 0
2021-05-22 6887 7 272 0
2021-05-21 6880 2 272 0
2021-05-20 6878 13 272 0
2021-05-19 6865 17 272 0
2021-05-18 6848 19 272 0
2021-05-17 6829 6 272 0
2021-05-16 6823 2 272 0
2021-05-15 6821 6 272 0
2021-05-14 6815 5 272 0
2021-05-13 6810 28 272 1
2021-05-12 6782 24 271 0
2021-05-11 6758 27 271 2
2021-05-10 6731 11 269 1
2021-05-09 6720 7 268 0
2021-05-08 6713 10 268 1
2021-05-07 6703 28 267 0
2021-05-06 6675 18 267 0
2021-05-05 6657 25 267 0
2021-05-04 6632 25 267 0
2021-05-03 6607 5 267 0
2021-05-02 6602 22 267 1
2021-05-01 6580 5 266 0
2021-04-30 6575 20 266 0
2021-04-29 6555 27 266 1
2021-04-28 6528 31 265 0
2021-04-27 6497 42 265 0
2021-04-26 6455 7 265 1
2021-04-25 6448 21 264 0
2021-04-24 6427 27 264 0
2021-04-23 6400 33 264 1
2021-04-22 6367 31 263 2
2021-04-21 6336 80 261 1
2021-04-20 6256 42 260 0
2021-04-19 6214 16 260 0
2021-04-18 6198 36 260 1
2021-04-17 6162 33 259 2
2021-04-16 6129 27 257 1
2021-04-15 6102 76 256 2
2021-04-14 6026 66 254 1
2021-04-13 5960 34 253 1
2021-04-12 5926 17 252 0
2021-04-11 5909 29 252 0
2021-04-10 5880 23 252 0
2021-04-09 5857 65 252 1
2021-04-08 5792 53 251 0
2021-04-07 5739 28 251 2
2021-04-06 5711 5 249 1
2021-04-05 5706 7 248 0
2021-04-04 5699 25 248 1
2021-04-03 5674 16 247 0
2021-04-02 5658 33 247 0
2021-04-01 5625 48 247 0
2021-03-31 5577 64 247 3
2021-03-30 5513 32 244 1
2021-03-29 5481 34 243 0
2021-03-28 5447 29 243 0
2021-03-27 5418 29 243 0
2021-03-26 5389 49 243 1
2021-03-25 5340 47 242 3
2021-03-24 5293 47 239 0
2021-03-23 5246 30 239 1
2021-03-22 5216 23 238 1
2021-03-21 5193 22 237 1
2021-03-20 5171 26 236 1
2021-03-19 5145 31 235 0
2021-03-18 5114 44 235 1
2021-03-17 5070 33 234 3
2021-03-16 5037 45 231 2
2021-03-15 4992 11 229 0
2021-03-14 4981 9 229 0
2021-03-13 4972 28 229 1
2021-03-12 4944 26 228 0
2021-03-11 4918 31 228 1
2021-03-10 4887 34 227 0
2021-03-09 4853 12 227 1
2021-03-08 4841 1 226 0
2021-03-07 4840 6 226 0
2021-03-06 4834 12 226 0
2021-03-05 4822 13 226 0
2021-03-04 4809 22 226 0
2021-03-03 4787 14 226 0
2021-03-02 4773 16 226 0
2021-03-01 4757 5 226 0
2021-02-28 4752 3 226 0
2021-02-27 4749 14 226 0
2021-02-26 4735 15 226 0
2021-02-25 4720 16 226 2
2021-02-24 4704 15 224 0
2021-02-23 4689 7 224 0
2021-02-22 4682 2 224 0
2021-02-21 4680 8 224 0
2021-02-20 4672 11 224 0
2021-02-19 4661 7 224 0
2021-02-18 4654 14 224 0
2021-02-17 4640 19 224 0
2021-02-16 4621 16 224 1
2021-02-15 4605 3 223 0
2021-02-14 4602 11 223 1
2021-02-13 4591 4 222 1
2021-02-12 4587 21 221 0
2021-02-11 4566 24 221 2
2021-02-10 4542 26 219 2
2021-02-09 4516 22 217 2
2021-02-08 4494 7 215 0
2021-02-07 4487 10 215 1
2021-02-06 4477 21 214 3
2021-02-05 4456 27 211 0
2021-02-04 4429 18 211 2
2021-02-03 4411 23 209 0
2021-02-02 4388 15 209 0
2021-02-01 4373 9 209 0
2021-01-31 4364 10 209 0
2021-01-30 4354 20 209 0
2021-01-29 4334 23 209 2
2021-01-28 4311 30 207 4
2021-01-27 4281 33 203 1
2021-01-26 4248 35 202 3
2021-01-25 4213 11 199 1
2021-01-24 4202 6 198 1
2021-01-23 4196 18 197 0
2021-01-22 4178 24 197 1
2021-01-21 4154 27 196 1
2021-01-20 4127 36 195 1
2021-01-19 4091 40 194 1
2021-01-18 4051 8 193 0
2021-01-17 4043 22 193 0
2021-01-16 4021 14 193 0
2021-01-15 4007 46 193 2
2021-01-14 3961 40 191 0
2021-01-13 3921 50 191 2
2021-01-12 3871 45 189 4
2021-01-11 3826 13 185 0
2021-01-10 3813 14 185 0
2021-01-09 3799 34 185 2
2021-01-08 3765 56 183 1
2021-01-07 3709 95 182 3
2021-01-06 3614 102 179 3
2021-01-05 3512 72 176 4
2021-01-04 3440 24 172 1
2021-01-03 3416 13 171 1
2021-01-02 3403 7 170 1
2021-01-01 3396 45 169 2
2020-12-31 3351 97 167 4
2020-12-30 3254 82 163 2
2020-12-29 3172 63 161 8
2020-12-28 3109 53 153 1
2020-12-27 3056 12 152 1
2020-12-26 3044 20 151 1
2020-12-25 3024 43 150 2
2020-12-24 2981 32 148 0
2020-12-23 2949 99 148 8
2020-12-22 2850 117 140 4
2020-12-21 2733 58 136 4
2020-12-20 2675 72 132 2
2020-12-19 2603 79 130 7
2020-12-18 2524 96 123 3
2020-12-17 2428 81 120 7
2020-12-16 2347 75 113 3
2020-12-15 2272 71 110 5
2020-12-14 2201 46 105 2
2020-12-13 2155 25 103 2
2020-12-12 2130 56 101 4
2020-12-11 2074 132 97 11
2020-12-10 1942 46 86 7
2020-12-09 1896 55 79 6
2020-12-08 1841 77 73 3
2020-12-07 1764 62 70 5
2020-12-06 1702 7 65 1
2020-12-05 1695 32 64 1
2020-12-04 1663 59 63 6
2020-12-03 1604 72 57 2
2020-12-02 1532 47 55 1
2020-12-01 1485 44 54 2
2020-11-30 1441 31 52 4
2020-11-29 1410 3 48 0
2020-11-28 1407 42 48 1
2020-11-27 1365 50 47 0
2020-11-26 1315 36 47 1
2020-11-25 1279 39 46 2
2020-11-24 1240 29 44 1
2020-11-23 1211 36 43 3
2020-11-22 1175 12 40 1
2020-11-21 1163 56 39 1
2020-11-20 1107 38 38 1
2020-11-19 1069 28 37 3
2020-11-18 1041 58 34 3
2020-11-17 983 41 31 2
2020-11-16 942 12 29 1
2020-11-15 930 12 28 0
2020-11-14 918 35 28 5
2020-11-13 883 54 23 4
2020-11-12 829 34 19 1
2020-11-11 795 28 18 2
2020-11-10 767 26 16 0
2020-11-09 741 16 16 0
2020-11-08 725 2 16 0
2020-11-07 723 14 16 0
2020-11-06 709 29 16 1
2020-11-05 680 23 15 1
2020-11-04 657 10 14 1
2020-11-03 647 24 13 1
2020-11-02 623 15 12 0
2020-11-01 608 14 12 0
2020-10-31 594 27 12 2
2020-10-30 567 35 10 0
2020-10-29 532 25 10 1
2020-10-28 507 19 9 0
2020-10-27 488 11 9 0
2020-10-26 477 16 9 0
2020-10-25 461 2 9 0
2020-10-24 459 2 9 0
2020-10-23 457 13 9 0
2020-10-22 444 16 9 0
2020-10-21 428 14 9 0
2020-10-20 414 12 9 0
2020-10-19 402 6 9 0
2020-10-18 396 4 9 0
2020-10-17 392 9 9 0
2020-10-16 383 12 9 0
2020-10-15 371 6 9 0
2020-10-14 365 8 9 1
2020-10-13 357 5 8 1
2020-10-12 352 8 7 0
2020-10-10 344 1 7 1
2020-10-09 343 9 6 0
2020-10-08 334 4 6 0
2020-10-07 330 5 6 0
2020-10-06 325 7 6 0
2020-10-05 318 2 6 0
2020-10-03 316 3 6 0
2020-10-02 313 5 6 0
2020-10-01 308 5 6 1
2020-09-30 303 2 5 0
2020-09-29 301 4 5 0
2020-09-26 297 1 5 0
2020-09-25 296 5 5 1
2020-09-24 291 2 4 0
2020-09-21 289 1 4 0
2020-09-19 288 1 4 0
2020-09-18 287 3 4 0
2020-09-17 284 1 4 0
2020-09-16 283 5 4 0
2020-09-15 278 1 4 0
2020-09-11 277 1 4 0
2020-09-10 276 12 4 0
2020-09-08 264 2 4 0
2020-09-07 262 1 4 0
2020-09-04 261 4 4 0
2020-09-03 257 3 4 0
2020-09-02 254 1 4 0
2020-09-01 253 1 4 0
2020-08-31 252 1 4 0
2020-08-27 251 1 4 0
2020-08-24 250 1 4 0
2020-08-22 249 2 4 0
2020-08-19 247 1 4 0
2020-08-18 246 1 4 0
2020-08-17 245 2 4 0
2020-08-12 243 1 4 0
2020-08-11 242 1 4 0
2020-08-10 241 2 4 0
2020-07-31 239 2 4 0
2020-07-30 237 1 4 0
2020-07-28 236 1 4 0
2020-07-21 235 1 4 0
2020-07-17 234 1 4 0
2020-07-15 233 1 4 0
2020-07-03 232 1 4 0
2020-07-02 231 1 4 0
2020-06-26 230 1 4 0
2020-06-24 229 2 4 0
2020-06-20 227 1 4 0
2020-06-19 226 3 4 0
2020-06-18 223 1 4 0
2020-06-12 222 1 4 0
2020-06-09 221 3 4 0
2020-05-22 218 2 4 0
2020-05-20 216 1 4 0
2020-05-19 215 1 4 0
2020-05-14 214 1 4 0
2020-05-05 213 1 4 0
2020-05-04 212 2 4 0
2020-05-03 210 1 4 0
2020-05-01 209 4 4 0
2020-04-30 205 7 4 0
2020-04-29 198 1 4 0
2020-04-28 197 4 4 0
2020-04-27 193 5 4 0
2020-04-24 188 6 4 0
2020-04-23 182 2 4 0
2020-04-22 180 2 4 0
2020-04-21 178 2 4 0
2020-04-20 176 3 4 0
2020-04-19 173 1 4 0
2020-04-18 172 1 4 0
2020-04-17 171 5 4 0
2020-04-16 166 5 4 0
2020-04-15 161 2 4 0
2020-04-14 159 2 4 0
2020-04-13 157 2 4 0
2020-04-12 155 2 4 0
2020-04-11 153 4 4 1
2020-04-10 149 5 3 0
2020-04-09 144 10 3 1
2020-04-08 134 5 2 1
2020-04-07 129 4 1 0
2020-04-06 125 2 1 0
2020-04-05 123 3 1 0
2020-04-04 120 1 1 0
2020-04-03 119 9 1 0
2020-04-02 110 4 1 0
2020-04-01 106 1 1 0
2020-03-31 105 9 1 0
2020-03-30 96 7 1 0
2020-03-29 89 3 1 0
2020-03-28 86 5 1 0
2020-03-27 81 5 1 0
2020-03-26 76 2 1 0
2020-03-25 74 9 1 1
2020-03-24 65 2 0 0
2020-03-23 63 4 0 0
2020-03-21 59 2 0 0
2020-03-20 57 7 0 0
2020-03-19 50 3 0 0
2020-03-18 47 10 0 0
2020-03-17 37 14 0 0
2020-03-16 23 2 0 0
2020-03-15 21 3 0 0
2020-03-14 18 3 0 0
2020-03-13 15 5 0 0
2020-03-12 10 5 0 0
2020-03-11 5 1 0 0
2020-03-10 4 3 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:02:46.982128