Hungary: Győr-Moson-Sopron¶

  • 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 16:41:46 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Hungary", region="Győr-Moson-Sopron", weeks=5);
2023-03-07T16:41:49.639540 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 260 260 280 280 300 300 320 320 7-day incidence rate 283.0 Győr-Moson-Sopron, Hungary, last 5 weeks, last data point from 2022-12-21 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 0 0 100 100 200 200 300 300 daily change Hungary-Győr-Moson-Sopron new cases (rolling 7d mean) Hungary-Győr-Moson-Sopron new cases 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec No data available to plot daily change in deaths 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 0.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Hungary-Győr-Moson-Sopron cases daily growth factor Hungary-Győr-Moson-Sopron cases daily growth factor (rolling mean) Hungary-Győr-Moson-Sopron estimated R (using cases) 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec No data available to plot R & growth factor (based on deaths) 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 0 0 1000 1000 2000 2000 cases doubling time [days]
In [4]:
overview(country="Hungary", region="Győr-Moson-Sopron");
2023-03-07T16:41:54.307398 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 2000 2000 4000 4000 6000 6000 8000 8000 7-day incidence rate 283.0 Győr-Moson-Sopron, Hungary, last data point from 2022-12-21 May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 1000 1000 2000 2000 3000 3000 daily change Hungary-Győr-Moson-Sopron new cases (rolling 7d mean) Hungary-Győr-Moson-Sopron new cases May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 No data available to plot daily change in deaths May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0.8 0.8 1.0 1.0 1.2 1.2 R & growth factor (based on cases) Hungary-Győr-Moson-Sopron cases daily growth factor Hungary-Győr-Moson-Sopron cases daily growth factor (rolling mean) Hungary-Győr-Moson-Sopron estimated R (using cases) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 No data available to plot R & growth factor (based on deaths) May 20 Sep 20 Jan 21 May 21 Sep 21 Jan 22 May 22 Sep 22 Jan 23 0 0 10000 10000 20000 20000 30000 30000 cases doubling time [days]
In [5]:
compare_plot(country="Hungary", region="Győr-Moson-Sopron");
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
Cell In[5], line 1
----> 1 compare_plot(country="Hungary", region="Győr-Moson-Sopron");

File /tank/oscovida/work/oscovida.github.io/oscovida.github.io/.venv/lib/python3.9/site-packages/oscovida/oscovida.py:1976, in compare_plot(country, region, subregion, savefig, normalise, dates, align)
   1974 if normalise:
   1975     _population = population(country=country, region=region, subregion=subregion)
-> 1976     c *= 100000 / _population
   1977     d *= 100000 / _population
   1979 if not subregion and not region:    # i.e. not a region of Germany

TypeError: unsupported operand type(s) for /: 'int' and 'NoneType'
In [6]:
# load the data
cases, deaths = get_region_hungary(county="Győr-Moson-Sopron")

# get population of the region for future normalisation:
inhabitants = population(country="Hungary", region="Győr-Moson-Sopron")
print(f'Population of country="Hungary", region="Győr-Moson-Sopron": {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="Hungary", region="Győr-Moson-Sopron": None people
Out[6]:
total cases daily new cases
Dátum
2022-12-21 117283 283
2022-12-14 117000 319
2022-12-07 116681 260
2022-11-30 116421 280
2022-11-23 116141 277
2022-11-16 115864 309
2022-11-09 115555 780
2022-10-26 114775 557
2022-10-19 114218 774
2022-10-12 113444 656
2022-10-05 112788 844
2022-09-28 111944 531
2022-09-21 111413 585
2022-09-14 110828 482
2022-09-07 110346 495
2022-08-31 109851 552
2022-08-24 109299 647
2022-08-17 108652 772
2022-08-10 107880 884
2022-08-03 106996 1173
2022-07-27 105823 868
2022-07-20 104955 647
2022-07-13 104308 498
2022-07-06 103810 286
2022-06-29 103524 148
2022-06-22 103376 97
2022-06-15 103279 65
2022-06-08 103214 81
2022-06-01 103133 102
2022-05-25 103031 163
2022-05-18 102868 256
2022-05-11 102612 323
2022-05-02 102289 168
2022-04-28 102121 84
2022-04-27 102037 100
2022-04-26 101937 73
2022-04-25 101864 168
2022-04-22 101696 88
2022-04-21 101608 183
2022-04-20 101425 60
2022-04-19 101365 217
2022-04-14 101148 115
2022-04-13 101033 130
2022-04-12 100903 73
2022-04-11 100830 238
2022-04-08 100592 248
2022-04-06 100344 100
2022-04-05 100244 299
2022-04-01 99945 100
2022-03-31 99845 130
2022-03-30 99715 110
2022-03-29 99605 84
2022-03-28 99521 272
2022-03-25 99249 127
2022-03-24 99122 168
2022-03-23 98954 161
2022-03-22 98793 58
2022-03-21 98735 555
2022-03-18 98180 167
2022-03-17 98013 86
2022-03-16 97927 297
2022-03-11 97630 105
2022-03-10 97525 148
2022-03-09 97377 150
2022-03-08 97227 64
2022-03-07 97163 408
2022-03-04 96755 135
2022-03-03 96620 198
2022-03-02 96422 198
2022-03-01 96224 109
2022-02-28 96115 488
2022-02-25 95627 255
2022-02-24 95372 307
2022-02-23 95065 300
2022-02-22 94765 173
2022-02-21 94592 701
2022-02-18 93891 416
2022-02-17 93475 431
2022-02-16 93044 482
2022-02-15 92562 248
2022-02-14 92314 1226
2022-02-11 91088 641
2022-02-10 90447 737
2022-02-09 89710 792
2022-02-08 88918 379
2022-02-07 88539 2295
2022-02-04 86244 1052
2022-02-03 85192 1042
2022-02-02 84150 1337
2022-02-01 82813 504
2022-01-31 82309 3227
2022-01-28 79082 1183
2022-01-27 77899 1552
2022-01-26 76347 1287
2022-01-25 75060 858
2022-01-24 74202 2855
2022-01-21 71347 1049
2022-01-20 70298 1168
2022-01-19 69130 932
2022-01-18 68198 380
2022-01-17 67818 1369
2022-01-14 66449 526
2022-01-13 65923 470
2022-01-12 65453 364
2022-01-11 65089 135
2022-01-10 64954 786
2022-01-07 64168 302
2022-01-06 63866 323
2022-01-05 63543 186
2022-01-04 63357 90
2022-01-03 63267 310
2021-12-31 62957 150
2021-12-30 62807 152
2021-12-29 62655 111
2021-12-28 62544 45
2021-12-27 62499 464
2021-12-23 62035 154
2021-12-22 61881 138
2021-12-21 61743 66
2021-12-20 61677 559
2021-12-17 61118 273
2021-12-16 60845 256
2021-12-15 60589 270
2021-12-14 60319 132
2021-12-13 60187 865
2021-12-10 59322 392
2021-12-09 58930 438
2021-12-08 58492 339
2021-12-07 58153 158
2021-12-06 57995 1363
2021-12-03 56632 409
2021-12-02 56223 415
2021-12-01 55808 245
2021-11-30 55563 375
2021-11-29 55188 1251
2021-11-26 53937 666
2021-11-25 53271 492
2021-11-24 52779 405
2021-11-23 52374 187
2021-11-22 52187 1252
2021-11-19 50935 450
2021-11-18 50485 381
2021-11-17 50104 319
2021-11-16 49785 204
2021-11-15 49581 805
2021-11-12 48776 241
2021-11-11 48535 298
2021-11-10 48237 199
2021-11-09 48038 157
2021-11-08 47881 701
2021-11-05 47180 195
2021-11-04 46985 158
2021-11-03 46827 57
2021-11-02 46770 79
2021-11-01 46691 321
2021-10-29 46370 115
2021-10-28 46255 140
2021-10-27 46115 109
2021-10-26 46006 42
2021-10-25 45964 197
2021-10-22 45767 77
2021-10-21 45690 75
2021-10-20 45615 38
2021-10-19 45577 16
2021-10-18 45561 97
2021-10-15 45464 42
2021-10-14 45422 41
2021-10-13 45381 27
2021-10-12 45354 13
2021-10-11 45341 83
2021-10-08 45258 41
2021-10-07 45217 33
2021-10-06 45184 22
2021-10-05 45162 19
2021-10-04 45143 57
2021-10-01 45086 19
2021-09-30 45067 23
2021-09-29 45044 24
2021-09-28 45020 6
2021-09-27 45014 61
2021-09-24 44953 19
2021-09-23 44934 13
2021-09-22 44921 15
2021-09-21 44906 10
2021-09-20 44896 44
2021-09-17 44852 13
2021-09-16 44839 18
2021-09-15 44821 14
2021-09-14 44807 9
2021-09-13 44798 45
2021-09-10 44753 11
2021-09-09 44742 9
2021-09-08 44733 9
2021-09-07 44724 1
2021-09-06 44723 40
2021-09-03 44683 18
2021-09-02 44665 13
2021-09-01 44652 12
2021-08-31 44640 5
2021-08-30 44635 27
2021-08-27 44608 5
2021-08-26 44603 5
2021-08-25 44598 8
2021-08-24 44590 3
2021-08-23 44587 14
2021-08-19 44573 8
2021-08-18 44565 5
2021-08-17 44560 2
2021-08-16 44558 4
2021-08-13 44554 12
2021-08-12 44542 8
2021-08-11 44534 5
2021-08-10 44529 2
2021-08-09 44527 11
2021-08-06 44516 5
2021-08-05 44511 1
2021-08-04 44510 4
2021-08-03 44506 0
2021-08-02 44506 7
2021-07-30 44499 3
2021-07-29 44496 2
2021-07-28 44494 1
2021-07-27 44493 0
2021-07-26 44493 5
2021-07-23 44488 11
2021-07-22 44477 0
2021-07-21 44477 0
2021-07-20 44477 3
2021-07-19 44474 1
2021-07-16 44473 3
2021-07-15 44470 2
2021-07-14 44468 0
2021-07-13 44468 0
2021-07-12 44468 5
2021-07-09 44463 2
2021-07-08 44461 5
2021-07-07 44456 5
2021-07-06 44451 1
2021-07-05 44450 3
2021-07-02 44447 1
2021-07-01 44446 1
2021-06-30 44445 2
2021-06-29 44443 2
2021-06-28 44441 3
2021-06-25 44438 6
2021-06-24 44432 2
2021-06-23 44430 3
2021-06-22 44427 2
2021-06-21 44425 6
2021-06-18 44419 2
2021-06-17 44417 6
2021-06-16 44411 4
2021-06-15 44407 1
2021-06-14 44406 8
2021-06-11 44398 12
2021-06-10 44386 9
2021-06-09 44377 10
2021-06-08 44367 1
2021-06-07 44366 2
2021-06-06 44364 10
2021-06-05 44354 13
2021-06-04 44341 11
2021-06-03 44330 10
2021-06-02 44320 8
2021-06-01 44312 8
2021-05-31 44304 2
2021-05-30 44302 26
2021-05-29 44276 27
2021-05-28 44249 19
2021-05-27 44230 15
2021-05-26 44215 15
2021-05-25 44200 11
2021-05-24 44189 4
2021-05-23 44185 18
2021-05-22 44167 36
2021-05-21 44131 31
2021-05-20 44100 52
2021-05-19 44048 32
2021-05-18 44016 18
2021-05-17 43998 17
2021-05-16 43981 32
2021-05-15 43949 44
2021-05-14 43905 101
2021-05-13 43804 106
2021-05-12 43698 47
2021-05-11 43651 17
2021-05-10 43634 53
2021-05-09 43581 147
2021-05-08 43434 104
2021-05-07 43330 61
2021-05-06 43269 64
2021-05-05 43205 73
2021-05-04 43132 15
2021-05-03 43117 85
2021-05-02 43032 61
2021-05-01 42971 99
2021-04-30 42872 116
2021-04-29 42756 108
2021-04-28 42648 50
2021-04-27 42598 28
2021-04-26 42570 115
2021-04-25 42455 88
2021-04-24 42367 129
2021-04-23 42238 162
2021-04-22 42076 171
2021-04-21 41905 70
2021-04-20 41835 33
2021-04-19 41802 142
2021-04-18 41660 173
2021-04-17 41487 177
2021-04-16 41310 233
2021-04-15 41077 277
2021-04-14 40800 108
2021-04-13 40692 35
2021-04-12 40657 254
2021-04-11 40403 352
2021-04-10 40051 480
2021-04-09 39571 399
2021-04-08 39172 146
2021-04-07 39026 57
2021-04-06 38969 33
2021-04-05 38936 93
2021-04-04 38843 316
2021-04-03 38527 475
2021-04-02 38052 552
2021-04-01 37500 466
2021-03-31 37034 235
2021-03-30 36799 115
2021-03-29 36684 474
2021-03-28 36210 427
2021-03-27 35783 645
2021-03-26 35138 560
2021-03-25 34578 565
2021-03-24 34013 243
2021-03-23 33770 340
2021-03-22 33430 422
2021-03-21 33008 653
2021-03-20 32355 764
2021-03-19 31591 682
2021-03-18 30909 283
2021-03-17 30626 85
2021-03-16 30541 242
2021-03-15 30299 424
2021-03-14 29875 587
2021-03-13 29288 622
2021-03-12 28666 576
2021-03-11 28090 652
2021-03-10 27438 236
2021-03-09 27202 359
2021-03-08 26843 238
2021-03-07 26605 440
2021-03-06 26165 488
2021-03-05 25677 512
2021-03-04 25165 406
2021-03-03 24759 214
2021-03-02 24545 143
2021-03-01 24402 307
2021-02-28 24095 358
2021-02-27 23737 360
2021-02-26 23377 306
2021-02-25 23071 240
2021-02-24 22831 137
2021-02-23 22694 39
2021-02-22 22655 202
2021-02-21 22453 159
2021-02-20 22294 178
2021-02-19 22116 186
2021-02-18 21930 166
2021-02-17 21764 120
2021-02-16 21644 23
2021-02-15 21621 57
2021-02-14 21564 133
2021-02-13 21431 108
2021-02-12 21323 113
2021-02-11 21210 112
2021-02-10 21098 61
2021-02-09 21037 28
2021-02-08 21009 76
2021-02-07 20933 81
2021-02-06 20852 87
2021-02-05 20765 72
2021-02-04 20693 57
2021-02-03 20636 41
2021-02-02 20595 15
2021-02-01 20580 67
2021-01-31 20513 29
2021-01-30 20484 68
2021-01-29 20416 50
2021-01-28 20366 75
2021-01-27 20291 37
2021-01-26 20254 8
2021-01-25 20246 28
2021-01-24 20218 38
2021-01-23 20180 47
2021-01-22 20133 66
2021-01-21 20067 61
2021-01-20 20006 18
2021-01-19 19988 8
2021-01-18 19980 80
2021-01-17 19900 37
2021-01-16 19863 57
2021-01-15 19806 66
2021-01-14 19740 74
2021-01-13 19666 75
2021-01-12 19591 5
2021-01-11 19586 46
2021-01-10 19540 62
2021-01-09 19478 102
2021-01-08 19376 151
2021-01-07 19225 146
2021-01-06 19079 105
2021-01-05 18974 24
2021-01-04 18950 11
2021-01-03 18939 68
2021-01-02 18871 57
2021-01-01 18814 84
2020-12-31 18730 124
2020-12-30 18606 85
2020-12-29 18521 35
2020-12-28 18486 5
2020-12-27 18481 24
2020-12-26 18457 38
2020-12-25 18419 127
2020-12-24 18292 207
2020-12-23 18085 85
2020-12-22 18000 20
2020-12-21 17980 54
2020-12-20 17926 99
2020-12-19 17827 134
2020-12-18 17693 191
2020-12-17 17502 121
2020-12-16 17381 94
2020-12-15 17287 33
2020-12-14 17254 164
2020-12-13 17090 187
2020-12-12 16903 230
2020-12-11 16673 248
2020-12-10 16425 255
2020-12-09 16170 136
2020-12-08 16034 117
2020-12-07 15917 155
2020-12-06 15762 283
2020-12-05 15479 278
2020-12-04 15201 284
2020-12-03 14917 324
2020-12-02 14593 209
2020-12-01 14384 229
2020-11-30 14155 272
2020-11-29 13883 429
2020-11-28 13454 389
2020-11-27 13065 242
2020-11-26 12823 301
2020-11-25 12522 112
2020-11-24 12410 331
2020-11-23 12079 161
2020-11-22 11918 290
2020-11-21 11628 302
2020-11-20 11326 182
2020-11-19 11144 112
2020-11-18 11032 137
2020-11-17 10895 256
2020-11-16 10639 101
2020-11-15 10538 303
2020-11-14 10235 439
2020-11-13 9796 546
2020-11-12 9250 311
2020-11-11 8939 471
2020-11-10 8468 420
2020-11-09 8048 619
2020-11-08 7429 501
2020-11-07 6928 606
2020-11-06 6322 317
2020-11-05 6005 244
2020-11-04 5761 204
2020-11-03 5557 310
2020-11-02 5247 509
2020-11-01 4738 -59
2020-10-31 4797 435
2020-10-30 4362 248
2020-10-29 4114 65
2020-10-28 4049 137
2020-10-27 3912 80
2020-10-26 3832 165
2020-10-25 3667 156
2020-10-24 3511 140
2020-10-23 3371 95
2020-10-22 3276 143
2020-10-21 3133 133
2020-10-20 3000 39
2020-10-19 2961 88
2020-10-18 2873 89
2020-10-17 2784 152
2020-10-16 2632 75
2020-10-15 2557 63
2020-10-14 2494 109
2020-10-13 2385 37
2020-10-12 2348 96
2020-10-11 2252 97
2020-10-10 2155 161
2020-10-09 1994 137
2020-10-08 1857 52
2020-10-07 1805 68
2020-10-06 1737 70
2020-10-05 1667 44
2020-10-04 1623 84
2020-10-03 1539 73
2020-10-02 1466 99
2020-10-01 1367 38
2020-09-30 1329 54
2020-09-29 1275 42
2020-09-28 1233 51
2020-09-27 1182 44
2020-09-26 1138 90
2020-09-25 1048 111
2020-09-24 937 51
2020-09-23 886 75
2020-09-22 811 28
2020-09-21 783 80
2020-09-20 703 39
2020-09-19 664 42
2020-09-18 622 66
2020-09-17 556 33
2020-09-16 523 36
2020-09-15 487 45
2020-09-14 442 48
2020-09-13 394 31
2020-09-12 363 60
2020-09-11 303 29
2020-09-10 274 12
2020-09-09 262 9
2020-09-08 253 9
2020-09-07 244 19
2020-09-06 225 21
2020-09-05 204 13
2020-09-04 191 16
2020-09-03 175 11
2020-09-02 164 8
2020-09-01 156 0
2020-08-31 156 2
2020-08-30 154 25
2020-08-29 129 6
2020-08-28 123 4
2020-08-27 119 2
2020-08-26 117 3
2020-08-25 114 0
2020-08-24 114 0
2020-08-23 114 0
2020-08-22 114 1
2020-08-21 113 4
2020-08-20 109 0
2020-08-19 109 2
2020-08-18 107 1
2020-08-17 106 0
2020-08-16 106 0
2020-08-15 106 2
2020-08-14 104 0
2020-08-13 104 0
2020-08-12 104 0
2020-08-11 104 0
2020-08-10 104 1
2020-08-09 103 0
2020-08-08 103 0
2020-08-07 103 0
2020-08-06 103 1
2020-08-05 102 0
2020-08-04 102 0
2020-08-03 102 0
2020-08-02 102 0
2020-08-01 102 0
2020-07-31 102 2
2020-07-30 100 2
2020-07-29 98 0
2020-07-28 98 0
2020-07-27 98 1
2020-07-26 97 0
2020-07-25 97 4
2020-07-24 93 2
2020-07-23 91 1
2020-07-22 90 0
2020-07-21 90 0
2020-07-20 90 0
2020-07-19 90 0
2020-07-18 90 1
2020-07-17 89 0
2020-07-16 89 0
2020-07-15 89 0
2020-07-14 89 0
2020-07-13 89 0
2020-07-12 89 0
2020-07-11 89 0
2020-07-10 89 0
2020-07-09 89 1
2020-07-08 88 1
2020-07-06 87 0
2020-07-05 87 0
2020-07-04 87 0
2020-07-03 87 1
2020-07-02 86 0
2020-07-01 86 0
2020-06-30 86 0
2020-06-29 86 0
2020-06-28 86 0
2020-06-27 86 0
2020-06-26 86 0
2020-06-25 86 0
2020-06-24 86 0
2020-06-23 86 0
2020-06-22 86 0
2020-06-21 86 0
2020-06-20 86 0
2020-06-19 86 0
2020-06-18 86 0
2020-06-17 86 0
2020-06-15 86 0
2020-06-14 86 0
2020-06-13 86 1
2020-06-12 85 0
2020-06-11 85 0
2020-06-10 85 0
2020-06-09 85 0
2020-06-08 85 0
2020-06-07 85 0
2020-06-06 85 0
2020-06-05 85 0
2020-06-04 85 0
2020-06-03 85 0
2020-06-02 85 0
2020-06-01 85 0
2020-05-31 85 1
2020-05-30 84 0
2020-05-29 84 0
2020-05-28 84 0
2020-05-27 84 0
2020-05-26 84 0
2020-05-25 84 0
2020-05-24 84 0
2020-05-23 84 0
2020-05-22 84 0
2020-05-21 84 0
2020-05-20 84 0
2020-05-19 84 0
2020-05-18 84 1
2020-05-17 83 0
2020-05-16 83 0
2020-05-15 83 0
2020-05-14 83 0
2020-05-13 83 0
2020-05-12 83 0
2020-05-11 83 0
2020-05-10 83 1
2020-05-09 82 0
2020-05-08 82 1
2020-05-07 81 0
2020-05-06 81 0
2020-05-05 81 2
2020-05-04 79 0
2020-05-03 79 0
2020-05-02 79 1
2020-05-01 78 1
2020-04-30 77 0
2020-04-29 77 0
2020-04-28 77 1
2020-04-27 76 1
2020-04-26 75 1
2020-04-25 74 0
2020-04-24 74 2
2020-04-23 72 -3
2020-04-22 75 11
2020-04-21 64 0
2020-04-20 64 1
2020-04-19 63 0
2020-04-18 63 0
2020-04-17 63 1
2020-04-16 62 1
2020-04-15 61 0
2020-04-14 61 0
2020-04-13 61 1
2020-04-12 60 16
2020-04-11 44 1
2020-04-10 43 6
2020-04-09 37 0
2020-04-08 37 1
2020-04-07 36 2
2020-04-06 34 0
2020-04-05 34 1
2020-04-04 33 5
2020-04-03 28 0
2020-04-02 28 2
2020-04-01 26 1

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:00:12.183536