Germany: LK Fürstenfeldbruck (Bayern)¶

  • 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:47:51 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Germany", subregion="LK Fürstenfeldbruck", weeks=5);
2023-03-07T10:48:03.408287 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 60 60 80 80 100 100 120 120 7-day incidence rate (per 100K people) 61.8 LK Fürstenfeldbruck, 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 40 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 0.4 daily change normalised per 100K 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 0.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Germany-LK Fürstenfeldbruck cases daily growth factor Germany-LK Fürstenfeldbruck cases daily growth factor (rolling mean) Germany-LK Fürstenfeldbruck estimated R (using cases) 30 Jan 06 Feb 13 Feb 20 Feb 27 Feb 06 Mar 1 1 2 2 3 3 4 4 R & growth factor (based on deaths) Germany-LK Fürstenfeldbruck deaths daily growth factor Germany-LK Fürstenfeldbruck deaths daily growth factor (rolling mean) Germany-LK Fürstenfeldbruck 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 Fürstenfeldbruck doubling time cases (rolling mean) 0.0 21.9 43.7 65.6 87.4 daily change Germany-LK Fürstenfeldbruck new cases (rolling 7d mean) Germany-LK Fürstenfeldbruck new cases 0.000 0.219 0.437 0.656 0.874 daily change Germany-LK Fürstenfeldbruck new deaths (rolling 7d mean) Germany-LK Fürstenfeldbruck new deaths 0.000 0.314 0.628 0.942
In [4]:
overview(country="Germany", subregion="LK Fürstenfeldbruck");
2023-03-07T10:48:21.314151 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 May 23 0 0 1000 1000 2000 2000 3000 3000 4000 4000 7-day incidence rate (per 100K people) 61.8 LK Fürstenfeldbruck, 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 May 23 0 500 1000 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 May 23 0 1 2 3 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 May 23 0.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Germany-LK Fürstenfeldbruck cases daily growth factor Germany-LK Fürstenfeldbruck cases daily growth factor (rolling mean) Germany-LK Fürstenfeldbruck estimated R (using cases) Jan 20 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 May 23 1 1 2 2 3 3 4 4 R & growth factor (based on deaths) Germany-LK Fürstenfeldbruck deaths daily growth factor Germany-LK Fürstenfeldbruck deaths daily growth factor (rolling mean) Germany-LK Fürstenfeldbruck estimated R (using deaths) Jan 20 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 May 23 0 5000 10000 cases doubling time [days] Germany-LK Fürstenfeldbruck doubling time cases (rolling mean) Germany-LK Fürstenfeldbruck doubling time deaths (rolling mean) 0 1093 2186 daily change Germany-LK Fürstenfeldbruck new cases (rolling 7d mean) Germany-LK Fürstenfeldbruck new cases 0.00 2.19 4.37 6.56 8.74 daily change Germany-LK Fürstenfeldbruck new deaths (rolling 7d mean) Germany-LK Fürstenfeldbruck new deaths 0.0 97.1 194.2 deaths doubling time [days]
In [5]:
compare_plot(country="Germany", subregion="LK Fürstenfeldbruck", dates="2020-03-15:");
2023-03-07T10:50:40.047120 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 Fürstenfeldbruck LK Fürstenfeldbruck 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 Fürstenfeldbruck Bayern Berlin Bremen Hamburg Hessen Nordrhein-Westfalen Sachsen-Anhalt
In [6]:
# load the data
cases, deaths = germany_get_region(landkreis="LK Fürstenfeldbruck")

# get population of the region for future normalisation:
inhabitants = population(country="Germany", subregion="LK Fürstenfeldbruck")
print(f'Population of country="Germany", subregion="LK Fürstenfeldbruck": {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 Fürstenfeldbruck": 218579 people
Out[6]:
total cases daily new cases total deaths daily new deaths
date
2023-03-06 108525 23 270 0
2023-03-03 108502 11 270 0
2023-03-02 108491 19 270 1
2023-03-01 108472 43 269 0
2023-02-28 108429 39 269 1
2023-02-27 108390 61 268 0
2023-02-24 108329 31 268 0
2023-02-23 108298 37 268 0
2023-02-22 108261 94 268 1
2023-02-20 108167 80 267 0
2023-02-17 108087 37 267 0
2023-02-16 108050 50 267 0
2023-02-15 108000 54 267 0
2023-02-14 107946 34 267 0
2023-02-13 107912 92 267 0
2023-02-10 107820 30 267 0
2023-02-09 107790 43 267 0
2023-02-08 107747 40 267 0
2023-02-07 107707 35 267 0
2023-02-06 107672 93 267 0
2023-02-03 107579 27 267 0
2023-02-02 107552 55 267 0
2023-02-01 107497 55 267 0
2023-01-31 107442 39 267 0
2023-01-30 107403 72 267 1
2023-01-28 107331 1 266 0
2023-01-27 107330 28 266 0
2023-01-26 107302 36 266 0
2023-01-25 107266 21 266 0
2023-01-24 107245 47 266 0
2023-01-23 107198 68 266 0
2023-01-20 107130 25 266 0
2023-01-19 107105 21 266 0
2023-01-18 107084 34 266 0
2023-01-17 107050 34 266 0
2023-01-16 107016 57 266 1
2023-01-15 106959 1 265 0
2023-01-14 106958 1 265 0
2023-01-13 106957 3 265 0
2023-01-12 106954 36 265 0
2023-01-11 106918 38 265 0
2023-01-10 106880 38 265 1
2023-01-09 106842 105 264 0
2023-01-08 106737 1 264 0
2023-01-07 106736 1 264 0
2023-01-05 106735 20 264 0
2023-01-04 106715 44 264 0
2023-01-03 106671 30 264 0
2023-01-02 106641 66 264 1
2023-01-01 106575 1 263 0
2022-12-30 106574 41 263 1
2022-12-29 106533 94 262 0
2022-12-28 106439 52 262 1
2022-12-27 106387 119 261 0
2022-12-26 106268 1 261 0
2022-12-24 106267 1 261 0
2022-12-23 106266 43 261 0
2022-12-22 106223 61 261 0
2022-12-21 106162 80 261 0
2022-12-20 106082 41 261 0
2022-12-19 106041 100 261 0
2022-12-16 105941 41 261 0
2022-12-15 105900 64 261 0
2022-12-14 105836 51 261 0
2022-12-13 105785 79 261 0
2022-12-12 105706 101 261 0
2022-12-09 105605 36 261 0
2022-12-08 105569 56 261 0
2022-12-07 105513 44 261 0
2022-12-06 105469 58 261 0
2022-12-05 105411 85 261 0
2022-12-02 105326 39 261 1
2022-12-01 105287 55 260 0
2022-11-30 105232 44 260 0
2022-11-29 105188 50 260 0
2022-11-28 105138 71 260 0
2022-11-26 105067 1 260 0
2022-11-25 105066 38 260 1
2022-11-24 105028 52 259 0
2022-11-23 104976 42 259 0
2022-11-22 104934 24 259 0
2022-11-21 104910 62 259 1
2022-11-18 104848 37 258 0
2022-11-17 104811 28 258 0
2022-11-16 104783 45 258 0
2022-11-15 104738 45 258 0
2022-11-14 104693 103 258 0
2022-11-11 104590 25 258 0
2022-11-10 104565 74 258 0
2022-11-09 104491 69 258 0
2022-11-08 104422 68 258 1
2022-11-07 104354 114 257 0
2022-11-05 104240 2 257 0
2022-11-04 104238 85 257 0
2022-11-03 104153 31 257 1
2022-11-02 104122 139 256 1
2022-10-31 103983 129 255 0
2022-10-29 103854 2 255 0
2022-10-28 103852 86 255 0
2022-10-27 103766 76 255 0
2022-10-26 103690 171 255 0
2022-10-25 103519 82 255 0
2022-10-24 103437 240 255 0
2022-10-22 103197 2 255 0
2022-10-21 103195 149 255 0
2022-10-20 103046 156 255 0
2022-10-19 102890 287 255 1
2022-10-18 102603 224 254 0
2022-10-17 102379 473 254 2
2022-10-14 101906 240 252 0
2022-10-13 101666 324 252 0
2022-10-12 101342 570 252 0
2022-10-11 100772 326 252 1
2022-10-10 100446 998 251 0
2022-10-08 99448 3 251 0
2022-10-07 99445 554 251 2
2022-10-06 98891 811 249 1
2022-10-05 98080 551 248 0
2022-10-04 97529 1147 248 0
2022-10-03 96382 3 248 0
2022-10-01 96379 1 248 0
2022-09-30 96378 422 248 0
2022-09-29 95956 537 248 0
2022-09-28 95419 481 248 1
2022-09-27 94938 355 247 1
2022-09-26 94583 441 246 0
2022-09-25 94142 1 246 0
2022-09-24 94141 2 246 0
2022-09-23 94139 169 246 0
2022-09-22 93970 160 246 2
2022-09-21 93810 139 244 0
2022-09-20 93671 148 244 0
2022-09-19 93523 184 244 0
2022-09-16 93339 85 244 1
2022-09-15 93254 127 243 0
2022-09-14 93127 96 243 1
2022-09-13 93031 108 242 0
2022-09-12 92923 148 242 0
2022-09-10 92775 1 242 0
2022-09-09 92774 61 242 0
2022-09-08 92713 80 242 0
2022-09-07 92633 77 242 0
2022-09-06 92556 91 242 0
2022-09-05 92465 150 242 2
2022-09-02 92315 72 240 0
2022-09-01 92243 107 240 1
2022-08-31 92136 106 239 0
2022-08-30 92030 89 239 0
2022-08-29 91941 189 239 1
2022-08-26 91752 45 238 0
2022-08-25 91707 121 238 1
2022-08-24 91586 79 237 0
2022-08-23 91507 86 237 0
2022-08-22 91421 146 237 1
2022-08-19 91275 56 236 0
2022-08-18 91219 114 236 0
2022-08-17 91105 97 236 0
2022-08-16 91008 192 236 1
2022-08-15 90816 1 235 0
2022-08-12 90815 94 235 1
2022-08-11 90721 112 234 0
2022-08-10 90609 155 234 0
2022-08-09 90454 119 234 1
2022-08-08 90335 245 233 0
2022-08-06 90090 1 233 0
2022-08-05 90089 116 233 0
2022-08-04 89973 183 233 0
2022-08-03 89790 179 233 0
2022-08-02 89611 201 233 1
2022-08-01 89410 317 232 0
2022-07-29 89093 188 232 0
2022-07-28 88905 225 232 0
2022-07-27 88680 350 232 0
2022-07-26 88330 247 232 1
2022-07-25 88083 550 231 0
2022-07-23 87533 1 231 0
2022-07-22 87532 307 231 0
2022-07-21 87225 303 231 0
2022-07-20 86922 476 231 0
2022-07-19 86446 357 231 0
2022-07-18 86089 574 231 1
2022-07-15 85515 450 230 0
2022-07-14 85065 373 230 0
2022-07-13 84692 476 230 0
2022-07-12 84216 259 230 0
2022-07-11 83957 590 230 0
2022-07-10 83367 2 230 0
2022-07-08 83365 319 230 1
2022-07-07 83046 369 229 0
2022-07-06 82677 447 229 0
2022-07-05 82230 252 229 0
2022-07-04 81978 638 229 0
2022-07-02 81340 3 229 0
2022-07-01 81337 213 229 0
2022-06-30 81124 336 229 0
2022-06-29 80788 354 229 0
2022-06-28 80434 251 229 0
2022-06-27 80183 414 229 0
2022-06-24 79769 220 229 0
2022-06-23 79549 254 229 0
2022-06-22 79295 319 229 0
2022-06-21 78976 255 229 1
2022-06-20 78721 274 228 0
2022-06-17 78447 272 228 0
2022-06-15 78175 182 228 0
2022-06-14 77993 132 228 0
2022-06-13 77861 307 228 0
2022-06-10 77554 101 228 0
2022-06-09 77453 175 228 0
2022-06-08 77278 120 228 0
2022-06-07 77158 99 228 0
2022-06-06 77059 3 228 0
2022-06-05 77056 161 228 0
2022-06-04 76895 3 228 0
2022-06-03 76892 81 228 0
2022-06-02 76811 108 228 0
2022-06-01 76703 109 228 0
2022-05-31 76594 134 228 0
2022-05-30 76460 147 228 0
2022-05-29 76313 1 228 0
2022-05-28 76312 1 228 0
2022-05-27 76311 129 228 0
2022-05-26 76182 2 228 0
2022-05-25 76180 138 228 0
2022-05-24 76042 121 228 0
2022-05-23 75921 178 228 0
2022-05-22 75743 1 228 0
2022-05-21 75742 4 228 0
2022-05-20 75738 162 228 0
2022-05-19 75576 145 228 0
2022-05-18 75431 201 228 0
2022-05-17 75230 154 228 0
2022-05-16 75076 373 228 0
2022-05-15 74703 2 228 0
2022-05-13 74701 128 228 0
2022-05-12 74573 289 228 0
2022-05-11 74284 465 228 0
2022-05-10 73819 238 228 0
2022-05-09 73581 135 228 0
2022-05-08 73446 195 228 0
2022-05-07 73251 263 228 1
2022-05-06 72988 320 227 0
2022-05-05 72668 246 227 0
2022-05-04 72422 345 227 0
2022-05-03 72077 219 227 0
2022-05-02 71858 171 227 0
2022-05-01 71687 121 227 0
2022-04-30 71566 216 227 0
2022-04-29 71350 269 227 0
2022-04-28 71081 245 227 0
2022-04-27 70836 467 227 0
2022-04-26 70369 277 227 0
2022-04-25 70092 115 227 0
2022-04-24 69977 169 227 0
2022-04-23 69808 289 227 0
2022-04-22 69519 311 227 0
2022-04-21 69208 417 227 1
2022-04-20 68791 309 226 1
2022-04-19 68482 183 225 0
2022-04-18 68299 182 225 0
2022-04-17 68117 173 225 0
2022-04-16 67944 247 225 0
2022-04-15 67697 317 225 0
2022-04-14 67380 610 225 0
2022-04-13 66770 166 225 0
2022-04-12 66604 268 225 0
2022-04-11 66336 160 225 0
2022-04-10 66176 215 225 0
2022-04-09 65961 109 225 0
2022-04-08 65852 336 225 0
2022-04-07 65516 390 225 0
2022-04-06 65126 425 225 0
2022-04-05 64701 535 225 0
2022-04-04 64166 139 225 0
2022-04-03 64027 204 225 0
2022-04-02 63823 379 225 0
2022-04-01 63444 447 225 0
2022-03-31 62997 558 225 0
2022-03-30 62439 597 225 0
2022-03-29 61842 804 225 0
2022-03-28 61038 354 225 0
2022-03-27 60684 239 225 0
2022-03-26 60445 791 225 1
2022-03-25 59654 698 224 1
2022-03-24 58956 1404 223 0
2022-03-23 57552 1253 223 2
2022-03-22 56299 424 221 0
2022-03-21 55875 304 221 0
2022-03-20 55571 212 221 0
2022-03-19 55359 589 221 0
2022-03-18 54770 1054 221 0
2022-03-17 53716 781 221 2
2022-03-16 52935 1200 219 2
2022-03-15 51735 442 217 0
2022-03-14 51293 501 217 0
2022-03-13 50792 160 217 0
2022-03-12 50632 848 217 0
2022-03-11 49784 572 217 1
2022-03-10 49212 633 216 0
2022-03-09 48579 787 216 1
2022-03-08 47792 716 215 0
2022-03-07 47076 259 215 1
2022-03-06 46817 287 214 0
2022-03-05 46530 471 214 0
2022-03-04 46059 448 214 0
2022-03-03 45611 604 214 1
2022-03-02 45007 291 213 0
2022-03-01 44716 426 213 0
2022-02-28 44290 180 213 0
2022-02-27 44110 206 213 0
2022-02-26 43904 799 213 0
2022-02-25 43105 294 213 0
2022-02-24 42811 197 213 0
2022-02-23 42614 586 213 1
2022-02-22 42028 592 212 0
2022-02-21 41436 280 212 0
2022-02-20 41156 228 212 0
2022-02-19 40928 555 212 0
2022-02-18 40373 386 212 1
2022-02-17 39987 564 211 0
2022-02-16 39423 699 211 3
2022-02-15 38724 599 208 2
2022-02-14 38125 247 206 0
2022-02-13 37878 197 206 0
2022-02-12 37681 582 206 1
2022-02-11 37099 546 205 1
2022-02-10 36553 852 204 1
2022-02-09 35701 636 203 0
2022-02-08 35065 785 203 0
2022-02-07 34280 319 203 0
2022-02-06 33961 788 203 0
2022-02-05 33173 815 203 0
2022-02-04 32358 1062 203 0
2022-02-03 31296 940 203 0
2022-02-02 30356 3085 203 3
2022-02-01 27271 1817 200 1
2022-01-31 25454 438 199 0
2022-01-30 25016 219 199 0
2022-01-29 24797 590 199 1
2022-01-28 24207 468 198 0
2022-01-27 23739 429 198 0
2022-01-26 23310 365 198 0
2022-01-25 22945 228 198 0
2022-01-24 22717 176 198 0
2022-01-23 22541 274 198 0
2022-01-22 22267 171 198 0
2022-01-21 22096 154 198 0
2022-01-20 21942 223 198 0
2022-01-19 21719 388 198 0
2022-01-18 21331 593 198 0
2022-01-17 20738 184 198 0
2022-01-16 20554 186 198 0
2022-01-15 20368 293 198 0
2022-01-14 20075 216 198 1
2022-01-13 19859 362 197 0
2022-01-12 19497 184 197 0
2022-01-11 19313 185 197 0
2022-01-10 19128 190 197 0
2022-01-09 18938 18 197 0
2022-01-08 18920 141 197 0
2022-01-07 18779 113 197 0
2022-01-06 18666 115 197 0
2022-01-05 18551 154 197 0
2022-01-04 18397 107 197 0
2022-01-03 18290 67 197 0
2022-01-02 18223 15 197 1
2022-01-01 18208 46 196 0
2021-12-31 18162 64 196 0
2021-12-30 18098 62 196 0
2021-12-29 18036 77 196 0
2021-12-28 17959 73 196 0
2021-12-27 17886 31 196 0
2021-12-26 17855 23 196 0
2021-12-25 17832 54 196 0
2021-12-24 17778 49 196 0
2021-12-23 17729 47 196 0
2021-12-22 17682 60 196 0
2021-12-21 17622 74 196 0
2021-12-20 17548 21 196 0
2021-12-19 17527 28 196 0
2021-12-18 17499 62 196 1
2021-12-17 17437 52 195 0
2021-12-16 17385 61 195 1
2021-12-15 17324 55 194 0
2021-12-14 17269 92 194 0
2021-12-13 17177 29 194 0
2021-12-12 17148 23 194 1
2021-12-11 17125 76 193 0
2021-12-10 17049 69 193 2
2021-12-09 16980 83 191 0
2021-12-08 16897 177 191 1
2021-12-07 16720 94 190 1
2021-12-06 16626 60 189 0
2021-12-05 16566 61 189 0
2021-12-04 16505 148 189 0
2021-12-03 16357 69 189 0
2021-12-02 16288 137 189 1
2021-12-01 16151 186 188 0
2021-11-30 15965 134 188 0
2021-11-29 15831 63 188 0
2021-11-28 15768 181 188 0
2021-11-27 15587 116 188 2
2021-11-26 15471 153 186 0
2021-11-25 15318 169 186 0
2021-11-24 15149 180 186 1
2021-11-23 14969 126 185 0
2021-11-22 14843 102 185 1
2021-11-21 14741 125 184 4
2021-11-20 14616 148 180 1
2021-11-19 14468 179 179 2
2021-11-18 14289 151 177 0
2021-11-17 14138 259 177 7
2021-11-16 13879 143 170 1
2021-11-15 13736 52 169 0
2021-11-14 13684 83 169 1
2021-11-13 13601 200 168 1
2021-11-12 13401 181 167 0
2021-11-11 13220 287 167 5
2021-11-10 12933 135 162 1
2021-11-09 12798 200 161 1
2021-11-08 12598 54 160 1
2021-11-07 12544 123 159 2
2021-11-06 12421 143 157 0
2021-11-05 12278 121 157 1
2021-11-04 12157 137 156 1
2021-11-03 12020 99 155 0
2021-11-02 11921 31 155 0
2021-11-01 11890 21 155 0
2021-10-31 11869 21 155 0
2021-10-30 11848 58 155 0
2021-10-29 11790 59 155 0
2021-10-28 11731 57 155 2
2021-10-27 11674 64 153 1
2021-10-26 11610 72 152 0
2021-10-25 11538 11 152 0
2021-10-24 11527 15 152 0
2021-10-23 11512 45 152 0
2021-10-22 11467 39 152 0
2021-10-21 11428 31 152 0
2021-10-20 11397 49 152 0
2021-10-19 11348 48 152 0
2021-10-18 11300 6 152 0
2021-10-17 11294 12 152 0
2021-10-16 11282 36 152 0
2021-10-15 11246 25 152 0
2021-10-14 11221 21 152 0
2021-10-13 11200 27 152 0
2021-10-12 11173 12 152 0
2021-10-11 11161 4 152 1
2021-10-10 11157 5 151 0
2021-10-09 11152 13 151 0
2021-10-08 11139 10 151 0
2021-10-07 11129 19 151 1
2021-10-06 11110 33 150 0
2021-10-05 11077 18 150 0
2021-10-04 11059 13 150 0
2021-10-03 11046 9 150 0
2021-10-02 11037 25 150 0
2021-10-01 11012 26 150 0
2021-09-30 10986 22 150 0
2021-09-29 10964 24 150 0
2021-09-28 10940 42 150 0
2021-09-27 10898 13 150 0
2021-09-26 10885 10 150 0
2021-09-25 10875 23 150 1
2021-09-24 10852 30 149 0
2021-09-23 10822 12 149 0
2021-09-22 10810 18 149 1
2021-09-21 10792 26 148 0
2021-09-20 10766 13 148 0
2021-09-19 10753 17 148 0
2021-09-18 10736 16 148 0
2021-09-17 10720 22 148 0
2021-09-16 10698 25 148 0
2021-09-15 10673 36 148 0
2021-09-14 10637 33 148 0
2021-09-13 10604 19 148 0
2021-09-12 10585 14 148 0
2021-09-11 10571 26 148 0
2021-09-10 10545 25 148 0
2021-09-09 10520 27 148 1
2021-09-08 10493 43 147 0
2021-09-07 10450 34 147 0
2021-09-06 10416 9 147 0
2021-09-05 10407 18 147 0
2021-09-04 10389 28 147 0
2021-09-03 10361 34 147 3
2021-09-02 10327 19 144 0
2021-09-01 10308 34 144 1
2021-08-31 10274 36 143 0
2021-08-30 10238 22 143 0
2021-08-29 10216 13 143 0
2021-08-28 10203 33 143 0
2021-08-27 10170 27 143 0
2021-08-26 10143 22 143 0
2021-08-25 10121 21 143 1
2021-08-24 10100 52 142 0
2021-08-23 10048 18 142 0
2021-08-22 10030 12 142 0
2021-08-21 10018 29 142 0
2021-08-20 9989 14 142 0
2021-08-19 9975 18 142 0
2021-08-18 9957 6 142 0
2021-08-17 9951 17 142 0
2021-08-16 9934 9 142 0
2021-08-15 9925 2 142 0
2021-08-14 9923 21 142 1
2021-08-13 9902 12 141 0
2021-08-12 9890 8 141 0
2021-08-11 9882 8 141 0
2021-08-10 9874 10 141 0
2021-08-09 9864 5 141 0
2021-08-08 9859 5 141 0
2021-08-07 9854 6 141 0
2021-08-06 9848 6 141 0
2021-08-05 9842 7 141 0
2021-08-04 9835 12 141 0
2021-08-03 9823 3 141 0
2021-08-02 9820 1 141 0
2021-08-01 9819 1 141 0
2021-07-31 9818 7 141 0
2021-07-30 9811 4 141 0
2021-07-29 9807 7 141 0
2021-07-28 9800 4 141 0
2021-07-27 9796 6 141 0
2021-07-26 9790 5 141 0
2021-07-25 9785 3 141 0
2021-07-24 9782 2 141 0
2021-07-23 9780 6 141 0
2021-07-22 9774 4 141 0
2021-07-21 9770 5 141 0
2021-07-20 9765 5 141 0
2021-07-19 9760 2 141 0
2021-07-18 9758 2 141 0
2021-07-17 9756 6 141 0
2021-07-16 9750 5 141 0
2021-07-15 9745 7 141 0
2021-07-14 9738 9 141 0
2021-07-13 9729 9 141 0
2021-07-12 9720 1 141 0
2021-07-11 9719 1 141 0
2021-07-10 9718 5 141 0
2021-07-09 9713 3 141 0
2021-07-08 9710 1 141 0
2021-07-07 9709 1 141 0
2021-07-06 9708 2 141 0
2021-07-05 9706 2 141 0
2021-07-03 9704 1 141 0
2021-06-30 9703 1 141 0
2021-06-27 9702 1 141 0
2021-06-24 9701 1 141 0
2021-06-23 9700 2 141 0
2021-06-22 9698 5 141 0
2021-06-17 9693 1 141 0
2021-06-15 9692 7 141 0
2021-06-14 9685 1 141 0
2021-06-13 9684 4 141 0
2021-06-11 9680 1 141 0
2021-06-10 9679 6 141 0
2021-06-09 9673 5 141 0
2021-06-08 9668 9 141 0
2021-06-07 9659 4 141 0
2021-06-06 9655 1 141 0
2021-06-05 9654 6 141 0
2021-06-04 9648 9 141 0
2021-06-03 9639 9 141 0
2021-06-02 9630 6 141 0
2021-06-01 9624 9 141 0
2021-05-31 9615 5 141 0
2021-05-30 9610 3 141 0
2021-05-29 9607 12 141 0
2021-05-28 9595 12 141 0
2021-05-27 9583 10 141 0
2021-05-26 9573 13 141 0
2021-05-25 9560 4 141 0
2021-05-24 9556 5 141 0
2021-05-23 9551 5 141 0
2021-05-22 9546 8 141 0
2021-05-21 9538 12 141 1
2021-05-20 9526 4 140 0
2021-05-19 9522 10 140 0
2021-05-18 9512 23 140 0
2021-05-17 9489 9 140 0
2021-05-16 9480 8 140 0
2021-05-15 9472 21 140 0
2021-05-14 9451 2 140 0
2021-05-13 9449 17 140 0
2021-05-12 9432 34 140 0
2021-05-11 9398 33 140 0
2021-05-10 9365 19 140 0
2021-05-09 9346 13 140 0
2021-05-08 9333 28 140 0
2021-05-07 9305 39 140 0
2021-05-06 9266 29 140 0
2021-05-05 9237 27 140 1
2021-05-04 9210 41 139 0
2021-05-03 9169 21 139 0
2021-05-02 9148 20 139 0
2021-05-01 9128 37 139 0
2021-04-30 9091 41 139 1
2021-04-29 9050 33 138 0
2021-04-28 9017 41 138 0
2021-04-27 8976 62 138 0
2021-04-26 8914 5 138 0
2021-04-25 8909 29 138 0
2021-04-24 8880 72 138 0
2021-04-23 8808 24 138 0
2021-04-22 8784 53 138 1
2021-04-21 8731 77 137 1
2021-04-20 8654 66 136 0
2021-04-19 8588 22 136 0
2021-04-18 8566 31 136 0
2021-04-17 8535 52 136 1
2021-04-16 8483 64 135 1
2021-04-15 8419 54 134 0
2021-04-14 8365 53 134 0
2021-04-13 8312 59 134 0
2021-04-12 8253 29 134 0
2021-04-11 8224 27 134 1
2021-04-10 8197 45 133 0
2021-04-09 8152 54 133 1
2021-04-08 8098 47 132 0
2021-04-07 8051 61 132 1
2021-04-06 7990 26 131 0
2021-04-05 7964 19 131 0
2021-04-04 7945 28 131 0
2021-04-03 7917 17 131 0
2021-04-02 7900 28 131 0
2021-04-01 7872 27 131 0
2021-03-31 7845 40 131 0
2021-03-30 7805 53 131 1
2021-03-29 7752 20 130 0
2021-03-28 7732 40 130 0
2021-03-27 7692 31 130 1
2021-03-26 7661 26 129 0
2021-03-25 7635 41 129 0
2021-03-24 7594 56 129 1
2021-03-23 7538 34 128 0
2021-03-22 7504 4 128 0
2021-03-21 7500 18 128 0
2021-03-20 7482 21 128 0
2021-03-19 7461 22 128 0
2021-03-18 7439 36 128 0
2021-03-17 7403 26 128 1
2021-03-16 7377 27 127 0
2021-03-15 7350 8 127 0
2021-03-14 7342 10 127 0
2021-03-13 7332 26 127 0
2021-03-12 7306 17 127 1
2021-03-11 7289 20 126 0
2021-03-10 7269 22 126 0
2021-03-09 7247 21 126 0
2021-03-08 7226 6 126 0
2021-03-07 7220 20 126 0
2021-03-06 7200 17 126 0
2021-03-05 7183 27 126 0
2021-03-04 7156 18 126 0
2021-03-03 7138 5 126 0
2021-03-02 7133 22 126 0
2021-03-01 7111 4 126 0
2021-02-28 7107 54 126 0
2021-02-27 7053 37 126 0
2021-02-26 7016 15 126 0
2021-02-25 7001 15 126 0
2021-02-24 6986 20 126 0
2021-02-23 6966 14 126 0
2021-02-22 6952 6 126 0
2021-02-21 6946 6 126 0
2021-02-20 6940 30 126 0
2021-02-19 6910 13 126 0
2021-02-18 6897 9 126 0
2021-02-17 6888 11 126 0
2021-02-16 6877 12 126 0
2021-02-15 6865 5 126 0
2021-02-14 6860 6 126 0
2021-02-13 6854 5 126 0
2021-02-12 6849 8 126 0
2021-02-11 6841 24 126 0
2021-02-10 6817 12 126 1
2021-02-09 6805 8 125 1
2021-02-08 6797 4 124 0
2021-02-07 6793 2 124 0
2021-02-06 6791 12 124 0
2021-02-05 6779 22 124 0
2021-02-04 6757 22 124 0
2021-02-03 6735 24 124 0
2021-02-02 6711 32 124 0
2021-02-01 6679 11 124 0
2021-01-31 6668 6 124 0
2021-01-30 6662 32 124 0
2021-01-29 6630 32 124 0
2021-01-28 6598 30 124 2
2021-01-27 6568 20 122 0
2021-01-26 6548 47 122 3
2021-01-25 6501 9 119 1
2021-01-24 6492 11 118 0
2021-01-23 6481 17 118 3
2021-01-22 6464 32 115 1
2021-01-21 6432 37 114 1
2021-01-20 6395 32 113 0
2021-01-19 6363 27 113 0
2021-01-18 6336 10 113 0
2021-01-17 6326 9 113 0
2021-01-16 6317 11 113 0
2021-01-15 6306 65 113 0
2021-01-14 6241 43 113 0
2021-01-13 6198 39 113 1
2021-01-12 6159 30 112 1
2021-01-11 6129 38 111 0
2021-01-10 6091 12 111 0
2021-01-09 6079 70 111 5
2021-01-08 6009 41 106 3
2021-01-07 5968 26 103 1
2021-01-06 5942 47 102 0
2021-01-05 5895 31 102 0
2021-01-04 5864 34 102 0
2021-01-03 5830 26 102 0
2021-01-02 5804 20 102 0
2021-01-01 5784 14 102 1
2020-12-31 5770 74 101 1
2020-12-30 5696 49 100 0
2020-12-29 5647 64 100 0
2020-12-28 5583 51 100 2
2020-12-27 5532 8 98 0
2020-12-26 5524 8 98 0
2020-12-25 5516 18 98 0
2020-12-24 5498 50 98 0
2020-12-23 5448 101 98 2
2020-12-22 5347 56 96 0
2020-12-21 5291 75 96 1
2020-12-20 5216 57 95 0
2020-12-19 5159 52 95 0
2020-12-18 5107 36 95 2
2020-12-17 5071 77 93 0
2020-12-16 4994 63 93 1
2020-12-15 4931 58 92 0
2020-12-14 4873 73 92 1
2020-12-13 4800 24 91 0
2020-12-12 4776 53 91 1
2020-12-11 4723 94 90 3
2020-12-10 4629 89 87 0
2020-12-09 4540 77 87 1
2020-12-08 4463 68 86 1
2020-12-07 4395 43 85 3
2020-12-06 4352 23 82 0
2020-12-05 4329 43 82 1
2020-12-04 4286 76 81 1
2020-12-03 4210 70 80 1
2020-12-02 4140 47 79 2
2020-12-01 4093 57 77 1
2020-11-30 4036 37 76 2
2020-11-29 3999 37 74 2
2020-11-28 3962 51 72 0
2020-11-27 3911 54 72 0
2020-11-26 3857 58 72 1
2020-11-25 3799 62 71 3
2020-11-24 3737 68 68 1
2020-11-23 3669 94 67 1
2020-11-22 3575 3 66 1
2020-11-21 3572 25 65 0
2020-11-20 3547 80 65 1
2020-11-19 3467 92 64 2
2020-11-18 3375 67 62 1
2020-11-17 3308 45 61 0
2020-11-16 3263 44 61 5
2020-11-15 3219 9 56 0
2020-11-14 3210 23 56 0
2020-11-13 3187 104 56 1
2020-11-12 3083 64 55 0
2020-11-11 3019 60 55 0
2020-11-10 2959 86 55 1
2020-11-09 2873 53 54 0
2020-11-08 2820 53 54 9
2020-11-07 2767 26 45 0
2020-11-06 2741 95 45 1
2020-11-05 2646 76 44 0
2020-11-04 2570 83 44 0
2020-11-03 2487 70 44 1
2020-11-02 2417 71 43 0
2020-11-01 2346 20 43 2
2020-10-31 2326 35 41 0
2020-10-30 2291 86 41 1
2020-10-29 2205 41 40 1
2020-10-28 2164 55 39 0
2020-10-27 2109 83 39 0
2020-10-26 2026 19 39 0
2020-10-25 2007 44 39 0
2020-10-24 1963 33 39 0
2020-10-23 1930 46 39 0
2020-10-22 1884 50 39 0
2020-10-21 1834 40 39 0
2020-10-20 1794 58 39 0
2020-10-19 1736 4 39 0
2020-10-18 1732 19 39 0
2020-10-17 1713 52 39 0
2020-10-16 1661 21 39 0
2020-10-15 1640 49 39 0
2020-10-14 1591 46 39 1
2020-10-13 1545 15 38 0
2020-10-12 1530 5 38 0
2020-10-11 1525 18 38 1
2020-10-10 1507 11 37 0
2020-10-09 1496 50 37 0
2020-10-08 1446 22 37 0
2020-10-07 1424 26 37 0
2020-10-06 1398 20 37 0
2020-10-05 1378 5 37 0
2020-10-04 1373 12 37 0
2020-10-03 1361 10 37 0
2020-10-02 1351 8 37 0
2020-10-01 1343 11 37 0
2020-09-30 1332 9 37 0
2020-09-29 1323 15 37 0
2020-09-28 1308 5 37 0
2020-09-27 1303 7 37 0
2020-09-26 1296 8 37 0
2020-09-25 1288 11 37 0
2020-09-24 1277 7 37 0
2020-09-23 1270 19 37 0
2020-09-22 1251 16 37 0
2020-09-21 1235 5 37 0
2020-09-20 1230 7 37 0
2020-09-19 1223 10 37 0
2020-09-18 1213 8 37 0
2020-09-17 1205 19 37 0
2020-09-16 1186 8 37 0
2020-09-15 1178 7 37 0
2020-09-14 1171 4 37 0
2020-09-13 1167 5 37 0
2020-09-12 1162 7 37 0
2020-09-11 1155 6 37 0
2020-09-10 1149 5 37 0
2020-09-08 1144 6 37 0
2020-09-07 1138 2 37 0
2020-09-06 1136 3 37 0
2020-09-05 1133 10 37 0
2020-09-04 1123 13 37 0
2020-09-03 1110 10 37 0
2020-09-02 1100 6 37 0
2020-09-01 1094 3 37 0
2020-08-31 1091 2 37 0
2020-08-30 1089 1 37 0
2020-08-29 1088 2 37 0
2020-08-28 1086 6 37 0
2020-08-27 1080 6 37 0
2020-08-26 1074 7 37 0
2020-08-25 1067 6 37 0
2020-08-24 1061 8 37 0
2020-08-23 1053 7 37 0
2020-08-22 1046 5 37 0
2020-08-21 1041 6 37 0
2020-08-20 1035 10 37 0
2020-08-19 1025 6 37 0
2020-08-18 1019 4 37 0
2020-08-17 1015 10 37 0
2020-08-16 1005 1 37 0
2020-08-15 1004 2 37 0
2020-08-14 1002 9 37 0
2020-08-13 993 2 37 0
2020-08-12 991 1 37 0
2020-08-11 990 4 37 0
2020-08-08 986 1 37 0
2020-08-06 985 6 37 0
2020-08-05 979 1 37 0
2020-08-04 978 3 37 0
2020-08-03 975 2 37 0
2020-08-01 973 1 37 0
2020-07-31 972 3 37 0
2020-07-30 969 1 37 0
2020-07-29 968 1 37 0
2020-07-28 967 4 37 0
2020-07-27 963 1 37 0
2020-07-26 962 1 37 0
2020-07-24 961 2 37 0
2020-07-21 959 2 37 0
2020-07-20 957 2 37 0
2020-07-19 955 1 37 0
2020-07-17 954 1 37 0
2020-07-16 953 5 37 0
2020-07-15 948 3 37 0
2020-07-14 945 8 37 0
2020-07-10 937 4 37 0
2020-07-09 933 2 37 0
2020-07-08 931 4 37 0
2020-07-06 927 1 37 0
2020-07-03 926 2 37 0
2020-07-02 924 7 37 0
2020-06-30 917 1 37 0
2020-06-29 916 2 37 0
2020-06-28 914 2 37 0
2020-06-26 912 3 37 0
2020-06-24 909 1 37 0
2020-06-17 908 1 37 0
2020-06-16 907 1 37 0
2020-06-10 906 1 37 0
2020-06-09 905 1 37 0
2020-06-04 904 2 37 0
2020-06-03 902 1 37 0
2020-05-28 901 1 37 0
2020-05-26 900 1 37 0
2020-05-23 899 4 37 0
2020-05-22 895 2 37 0
2020-05-20 893 3 37 0
2020-05-19 890 7 37 0
2020-05-18 883 1 37 0
2020-05-15 882 2 37 0
2020-05-14 880 2 37 0
2020-05-13 878 3 37 0
2020-05-12 875 1 37 0
2020-05-11 874 2 37 0
2020-05-09 872 3 37 0
2020-05-08 869 3 37 0
2020-05-07 866 9 37 1
2020-05-06 857 10 36 0
2020-05-05 847 8 36 0
2020-05-04 839 13 36 0
2020-05-02 826 4 36 0
2020-05-01 822 3 36 0
2020-04-30 819 5 36 0
2020-04-29 814 3 36 0
2020-04-28 811 8 36 0
2020-04-27 803 4 36 0
2020-04-25 799 14 36 0
2020-04-24 785 9 36 0
2020-04-23 776 8 36 0
2020-04-22 768 12 36 0
2020-04-21 756 9 36 0
2020-04-20 747 9 36 1
2020-04-19 738 2 35 0
2020-04-18 736 4 35 0
2020-04-17 732 21 35 1
2020-04-16 711 14 34 1
2020-04-15 697 8 33 2
2020-04-14 689 15 31 0
2020-04-13 674 3 31 1
2020-04-12 671 6 30 0
2020-04-11 665 13 30 0
2020-04-10 652 16 30 0
2020-04-09 636 23 30 2
2020-04-08 613 14 28 0
2020-04-07 599 19 28 1
2020-04-06 580 16 27 0
2020-04-05 564 4 27 0
2020-04-04 560 47 27 3
2020-04-03 513 29 24 1
2020-04-02 484 61 23 9
2020-04-01 423 24 14 2
2020-03-31 399 39 12 0
2020-03-30 360 16 12 1
2020-03-29 344 3 11 0
2020-03-28 341 55 11 3
2020-03-27 286 28 8 1
2020-03-26 258 55 7 3
2020-03-25 203 44 4 1
2020-03-24 159 23 3 2
2020-03-23 136 21 1 0
2020-03-22 115 11 1 0
2020-03-21 104 19 1 1
2020-03-20 85 38 0 0
2020-03-19 47 17 0 0
2020-03-18 30 1 0 0
2020-03-17 29 3 0 0
2020-03-16 26 2 0 0
2020-03-15 24 3 0 0
2020-03-14 21 5 0 0
2020-03-13 16 9 0 0
2020-03-11 7 1 0 0
2020-03-10 6 1 0 0
2020-03-09 5 1 0 0
2020-03-02 4 1 0 0
2020-02-07 3 1 0 0
2020-01-31 2 1 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:14.246117