Germany: LK Paderborn (Nordrhein-Westfalen)¶

  • 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 14:01:03 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Germany", subregion="LK Paderborn", weeks=5);
2023-03-07T14:01:17.143634 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 100 100 150 150 200 200 7-day incidence rate (per 100K people) 86.3 LK Paderborn, Germany, last 5 weeks, last data point from 2023-03-06 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0 20 40 60 daily change normalised per 100K 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0.0 0.1 0.2 0.3 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 1.4 1.4 R & growth factor (based on cases) Germany-LK Paderborn cases daily growth factor Germany-LK Paderborn cases daily growth factor (rolling mean) Germany-LK Paderborn estimated R (using cases) 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0.0 0.0 0.5 0.5 1.0 1.0 1.5 1.5 2.0 2.0 R & growth factor (based on deaths) Germany-LK Paderborn deaths daily growth factor Germany-LK Paderborn deaths daily growth factor (rolling mean) Germany-LK Paderborn estimated R (using deaths) 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0 1000 2000 3000 4000 cases doubling time [days] Germany-LK Paderborn doubling time cases (rolling mean) 0.0 61.9 123.8 185.6 daily change Germany-LK Paderborn new cases (rolling 7d mean) Germany-LK Paderborn new cases 0.000 0.309 0.619 0.928 daily change Germany-LK Paderborn new deaths (rolling 7d mean) Germany-LK Paderborn new deaths 0.000 0.212 0.423 0.635 0.847
In [4]:
overview(country="Germany", subregion="LK Paderborn");
2023-03-07T14:01:34.998800 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 500 500 1000 1000 1500 1500 7-day incidence rate (per 100K people) 86.3 LK Paderborn, 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.0 0.5 1.0 1.5 daily change normalised per 100K 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 1.4 1.4 R & growth factor (based on cases) Germany-LK Paderborn cases daily growth factor Germany-LK Paderborn cases daily growth factor (rolling mean) Germany-LK Paderborn estimated R (using cases) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0.0 0.0 0.5 0.5 1.0 1.0 1.5 1.5 2.0 2.0 R & growth factor (based on deaths) Germany-LK Paderborn deaths daily growth factor Germany-LK Paderborn deaths daily growth factor (rolling mean) Germany-LK Paderborn estimated R (using deaths) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 2000 4000 cases doubling time [days] Germany-LK Paderborn doubling time cases (rolling mean) Germany-LK Paderborn doubling time deaths (rolling mean) 0 619 1238 daily change Germany-LK Paderborn new cases (rolling 7d mean) Germany-LK Paderborn new cases 0.000 1.547 3.094 4.641 daily change Germany-LK Paderborn new deaths (rolling 7d mean) Germany-LK Paderborn new deaths 0.0 50.0 100.1 deaths doubling time [days]
In [5]:
compare_plot(country="Germany", subregion="LK Paderborn", dates="2020-03-15:");
2023-03-07T14:04:32.116409 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 Paderborn LK Paderborn 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 Paderborn Bayern Berlin Bremen Hamburg Hessen Nordrhein-Westfalen Sachsen-Anhalt
In [6]:
# load the data
cases, deaths = germany_get_region(landkreis="LK Paderborn")

# get population of the region for future normalisation:
inhabitants = population(country="Germany", subregion="LK Paderborn")
print(f'Population of country="Germany", subregion="LK Paderborn": {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 Paderborn": 309380 people
Out[6]:
total cases daily new cases total deaths daily new deaths
date
2023-03-06 122573 37 258 0
2023-03-03 122536 4 258 0
2023-03-02 122532 52 258 0
2023-03-01 122480 77 258 0
2023-02-28 122403 97 258 0
2023-02-27 122306 133 258 0
2023-02-24 122173 67 258 0
2023-02-23 122106 114 258 1
2023-02-22 121992 82 257 0
2023-02-21 121910 208 257 1
2023-02-17 121702 52 256 0
2023-02-16 121650 72 256 1
2023-02-15 121578 69 255 0
2023-02-14 121509 98 255 0
2023-02-13 121411 68 255 0
2023-02-10 121343 26 255 0
2023-02-09 121317 43 255 1
2023-02-08 121274 57 254 0
2023-02-07 121217 64 254 0
2023-02-06 121153 50 254 0
2023-02-03 121103 26 254 0
2023-02-02 121077 32 254 0
2023-02-01 121045 38 254 0
2023-01-31 121007 47 254 0
2023-01-30 120960 42 254 0
2023-01-27 120918 22 254 0
2023-01-26 120896 52 254 0
2023-01-25 120844 32 254 0
2023-01-24 120812 49 254 0
2023-01-23 120763 42 254 0
2023-01-20 120721 21 254 0
2023-01-19 120700 24 254 0
2023-01-18 120676 30 254 0
2023-01-17 120646 43 254 0
2023-01-16 120603 33 254 1
2023-01-13 120570 21 253 0
2023-01-12 120549 72 253 0
2023-01-11 120477 24 253 0
2023-01-10 120453 54 253 0
2023-01-09 120399 93 253 0
2023-01-06 120306 71 253 1
2023-01-05 120235 93 252 1
2023-01-04 120142 80 251 0
2023-01-03 120062 98 251 0
2023-01-02 119964 113 251 0
2022-12-30 119851 56 251 0
2022-12-29 119795 126 251 2
2022-12-28 119669 135 249 0
2022-12-27 119534 216 249 0
2022-12-23 119318 102 249 0
2022-12-22 119216 240 249 0
2022-12-21 118976 161 249 2
2022-12-20 118815 145 247 1
2022-12-19 118670 139 246 0
2022-12-17 118531 64 246 0
2022-12-16 118467 121 246 0
2022-12-15 118346 93 246 0
2022-12-14 118253 128 246 1
2022-12-13 118125 171 245 0
2022-12-12 117954 149 245 0
2022-12-10 117805 50 245 0
2022-12-09 117755 50 245 1
2022-12-08 117705 178 244 1
2022-12-07 117527 130 243 0
2022-12-06 117397 144 243 1
2022-12-05 117253 115 242 0
2022-12-03 117138 59 242 0
2022-12-02 117079 148 242 0
2022-12-01 116931 69 242 0
2022-11-30 116862 184 242 0
2022-11-29 116678 131 242 0
2022-11-28 116547 97 242 1
2022-11-26 116450 123 241 0
2022-11-25 116327 87 241 0
2022-11-24 116240 105 241 0
2022-11-23 116135 207 241 0
2022-11-22 115928 149 241 0
2022-11-21 115779 187 241 2
2022-11-18 115592 86 239 0
2022-11-17 115506 112 239 0
2022-11-16 115394 118 239 0
2022-11-15 115276 150 239 0
2022-11-14 115126 124 239 0
2022-11-12 115002 68 239 0
2022-11-11 114934 170 239 1
2022-11-10 114764 107 238 0
2022-11-09 114657 254 238 0
2022-11-08 114403 184 238 1
2022-11-07 114219 171 237 0
2022-11-05 114048 139 237 0
2022-11-04 113909 242 237 1
2022-11-03 113667 284 236 0
2022-11-02 113383 331 236 0
2022-10-31 113052 356 236 0
2022-10-29 112696 128 236 0
2022-10-28 112568 195 236 0
2022-10-27 112373 400 236 0
2022-10-26 111973 305 236 1
2022-10-25 111668 319 235 0
2022-10-24 111349 269 235 1
2022-10-22 111080 197 234 0
2022-10-21 110883 327 234 0
2022-10-20 110556 206 234 0
2022-10-19 110350 459 234 2
2022-10-18 109891 358 232 0
2022-10-17 109533 336 232 0
2022-10-15 109197 71 232 0
2022-10-14 109126 362 232 0
2022-10-13 108764 526 232 0
2022-10-12 108238 170 232 0
2022-10-11 108068 426 232 0
2022-10-10 107642 136 232 0
2022-10-08 107506 211 232 0
2022-10-07 107295 374 232 0
2022-10-06 106921 281 232 0
2022-10-05 106640 468 232 0
2022-10-04 106172 141 232 0
2022-10-01 106031 114 232 0
2022-09-30 105917 168 232 0
2022-09-29 105749 85 232 0
2022-09-28 105664 293 232 0
2022-09-27 105371 162 232 0
2022-09-26 105209 203 232 0
2022-09-23 105006 125 232 0
2022-09-22 104881 82 232 0
2022-09-21 104799 83 232 0
2022-09-20 104716 120 232 0
2022-09-19 104596 125 232 0
2022-09-17 104471 26 232 0
2022-09-16 104445 40 232 0
2022-09-15 104405 144 232 0
2022-09-14 104261 126 232 0
2022-09-13 104135 96 232 0
2022-09-12 104039 100 232 0
2022-09-10 103939 73 232 0
2022-09-09 103866 47 232 0
2022-09-08 103819 157 232 0
2022-09-07 103662 106 232 0
2022-09-06 103556 161 232 0
2022-09-05 103395 55 232 0
2022-09-03 103340 63 232 0
2022-09-02 103277 121 232 0
2022-09-01 103156 85 232 0
2022-08-31 103071 234 232 1
2022-08-30 102837 130 231 0
2022-08-29 102707 196 231 1
2022-08-27 102511 89 230 0
2022-08-26 102422 110 230 0
2022-08-25 102312 200 230 0
2022-08-24 102112 154 230 0
2022-08-23 101958 191 230 0
2022-08-22 101767 196 230 0
2022-08-20 101571 114 230 0
2022-08-19 101457 242 230 0
2022-08-18 101215 162 230 0
2022-08-17 101053 372 230 0
2022-08-16 100681 236 230 0
2022-08-15 100445 336 230 1
2022-08-13 100109 48 229 0
2022-08-12 100061 288 229 0
2022-08-11 99773 212 229 0
2022-08-10 99561 519 229 0
2022-08-09 99042 235 229 0
2022-08-08 98807 347 229 0
2022-08-06 98460 152 229 0
2022-08-05 98308 275 229 0
2022-08-04 98033 490 229 0
2022-08-03 97543 323 229 0
2022-08-02 97220 289 229 1
2022-08-01 96931 207 228 1
2022-07-30 96724 188 227 0
2022-07-29 96536 118 227 1
2022-07-28 96418 213 226 1
2022-07-27 96205 418 225 0
2022-07-26 95787 278 225 0
2022-07-25 95509 318 225 0
2022-07-23 95191 126 225 0
2022-07-22 95065 223 225 0
2022-07-21 94842 460 225 0
2022-07-20 94382 271 225 0
2022-07-19 94111 381 225 0
2022-07-18 93730 365 225 1
2022-07-16 93365 129 224 0
2022-07-15 93236 370 224 0
2022-07-14 92866 219 224 0
2022-07-13 92647 504 224 1
2022-07-12 92143 273 223 0
2022-07-11 91870 371 223 0
2022-07-09 91499 120 223 0
2022-07-08 91379 147 223 0
2022-07-07 91232 432 223 0
2022-07-06 90800 349 223 0
2022-07-05 90451 515 223 0
2022-07-04 89936 400 223 0
2022-07-02 89536 163 223 0
2022-07-01 89373 386 223 0
2022-06-30 88987 384 223 0
2022-06-29 88603 402 223 0
2022-06-28 88201 632 223 0
2022-06-27 87569 551 223 0
2022-06-26 87018 1 223 0
2022-06-25 87017 163 223 0
2022-06-24 86854 329 223 0
2022-06-23 86525 629 223 1
2022-06-22 85896 881 222 0
2022-06-21 85015 462 222 2
2022-06-20 84553 357 220 0
2022-06-18 84196 354 220 0
2022-06-17 83842 367 220 0
2022-06-15 83475 396 220 0
2022-06-14 83079 607 220 0
2022-06-13 82472 474 220 1
2022-06-10 81998 276 219 0
2022-06-09 81722 504 219 0
2022-06-08 81218 280 219 0
2022-06-07 80938 171 219 0
2022-06-04 80767 126 219 0
2022-06-03 80641 207 219 0
2022-06-02 80434 136 219 0
2022-06-01 80298 111 219 0
2022-05-31 80187 117 219 0
2022-05-30 80070 154 219 0
2022-05-28 79916 50 219 0
2022-05-27 79866 138 219 0
2022-05-25 79728 169 219 0
2022-05-24 79559 120 219 0
2022-05-23 79439 91 219 0
2022-05-21 79348 95 219 0
2022-05-20 79253 264 219 0
2022-05-19 78989 125 219 0
2022-05-18 78864 129 219 0
2022-05-17 78735 164 219 0
2022-05-16 78571 355 219 0
2022-05-14 78216 91 219 0
2022-05-13 78125 334 219 0
2022-05-12 77791 153 219 0
2022-05-11 77638 227 219 0
2022-05-10 77411 283 219 0
2022-05-09 77128 453 219 0
2022-05-07 76675 145 219 0
2022-05-06 76530 311 219 0
2022-05-05 76219 282 219 0
2022-05-04 75937 219 219 0
2022-05-03 75718 400 219 0
2022-05-02 75318 401 219 1
2022-04-30 74917 204 218 0
2022-04-29 74713 291 218 0
2022-04-28 74422 306 218 0
2022-04-27 74116 418 218 1
2022-04-26 73698 417 217 0
2022-04-25 73281 979 217 0
2022-04-23 72302 98 217 0
2022-04-22 72204 577 217 0
2022-04-21 71627 584 217 1
2022-04-20 71043 541 216 0
2022-04-19 70502 1548 216 0
2022-04-16 68954 260 216 0
2022-04-14 68694 486 216 0
2022-04-13 68208 484 216 0
2022-04-12 67724 673 216 0
2022-04-11 67051 711 216 0
2022-04-09 66340 515 216 0
2022-04-08 65825 272 216 0
2022-04-07 65553 770 216 1
2022-04-06 64783 615 215 0
2022-04-05 64168 478 215 0
2022-04-04 63690 974 215 1
2022-04-02 62716 363 214 0
2022-04-01 62353 609 214 1
2022-03-31 61744 853 213 0
2022-03-30 60891 915 213 0
2022-03-29 59976 1253 213 0
2022-03-28 58723 1436 213 1
2022-03-26 57287 253 212 0
2022-03-25 57034 643 212 0
2022-03-24 56391 1038 212 0
2022-03-23 55353 854 212 0
2022-03-22 54499 674 212 0
2022-03-21 53825 559 212 0
2022-03-19 53266 232 212 0
2022-03-18 53034 554 212 1
2022-03-17 52480 765 211 0
2022-03-16 51715 379 211 0
2022-03-15 51336 567 211 0
2022-03-14 50769 566 211 0
2022-03-12 50203 492 211 0
2022-03-11 49711 609 211 0
2022-03-10 49102 619 211 0
2022-03-09 48483 803 211 0
2022-03-08 47680 733 211 2
2022-03-07 46947 607 209 0
2022-03-05 46340 272 209 0
2022-03-04 46068 548 209 0
2022-03-03 45520 394 209 2
2022-03-02 45126 614 207 0
2022-03-01 44512 587 207 0
2022-02-28 43925 688 207 0
2022-02-26 43237 416 207 0
2022-02-25 42821 709 207 0
2022-02-24 42112 526 207 0
2022-02-23 41586 781 207 2
2022-02-22 40805 668 205 0
2022-02-21 40137 611 205 0
2022-02-19 39526 410 205 0
2022-02-18 39116 946 205 0
2022-02-17 38170 663 205 0
2022-02-16 37507 963 205 2
2022-02-15 36544 935 203 1
2022-02-14 35609 632 202 0
2022-02-12 34977 586 202 1
2022-02-11 34391 861 201 1
2022-02-10 33530 754 200 2
2022-02-09 32776 793 198 2
2022-02-08 31983 797 196 1
2022-02-07 31186 523 195 1
2022-02-05 30663 281 194 0
2022-02-04 30382 546 194 0
2022-02-03 29836 557 194 0
2022-02-02 29279 365 194 0
2022-02-01 28914 713 194 1
2022-01-31 28201 493 193 0
2022-01-29 27708 419 193 0
2022-01-28 27289 791 193 0
2022-01-27 26498 427 193 0
2022-01-26 26071 392 193 0
2022-01-25 25679 422 193 0
2022-01-24 25257 401 193 1
2022-01-22 24856 134 192 0
2022-01-21 24722 310 192 1
2022-01-20 24412 355 191 0
2022-01-19 24057 361 191 0
2022-01-18 23696 286 191 0
2022-01-17 23410 233 191 0
2022-01-15 23177 170 191 0
2022-01-14 23007 326 191 0
2022-01-13 22681 190 191 0
2022-01-12 22491 259 191 0
2022-01-11 22232 192 191 0
2022-01-10 22040 102 191 0
2022-01-08 21938 124 191 0
2022-01-07 21814 239 191 1
2022-01-06 21575 185 190 0
2022-01-05 21390 197 190 0
2022-01-04 21193 98 190 0
2022-01-03 21095 110 190 0
2021-12-31 20985 132 190 0
2021-12-30 20853 154 190 0
2021-12-29 20699 194 190 0
2021-12-28 20505 179 190 0
2021-12-27 20326 139 190 0
2021-12-24 20187 94 190 0
2021-12-23 20093 110 190 0
2021-12-22 19983 120 190 1
2021-12-21 19863 140 189 1
2021-12-20 19723 107 188 0
2021-12-19 19616 20 188 0
2021-12-18 19596 82 188 0
2021-12-17 19514 173 188 0
2021-12-16 19341 214 188 0
2021-12-15 19127 206 188 0
2021-12-14 18921 175 188 0
2021-12-13 18746 159 188 0
2021-12-11 18587 107 188 0
2021-12-10 18480 211 188 0
2021-12-09 18269 211 188 1
2021-12-08 18058 210 187 1
2021-12-07 17848 190 186 1
2021-12-06 17658 154 185 2
2021-12-05 17504 14 183 0
2021-12-04 17490 130 183 0
2021-12-03 17360 216 183 1
2021-12-02 17144 207 182 0
2021-12-01 16937 214 182 0
2021-11-30 16723 216 182 0
2021-11-29 16507 232 182 0
2021-11-27 16275 88 182 0
2021-11-26 16187 198 182 1
2021-11-25 15989 194 181 1
2021-11-24 15795 240 180 0
2021-11-23 15555 162 180 3
2021-11-22 15393 99 177 1
2021-11-21 15294 1 176 0
2021-11-20 15293 148 176 0
2021-11-19 15145 187 176 0
2021-11-18 14958 177 176 0
2021-11-17 14781 218 176 2
2021-11-16 14563 161 174 0
2021-11-15 14402 65 174 0
2021-11-14 14337 1 174 0
2021-11-13 14336 112 174 0
2021-11-12 14224 129 174 1
2021-11-11 14095 113 173 0
2021-11-10 13982 149 173 3
2021-11-09 13833 111 170 0
2021-11-08 13722 41 170 0
2021-11-06 13681 66 170 1
2021-11-05 13615 68 169 0
2021-11-04 13547 88 169 0
2021-11-03 13459 77 169 1
2021-11-02 13382 24 168 1
2021-10-30 13358 51 167 0
2021-10-29 13307 44 167 1
2021-10-28 13263 59 166 0
2021-10-27 13204 72 166 1
2021-10-26 13132 68 165 1
2021-10-25 13064 24 164 0
2021-10-23 13040 32 164 0
2021-10-22 13008 23 164 0
2021-10-21 12985 21 164 1
2021-10-20 12964 21 163 0
2021-10-19 12943 26 163 0
2021-10-18 12917 8 163 0
2021-10-16 12909 17 163 0
2021-10-15 12892 21 163 0
2021-10-14 12871 23 163 0
2021-10-13 12848 25 163 0
2021-10-12 12823 16 163 1
2021-10-11 12807 6 162 0
2021-10-09 12801 18 162 0
2021-10-08 12783 20 162 0
2021-10-07 12763 17 162 0
2021-10-06 12746 27 162 0
2021-10-05 12719 19 162 0
2021-10-04 12700 8 162 0
2021-10-02 12692 17 162 0
2021-10-01 12675 12 162 0
2021-09-30 12663 18 162 0
2021-09-29 12645 30 162 0
2021-09-28 12615 23 162 0
2021-09-27 12592 13 162 0
2021-09-25 12579 25 162 0
2021-09-24 12554 17 162 0
2021-09-23 12537 31 162 0
2021-09-22 12506 28 162 0
2021-09-21 12478 42 162 0
2021-09-20 12436 6 162 0
2021-09-18 12430 27 162 0
2021-09-17 12403 32 162 0
2021-09-16 12371 25 162 0
2021-09-15 12346 47 162 0
2021-09-14 12299 60 162 0
2021-09-13 12239 12 162 0
2021-09-11 12227 65 162 0
2021-09-10 12162 38 162 0
2021-09-09 12124 62 162 0
2021-09-08 12062 81 162 1
2021-09-07 11981 41 161 0
2021-09-06 11940 64 161 0
2021-09-04 11876 36 161 0
2021-09-03 11840 50 161 0
2021-09-02 11790 68 161 0
2021-09-01 11722 74 161 0
2021-08-31 11648 93 161 0
2021-08-30 11555 16 161 0
2021-08-28 11539 41 161 0
2021-08-27 11498 53 161 0
2021-08-26 11445 52 161 0
2021-08-25 11393 59 161 1
2021-08-24 11334 56 160 0
2021-08-23 11278 25 160 0
2021-08-21 11253 30 160 0
2021-08-20 11223 52 160 0
2021-08-19 11171 43 160 0
2021-08-18 11128 55 160 0
2021-08-17 11073 59 160 1
2021-08-16 11014 13 159 0
2021-08-14 11001 47 159 0
2021-08-13 10954 41 159 0
2021-08-12 10913 22 159 0
2021-08-11 10891 37 159 0
2021-08-10 10854 41 159 0
2021-08-09 10813 7 159 0
2021-08-07 10806 14 159 0
2021-08-06 10792 10 159 0
2021-08-05 10782 17 159 0
2021-08-04 10765 32 159 0
2021-08-03 10733 31 159 0
2021-08-02 10702 38 159 0
2021-07-30 10664 17 159 0
2021-07-29 10647 10 159 0
2021-07-28 10637 14 159 0
2021-07-27 10623 14 159 0
2021-07-26 10609 21 159 0
2021-07-23 10588 10 159 0
2021-07-22 10578 9 159 0
2021-07-21 10569 10 159 0
2021-07-20 10559 10 159 0
2021-07-19 10549 15 159 0
2021-07-16 10534 4 159 0
2021-07-15 10530 4 159 0
2021-07-14 10526 10 159 0
2021-07-13 10516 4 159 0
2021-07-12 10512 2 159 0
2021-07-09 10510 4 159 0
2021-07-08 10506 4 159 0
2021-07-07 10502 2 159 0
2021-07-06 10500 2 159 0
2021-07-05 10498 6 159 0
2021-07-02 10492 2 159 0
2021-07-01 10490 1 159 0
2021-06-30 10489 5 159 0
2021-06-29 10484 5 159 0
2021-06-28 10479 6 159 0
2021-06-27 10473 1 159 0
2021-06-25 10472 4 159 0
2021-06-23 10468 6 159 0
2021-06-22 10462 5 159 0
2021-06-21 10457 4 159 0
2021-06-18 10453 5 159 0
2021-06-17 10448 7 159 0
2021-06-16 10441 9 159 0
2021-06-15 10432 6 159 1
2021-06-14 10426 4 158 0
2021-06-12 10422 8 158 0
2021-06-11 10414 3 158 0
2021-06-10 10411 13 158 0
2021-06-09 10398 22 158 0
2021-06-08 10376 17 158 0
2021-06-07 10359 2 158 0
2021-06-05 10357 23 158 0
2021-06-04 10334 24 158 1
2021-06-02 10310 31 157 0
2021-06-01 10279 28 157 0
2021-05-31 10251 10 157 0
2021-05-29 10241 20 157 0
2021-05-28 10221 26 157 0
2021-05-27 10195 20 157 0
2021-05-26 10175 26 157 0
2021-05-25 10149 3 157 0
2021-05-24 10146 10 157 0
2021-05-22 10136 27 157 0
2021-05-21 10109 34 157 0
2021-05-20 10075 45 157 0
2021-05-19 10030 55 157 1
2021-05-18 9975 71 156 0
2021-05-17 9904 17 156 0
2021-05-15 9887 76 156 0
2021-05-14 9811 14 156 0
2021-05-13 9797 53 156 0
2021-05-12 9744 78 156 0
2021-05-11 9666 74 156 0
2021-05-10 9592 32 156 2
2021-05-08 9560 48 154 0
2021-05-07 9512 66 154 2
2021-05-06 9446 49 152 0
2021-05-05 9397 68 152 0
2021-05-04 9329 88 152 0
2021-05-03 9241 20 152 0
2021-05-01 9221 57 152 0
2021-04-30 9164 62 152 1
2021-04-29 9102 82 151 0
2021-04-28 9020 89 151 1
2021-04-27 8931 66 150 1
2021-04-26 8865 28 149 0
2021-04-24 8837 105 149 1
2021-04-23 8732 86 148 0
2021-04-22 8646 112 148 0
2021-04-21 8534 114 148 0
2021-04-20 8420 153 148 0
2021-04-19 8267 22 148 0
2021-04-17 8245 58 148 0
2021-04-16 8187 92 148 0
2021-04-15 8095 85 148 0
2021-04-14 8010 116 148 1
2021-04-13 7894 114 147 0
2021-04-12 7780 17 147 0
2021-04-10 7763 60 147 0
2021-04-09 7703 63 147 0
2021-04-08 7640 80 147 0
2021-04-07 7560 84 147 1
2021-04-06 7476 10 146 0
2021-04-05 7466 10 146 0
2021-04-03 7456 21 146 0
2021-04-02 7435 31 146 1
2021-04-01 7404 73 145 0
2021-03-31 7331 36 145 0
2021-03-30 7295 36 145 1
2021-03-29 7259 20 144 0
2021-03-27 7239 35 144 0
2021-03-26 7204 32 144 0
2021-03-25 7172 76 144 0
2021-03-24 7096 54 144 2
2021-03-23 7042 40 142 0
2021-03-22 7002 13 142 0
2021-03-20 6989 50 142 0
2021-03-19 6939 17 142 0
2021-03-18 6922 46 142 0
2021-03-17 6876 40 142 0
2021-03-16 6836 44 142 1
2021-03-15 6792 21 141 0
2021-03-14 6771 1 141 0
2021-03-13 6770 27 141 0
2021-03-12 6743 41 141 0
2021-03-11 6702 34 141 1
2021-03-10 6668 43 140 0
2021-03-09 6625 16 140 0
2021-03-08 6609 9 140 2
2021-03-06 6600 13 138 0
2021-03-05 6587 17 138 0
2021-03-04 6570 26 138 0
2021-03-03 6544 28 138 0
2021-03-02 6516 29 138 0
2021-03-01 6487 10 138 0
2021-02-27 6477 34 138 0
2021-02-26 6443 15 138 1
2021-02-25 6428 22 137 0
2021-02-24 6406 29 137 0
2021-02-23 6377 34 137 1
2021-02-22 6343 7 136 0
2021-02-20 6336 26 136 0
2021-02-19 6310 24 136 0
2021-02-18 6286 18 136 1
2021-02-17 6268 28 135 1
2021-02-16 6240 38 134 2
2021-02-15 6202 32 132 1
2021-02-12 6170 18 131 0
2021-02-11 6152 26 131 0
2021-02-10 6126 29 131 0
2021-02-09 6097 36 131 0
2021-02-08 6061 1 131 0
2021-02-06 6060 11 131 0
2021-02-05 6049 21 131 0
2021-02-04 6028 42 131 0
2021-02-03 5986 39 131 0
2021-02-02 5947 55 131 1
2021-02-01 5892 19 130 0
2021-01-31 5873 6 130 0
2021-01-30 5867 42 130 0
2021-01-29 5825 28 130 0
2021-01-28 5797 50 130 0
2021-01-27 5747 41 130 0
2021-01-26 5706 53 130 0
2021-01-25 5653 17 130 0
2021-01-23 5636 37 130 1
2021-01-22 5599 44 129 2
2021-01-21 5555 33 127 0
2021-01-20 5522 45 127 0
2021-01-19 5477 53 127 0
2021-01-18 5424 13 127 0
2021-01-16 5411 40 127 0
2021-01-15 5371 49 127 2
2021-01-14 5322 40 125 1
2021-01-13 5282 60 124 1
2021-01-12 5222 87 123 1
2021-01-11 5135 20 122 0
2021-01-09 5115 50 122 2
2021-01-08 5065 61 120 0
2021-01-07 5004 57 120 2
2021-01-06 4947 117 118 1
2021-01-05 4830 85 117 2
2021-01-04 4745 50 115 3
2021-01-02 4695 48 112 1
2020-12-31 4647 71 111 1
2020-12-30 4576 79 110 0
2020-12-29 4497 121 110 2
2020-12-28 4376 57 108 3
2020-12-27 4319 9 105 1
2020-12-24 4310 58 104 4
2020-12-23 4252 119 100 0
2020-12-22 4133 91 100 5
2020-12-21 4042 74 95 2
2020-12-20 3968 23 93 1
2020-12-19 3945 52 92 2
2020-12-18 3893 78 90 0
2020-12-17 3815 124 90 2
2020-12-16 3691 55 88 0
2020-12-15 3636 59 88 3
2020-12-14 3577 27 85 0
2020-12-12 3550 40 85 0
2020-12-11 3510 53 85 0
2020-12-10 3457 66 85 0
2020-12-09 3391 56 85 3
2020-12-08 3335 48 82 3
2020-12-07 3287 42 79 1
2020-12-06 3245 47 78 0
2020-12-05 3198 17 78 0
2020-12-04 3181 33 78 1
2020-12-03 3148 72 77 1
2020-12-02 3076 62 76 2
2020-12-01 3014 76 74 3
2020-11-30 2938 68 71 3
2020-11-29 2870 7 68 0
2020-11-28 2863 30 68 0
2020-11-27 2833 40 68 0
2020-11-26 2793 57 68 1
2020-11-25 2736 85 67 0
2020-11-24 2651 60 67 1
2020-11-23 2591 43 66 1
2020-11-22 2548 3 65 0
2020-11-21 2545 55 65 0
2020-11-20 2490 51 65 1
2020-11-19 2439 74 64 0
2020-11-18 2365 67 64 0
2020-11-17 2298 75 64 2
2020-11-16 2223 42 62 0
2020-11-15 2181 23 62 0
2020-11-14 2158 43 62 0
2020-11-13 2115 48 62 0
2020-11-12 2067 67 62 0
2020-11-11 2000 62 62 2
2020-11-10 1938 84 60 1
2020-11-09 1854 70 59 1
2020-11-08 1784 9 58 0
2020-11-07 1775 64 58 0
2020-11-06 1711 78 58 2
2020-11-05 1633 68 56 1
2020-11-04 1565 84 55 2
2020-11-03 1481 63 53 2
2020-11-02 1418 33 51 1
2020-10-31 1385 27 50 0
2020-10-30 1358 48 50 0
2020-10-29 1310 54 50 4
2020-10-28 1256 46 46 1
2020-10-27 1210 45 45 1
2020-10-26 1165 36 44 3
2020-10-25 1129 33 41 4
2020-10-24 1096 8 37 0
2020-10-23 1088 36 37 0
2020-10-22 1052 18 37 0
2020-10-21 1034 12 37 2
2020-10-20 1022 14 35 0
2020-10-19 1008 18 35 0
2020-10-17 990 2 35 0
2020-10-16 988 12 35 0
2020-10-15 976 13 35 1
2020-10-14 963 10 34 0
2020-10-13 953 9 34 0
2020-10-12 944 7 34 0
2020-10-09 937 4 34 0
2020-10-08 933 7 34 0
2020-10-07 926 4 34 0
2020-10-06 922 5 34 0
2020-10-05 917 5 34 0
2020-10-03 912 1 34 0
2020-10-02 911 3 34 0
2020-10-01 908 1 34 0
2020-09-30 907 4 34 0
2020-09-29 903 5 34 0
2020-09-28 898 2 34 0
2020-09-25 896 4 34 0
2020-09-24 892 1 34 0
2020-09-23 891 3 34 0
2020-09-22 888 4 34 0
2020-09-21 884 4 34 0
2020-09-18 880 1 34 0
2020-09-17 879 3 34 0
2020-09-16 876 6 34 0
2020-09-14 870 11 34 0
2020-09-11 859 1 34 0
2020-09-10 858 5 34 0
2020-09-09 853 1 34 0
2020-09-08 852 2 34 0
2020-09-07 850 6 34 0
2020-09-05 844 1 34 0
2020-09-04 843 3 34 0
2020-09-03 840 2 34 0
2020-09-02 838 2 34 0
2020-09-01 836 1 34 0
2020-08-31 835 2 34 0
2020-08-28 833 3 34 0
2020-08-27 830 7 34 0
2020-08-26 823 2 34 0
2020-08-25 821 2 34 0
2020-08-24 819 6 34 0
2020-08-21 813 1 34 0
2020-08-20 812 2 34 0
2020-08-19 810 5 34 0
2020-08-18 805 3 34 0
2020-08-17 802 10 34 0
2020-08-14 792 2 34 0
2020-08-13 790 4 34 0
2020-08-12 786 3 34 0
2020-08-10 783 2 34 0
2020-08-09 781 1 34 0
2020-08-08 780 1 34 0
2020-08-07 779 2 34 0
2020-08-06 777 2 34 0
2020-08-05 775 4 34 0
2020-08-04 771 1 34 0
2020-08-03 770 9 34 0
2020-07-30 761 9 34 0
2020-07-28 752 1 34 0
2020-07-27 751 2 34 0
2020-07-26 749 5 34 0
2020-07-24 744 1 34 0
2020-07-20 743 1 34 0
2020-07-18 742 1 34 0
2020-07-16 741 6 34 0
2020-07-15 735 3 34 0
2020-07-14 732 1 34 0
2020-07-13 731 2 34 0
2020-07-11 729 1 34 0
2020-07-09 728 1 34 0
2020-07-06 727 2 34 0
2020-07-04 725 1 34 0
2020-07-02 724 1 34 0
2020-07-01 723 3 34 0
2020-06-30 720 4 34 0
2020-06-29 716 7 34 0
2020-06-26 709 5 34 0
2020-06-25 704 8 34 0
2020-06-24 696 4 34 0
2020-06-23 692 8 34 0
2020-06-22 684 3 34 0
2020-06-20 681 2 34 0
2020-06-19 679 1 34 0
2020-06-18 678 6 34 0
2020-06-17 672 3 34 0
2020-06-16 669 1 34 0
2020-06-12 668 1 34 0
2020-06-10 667 1 34 0
2020-06-08 666 6 34 0
2020-06-06 660 1 34 0
2020-06-05 659 2 34 0
2020-06-04 657 4 34 0
2020-06-02 653 5 34 0
2020-05-29 648 5 34 0
2020-05-28 643 1 34 0
2020-05-27 642 3 34 0
2020-05-26 639 5 34 0
2020-05-25 634 4 34 0
2020-05-22 630 8 34 0
2020-05-20 622 6 34 2
2020-05-19 616 3 32 0
2020-05-18 613 1 32 0
2020-05-15 612 4 32 0
2020-05-14 608 3 32 0
2020-05-13 605 7 32 0
2020-05-12 598 2 32 0
2020-05-11 596 1 32 0
2020-05-08 595 1 32 0
2020-05-07 594 4 32 0
2020-05-06 590 2 32 0
2020-05-05 588 8 32 0
2020-05-04 580 6 32 1
2020-04-30 574 8 31 1
2020-04-29 566 1 30 0
2020-04-28 565 1 30 0
2020-04-27 564 4 30 0
2020-04-25 560 1 30 1
2020-04-24 559 1 29 0
2020-04-23 558 12 29 0
2020-04-22 546 4 29 0
2020-04-21 542 8 29 0
2020-04-20 534 13 29 2
2020-04-17 521 9 27 0
2020-04-16 512 17 27 1
2020-04-15 495 7 26 1
2020-04-14 488 14 25 1
2020-04-13 474 13 24 1
2020-04-11 461 27 23 1
2020-04-09 434 17 22 2
2020-04-08 417 17 20 0
2020-04-07 400 33 20 3
2020-04-06 367 56 17 5
2020-04-04 311 2 12 0
2020-04-03 309 16 12 0
2020-04-02 293 46 12 5
2020-04-01 247 36 7 1
2020-03-31 211 23 6 0
2020-03-30 188 38 6 0
2020-03-28 150 7 6 0
2020-03-27 143 22 6 2
2020-03-26 121 14 4 2
2020-03-25 107 8 2 1
2020-03-24 99 14 1 0
2020-03-23 85 8 1 1
2020-03-21 77 15 0 0
2020-03-20 62 4 0 0
2020-03-19 58 23 0 0
2020-03-18 35 13 0 0
2020-03-17 22 8 0 0
2020-03-13 14 7 0 0
2020-03-12 7 3 0 0
2020-03-11 4 2 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:54.155395