Hungary: Hajdú-Bihar¶

  • 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:42:01 CEST
In [2]:
%config InlineBackend.figure_formats = ['svg']
from oscovida import *
In [3]:
overview(country="Hungary", region="Hajdú-Bihar", weeks=5);
2023-03-07T16:42:05.221070 image/svg+xml Matplotlib v3.7.1, https://matplotlib.org/ 21 Nov 28 Nov 05 Dec 12 Dec 19 Dec 180 180 200 200 220 220 240 240 7-day incidence rate 216.0 Hajdú-Bihar, 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 daily change Hungary-Hajdú-Bihar new cases (rolling 7d mean) Hungary-Hajdú-Bihar 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 1.4 1.4 R & growth factor (based on cases) Hungary-Hajdú-Bihar cases daily growth factor Hungary-Hajdú-Bihar cases daily growth factor (rolling mean) Hungary-Hajdú-Bihar 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 3000 3000 cases doubling time [days]
In [4]:
overview(country="Hungary", region="Hajdú-Bihar");
2023-03-07T16:42:10.076961 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 7-day incidence rate 216.0 Hajdú-Bihar, 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 daily change Hungary-Hajdú-Bihar new cases (rolling 7d mean) Hungary-Hajdú-Bihar 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 1.4 1.4 R & growth factor (based on cases) Hungary-Hajdú-Bihar cases daily growth factor Hungary-Hajdú-Bihar cases daily growth factor (rolling mean) Hungary-Hajdú-Bihar 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 40000 40000 cases doubling time [days]
In [5]:
compare_plot(country="Hungary", region="Hajdú-Bihar");
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
Cell In[5], line 1
----> 1 compare_plot(country="Hungary", region="Hajdú-Bihar");

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="Hajdú-Bihar")

# get population of the region for future normalisation:
inhabitants = population(country="Hungary", region="Hajdú-Bihar")
print(f'Population of country="Hungary", region="Hajdú-Bihar": {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="Hajdú-Bihar": None people
Out[6]:
total cases daily new cases
Dátum
2022-12-21 112936 216
2022-12-14 112720 217
2022-12-07 112503 239
2022-11-30 112264 223
2022-11-23 112041 167
2022-11-16 111874 214
2022-11-09 111660 562
2022-10-26 111098 405
2022-10-19 110693 563
2022-10-12 110130 570
2022-10-05 109560 695
2022-09-28 108865 598
2022-09-21 108267 694
2022-09-14 107573 605
2022-09-07 106968 455
2022-08-31 106513 570
2022-08-24 105943 745
2022-08-17 105198 914
2022-08-10 104284 979
2022-08-03 103305 1027
2022-07-27 102278 580
2022-07-20 101698 371
2022-07-13 101327 261
2022-07-06 101066 145
2022-06-29 100921 88
2022-06-22 100833 37
2022-06-15 100796 39
2022-06-08 100757 36
2022-06-01 100721 63
2022-05-25 100658 67
2022-05-18 100591 158
2022-05-11 100433 246
2022-05-02 100187 122
2022-04-28 100065 64
2022-04-27 100001 102
2022-04-26 99899 52
2022-04-25 99847 115
2022-04-22 99732 69
2022-04-21 99663 108
2022-04-20 99555 72
2022-04-19 99483 209
2022-04-14 99274 136
2022-04-13 99138 119
2022-04-12 99019 65
2022-04-11 98954 206
2022-04-08 98748 272
2022-04-06 98476 164
2022-04-05 98312 353
2022-04-01 97959 137
2022-03-31 97822 137
2022-03-30 97685 138
2022-03-29 97547 100
2022-03-28 97447 231
2022-03-25 97216 135
2022-03-24 97081 142
2022-03-23 96939 148
2022-03-22 96791 68
2022-03-21 96723 273
2022-03-18 96450 206
2022-03-17 96244 77
2022-03-16 96167 273
2022-03-11 95894 125
2022-03-10 95769 148
2022-03-09 95621 148
2022-03-08 95473 82
2022-03-07 95391 332
2022-03-04 95059 182
2022-03-03 94877 256
2022-03-02 94621 213
2022-03-01 94408 133
2022-02-28 94275 519
2022-02-25 93756 309
2022-02-24 93447 340
2022-02-23 93107 337
2022-02-22 92770 148
2022-02-21 92622 820
2022-02-18 91802 456
2022-02-17 91346 436
2022-02-16 90910 460
2022-02-15 90450 204
2022-02-14 90246 1361
2022-02-11 88885 659
2022-02-10 88226 679
2022-02-09 87547 706
2022-02-08 86841 383
2022-02-07 86458 1954
2022-02-04 84504 942
2022-02-03 83562 796
2022-02-02 82766 901
2022-02-01 81865 534
2022-01-31 81331 2297
2022-01-28 79034 993
2022-01-27 78041 829
2022-01-26 77212 791
2022-01-25 76421 411
2022-01-24 76010 1732
2022-01-21 74278 762
2022-01-20 73516 528
2022-01-19 72988 479
2022-01-18 72509 159
2022-01-17 72350 763
2022-01-14 71587 347
2022-01-13 71240 300
2022-01-12 70940 230
2022-01-11 70710 114
2022-01-10 70596 618
2022-01-07 69978 291
2022-01-06 69687 268
2022-01-05 69419 178
2022-01-04 69241 105
2022-01-03 69136 249
2021-12-31 68887 166
2021-12-30 68721 159
2021-12-29 68562 129
2021-12-28 68433 57
2021-12-27 68376 350
2021-12-23 68026 204
2021-12-22 67822 173
2021-12-21 67649 75
2021-12-20 67574 552
2021-12-17 67022 309
2021-12-16 66713 250
2021-12-15 66463 239
2021-12-14 66224 199
2021-12-13 66025 941
2021-12-10 65084 442
2021-12-09 64642 415
2021-12-08 64227 309
2021-12-07 63918 201
2021-12-06 63717 1422
2021-12-03 62295 640
2021-12-02 61655 634
2021-12-01 61021 554
2021-11-30 60467 442
2021-11-29 60025 1661
2021-11-26 58364 799
2021-11-25 57565 681
2021-11-24 56884 670
2021-11-23 56214 374
2021-11-22 55840 1901
2021-11-19 53939 781
2021-11-18 53158 709
2021-11-17 52449 613
2021-11-16 51836 268
2021-11-15 51568 1372
2021-11-12 50196 570
2021-11-11 49626 525
2021-11-10 49101 441
2021-11-09 48660 195
2021-11-08 48465 1296
2021-11-05 47169 462
2021-11-04 46707 367
2021-11-03 46340 140
2021-11-02 46200 69
2021-11-01 46131 643
2021-10-29 45488 225
2021-10-28 45263 204
2021-10-27 45059 197
2021-10-26 44862 80
2021-10-25 44782 360
2021-10-22 44422 138
2021-10-21 44284 145
2021-10-20 44139 83
2021-10-19 44056 46
2021-10-18 44010 180
2021-10-15 43830 73
2021-10-14 43757 58
2021-10-13 43699 44
2021-10-12 43655 26
2021-10-11 43629 136
2021-10-08 43493 45
2021-10-07 43448 52
2021-10-06 43396 44
2021-10-05 43352 17
2021-10-04 43335 86
2021-10-01 43249 41
2021-09-30 43208 28
2021-09-29 43180 26
2021-09-28 43154 12
2021-09-27 43142 64
2021-09-24 43078 27
2021-09-23 43051 35
2021-09-22 43016 29
2021-09-21 42987 8
2021-09-20 42979 47
2021-09-17 42932 20
2021-09-16 42912 26
2021-09-15 42886 23
2021-09-14 42863 9
2021-09-13 42854 36
2021-09-10 42818 18
2021-09-09 42800 12
2021-09-08 42788 15
2021-09-07 42773 2
2021-09-06 42771 21
2021-09-03 42750 11
2021-09-02 42739 4
2021-09-01 42735 7
2021-08-31 42728 3
2021-08-30 42725 12
2021-08-27 42713 1
2021-08-26 42712 5
2021-08-25 42707 2
2021-08-24 42705 1
2021-08-23 42704 8
2021-08-19 42696 4
2021-08-18 42692 7
2021-08-17 42685 1
2021-08-16 42684 10
2021-08-13 42674 2
2021-08-12 42672 6
2021-08-11 42666 3
2021-08-10 42663 2
2021-08-09 42661 5
2021-08-06 42656 4
2021-08-05 42652 2
2021-08-04 42650 2
2021-08-03 42648 1
2021-08-02 42647 6
2021-07-30 42641 0
2021-07-29 42641 4
2021-07-28 42637 2
2021-07-27 42635 0
2021-07-26 42635 2
2021-07-23 42633 4
2021-07-22 42629 1
2021-07-21 42628 0
2021-07-20 42628 0
2021-07-19 42628 1
2021-07-16 42627 1
2021-07-15 42626 1
2021-07-14 42625 1
2021-07-13 42624 1
2021-07-12 42623 1
2021-07-09 42622 1
2021-07-08 42621 0
2021-07-07 42621 2
2021-07-06 42619 0
2021-07-05 42619 0
2021-07-02 42619 0
2021-07-01 42619 1
2021-06-30 42618 1
2021-06-29 42617 0
2021-06-28 42617 6
2021-06-25 42611 2
2021-06-24 42609 2
2021-06-23 42607 1
2021-06-22 42606 0
2021-06-21 42606 19
2021-06-18 42587 9
2021-06-17 42578 4
2021-06-16 42574 2
2021-06-15 42572 2
2021-06-14 42570 17
2021-06-11 42553 10
2021-06-10 42543 8
2021-06-09 42535 5
2021-06-08 42530 7
2021-06-07 42523 2
2021-06-06 42521 3
2021-06-05 42518 4
2021-06-04 42514 5
2021-06-03 42509 12
2021-06-02 42497 18
2021-06-01 42479 6
2021-05-31 42473 9
2021-05-30 42464 14
2021-05-29 42450 20
2021-05-28 42430 22
2021-05-27 42408 20
2021-05-26 42388 3
2021-05-25 42385 3
2021-05-24 42382 9
2021-05-23 42373 19
2021-05-22 42354 25
2021-05-21 42329 32
2021-05-20 42297 39
2021-05-19 42258 28
2021-05-18 42230 17
2021-05-17 42213 21
2021-05-16 42192 33
2021-05-15 42159 39
2021-05-14 42120 38
2021-05-13 42082 70
2021-05-12 42012 38
2021-05-11 41974 12
2021-05-10 41962 21
2021-05-09 41941 43
2021-05-08 41898 50
2021-05-07 41848 86
2021-05-06 41762 93
2021-05-05 41669 71
2021-05-04 41598 32
2021-05-03 41566 61
2021-05-02 41505 77
2021-05-01 41428 87
2021-04-30 41341 108
2021-04-29 41233 132
2021-04-28 41101 103
2021-04-27 40998 45
2021-04-26 40953 80
2021-04-25 40873 125
2021-04-24 40748 148
2021-04-23 40600 122
2021-04-22 40478 210
2021-04-21 40268 183
2021-04-20 40085 81
2021-04-19 40004 143
2021-04-18 39861 218
2021-04-17 39643 243
2021-04-16 39400 267
2021-04-15 39133 285
2021-04-14 38848 202
2021-04-13 38646 105
2021-04-12 38541 251
2021-04-11 38290 345
2021-04-10 37945 466
2021-04-09 37479 429
2021-04-08 37050 283
2021-04-07 36767 107
2021-04-06 36660 74
2021-04-05 36586 205
2021-04-04 36381 372
2021-04-03 36009 436
2021-04-02 35573 495
2021-04-01 35078 493
2021-03-31 34585 297
2021-03-30 34288 185
2021-03-29 34103 310
2021-03-28 33793 450
2021-03-27 33343 506
2021-03-26 32837 585
2021-03-25 32252 548
2021-03-24 31704 309
2021-03-23 31395 207
2021-03-22 31188 456
2021-03-21 30732 366
2021-03-20 30366 645
2021-03-19 29721 527
2021-03-18 29194 377
2021-03-17 28817 134
2021-03-16 28683 190
2021-03-15 28493 347
2021-03-14 28146 378
2021-03-13 27768 448
2021-03-12 27320 437
2021-03-11 26883 451
2021-03-10 26432 283
2021-03-09 26149 265
2021-03-08 25884 120
2021-03-07 25764 266
2021-03-06 25498 381
2021-03-05 25117 442
2021-03-04 24675 341
2021-03-03 24334 184
2021-03-02 24150 112
2021-03-01 24038 246
2021-02-28 23792 223
2021-02-27 23569 199
2021-02-26 23370 187
2021-02-25 23183 243
2021-02-24 22940 171
2021-02-23 22769 46
2021-02-22 22723 127
2021-02-21 22596 145
2021-02-20 22451 145
2021-02-19 22306 200
2021-02-18 22106 156
2021-02-17 21950 84
2021-02-16 21866 34
2021-02-15 21832 80
2021-02-14 21752 70
2021-02-13 21682 84
2021-02-12 21598 78
2021-02-11 21520 73
2021-02-10 21447 81
2021-02-09 21366 56
2021-02-08 21310 42
2021-02-07 21268 64
2021-02-06 21204 73
2021-02-05 21131 71
2021-02-04 21060 132
2021-02-03 20928 56
2021-02-02 20872 14
2021-02-01 20858 58
2021-01-31 20800 46
2021-01-30 20754 92
2021-01-29 20662 95
2021-01-28 20567 90
2021-01-27 20477 72
2021-01-26 20405 16
2021-01-25 20389 45
2021-01-24 20344 91
2021-01-23 20253 48
2021-01-22 20205 44
2021-01-21 20161 61
2021-01-20 20100 44
2021-01-19 20056 28
2021-01-18 20028 36
2021-01-17 19992 44
2021-01-16 19948 78
2021-01-15 19870 70
2021-01-14 19800 119
2021-01-13 19681 85
2021-01-12 19596 20
2021-01-11 19576 41
2021-01-10 19535 89
2021-01-09 19446 78
2021-01-08 19368 163
2021-01-07 19205 197
2021-01-06 19008 107
2021-01-05 18901 54
2021-01-04 18847 51
2021-01-03 18796 49
2021-01-02 18747 95
2021-01-01 18652 162
2020-12-31 18490 226
2020-12-30 18264 172
2020-12-29 18092 67
2020-12-28 18025 26
2020-12-27 17999 52
2020-12-26 17947 89
2020-12-25 17858 198
2020-12-24 17660 244
2020-12-23 17416 125
2020-12-22 17291 94
2020-12-21 17197 143
2020-12-20 17054 126
2020-12-19 16928 234
2020-12-18 16694 255
2020-12-17 16439 288
2020-12-16 16151 260
2020-12-15 15891 96
2020-12-14 15795 183
2020-12-13 15612 225
2020-12-12 15387 273
2020-12-11 15114 405
2020-12-10 14709 373
2020-12-09 14336 219
2020-12-08 14117 91
2020-12-07 14026 190
2020-12-06 13836 501
2020-12-05 13335 343
2020-12-04 12992 448
2020-12-03 12544 422
2020-12-02 12122 222
2020-12-01 11900 335
2020-11-30 11565 550
2020-11-29 11015 308
2020-11-28 10707 302
2020-11-27 10405 294
2020-11-26 10111 395
2020-11-25 9716 145
2020-11-24 9571 351
2020-11-23 9220 58
2020-11-22 9162 136
2020-11-21 9026 217
2020-11-20 8809 270
2020-11-19 8539 453
2020-11-18 8086 381
2020-11-17 7705 352
2020-11-16 7353 869
2020-11-15 6484 30
2020-11-14 6454 20
2020-11-13 6434 1
2020-11-12 6433 25
2020-11-11 6408 351
2020-11-10 6057 286
2020-11-09 5771 245
2020-11-08 5526 311
2020-11-07 5215 184
2020-11-06 5031 253
2020-11-05 4778 146
2020-11-04 4632 200
2020-11-03 4432 135
2020-11-02 4297 270
2020-11-01 4027 193
2020-10-31 3834 400
2020-10-30 3434 137
2020-10-29 3297 123
2020-10-28 3174 92
2020-10-27 3082 169
2020-10-26 2913 34
2020-10-25 2879 112
2020-10-24 2767 12
2020-10-23 2755 198
2020-10-22 2557 144
2020-10-21 2413 99
2020-10-20 2314 2
2020-10-19 2312 176
2020-10-18 2136 93
2020-10-17 2043 64
2020-10-16 1979 31
2020-10-15 1948 36
2020-10-14 1912 59
2020-10-13 1853 72
2020-10-12 1781 47
2020-10-11 1734 49
2020-10-10 1685 85
2020-10-09 1600 91
2020-10-08 1509 11
2020-10-07 1498 79
2020-10-06 1419 19
2020-10-05 1400 37
2020-10-04 1363 100
2020-10-03 1263 73
2020-10-02 1190 130
2020-10-01 1060 8
2020-09-30 1052 71
2020-09-29 981 23
2020-09-28 958 3
2020-09-27 955 42
2020-09-26 913 52
2020-09-25 861 27
2020-09-24 834 21
2020-09-23 813 10
2020-09-22 803 70
2020-09-21 733 39
2020-09-20 694 46
2020-09-19 648 34
2020-09-18 614 68
2020-09-17 546 14
2020-09-16 532 37
2020-09-15 495 4
2020-09-14 491 31
2020-09-13 460 23
2020-09-12 437 27
2020-09-11 410 47
2020-09-10 363 16
2020-09-09 347 7
2020-09-08 340 18
2020-09-07 322 35
2020-09-06 287 5
2020-09-05 282 28
2020-09-04 254 26
2020-09-03 228 18
2020-09-02 210 21
2020-09-01 189 4
2020-08-31 185 13
2020-08-30 172 24
2020-08-29 148 6
2020-08-28 142 13
2020-08-27 129 3
2020-08-26 126 11
2020-08-25 115 2
2020-08-24 113 3
2020-08-23 110 0
2020-08-22 110 10
2020-08-21 100 3
2020-08-20 97 2
2020-08-19 95 0
2020-08-18 95 0
2020-08-17 95 2
2020-08-16 93 4
2020-08-15 89 -4
2020-08-14 93 2
2020-08-13 91 8
2020-08-12 83 1
2020-08-11 82 2
2020-08-10 80 10
2020-08-09 70 2
2020-08-08 68 6
2020-08-07 62 1
2020-08-06 61 2
2020-08-05 59 2
2020-08-04 57 1
2020-08-03 56 1
2020-08-02 55 0
2020-08-01 55 0
2020-07-31 55 0
2020-07-30 55 6
2020-07-29 49 3
2020-07-28 46 2
2020-07-27 44 1
2020-07-26 43 0
2020-07-25 43 3
2020-07-24 40 0
2020-07-23 40 10
2020-07-22 30 2
2020-07-21 28 2
2020-07-20 26 0
2020-07-19 26 1
2020-07-18 25 -1
2020-07-17 26 0
2020-07-16 26 0
2020-07-15 26 0
2020-07-14 26 2
2020-07-13 24 1
2020-07-12 23 0
2020-07-11 23 0
2020-07-10 23 0
2020-07-09 23 0
2020-07-08 23 1
2020-07-06 22 0
2020-07-05 22 0
2020-07-04 22 0
2020-07-03 22 0
2020-07-02 22 0
2020-07-01 22 0
2020-06-30 22 0
2020-06-29 22 0
2020-06-28 22 1
2020-06-27 21 -6
2020-06-26 27 0
2020-06-25 27 0
2020-06-24 27 0
2020-06-23 27 0
2020-06-22 27 0
2020-06-21 27 0
2020-06-20 27 0
2020-06-19 27 0
2020-06-18 27 0
2020-06-17 27 0
2020-06-15 27 0
2020-06-14 27 0
2020-06-13 27 0
2020-06-12 27 0
2020-06-11 27 1
2020-06-10 26 1
2020-06-09 25 0
2020-06-08 25 0
2020-06-07 25 0
2020-06-06 25 0
2020-06-05 25 0
2020-06-04 25 0
2020-06-03 25 0
2020-06-02 25 0
2020-06-01 25 0
2020-05-31 25 0
2020-05-30 25 1
2020-05-29 24 0
2020-05-28 24 0
2020-05-27 24 0
2020-05-26 24 0
2020-05-25 24 0
2020-05-24 24 0
2020-05-23 24 0
2020-05-22 24 0
2020-05-21 24 1
2020-05-20 23 0
2020-05-19 23 0
2020-05-18 23 0
2020-05-17 23 0
2020-05-16 23 0
2020-05-15 23 0
2020-05-14 23 0
2020-05-13 23 0
2020-05-12 23 0
2020-05-11 23 0
2020-05-10 23 0
2020-05-09 23 0
2020-05-08 23 0
2020-05-07 23 0
2020-05-06 23 0
2020-05-05 23 0
2020-05-04 23 0
2020-05-03 23 0
2020-05-02 23 0
2020-05-01 23 0
2020-04-30 23 0
2020-04-29 23 0
2020-04-28 23 0
2020-04-27 23 0
2020-04-26 23 0
2020-04-25 23 1
2020-04-24 22 1
2020-04-23 21 -1
2020-04-22 22 1
2020-04-21 21 2
2020-04-20 19 0
2020-04-19 19 0
2020-04-18 19 0
2020-04-17 19 0
2020-04-16 19 0
2020-04-15 19 0
2020-04-14 19 1
2020-04-13 18 0
2020-04-12 18 1
2020-04-11 17 0
2020-04-10 17 2
2020-04-09 15 0
2020-04-08 15 0
2020-04-07 15 0
2020-04-06 15 1
2020-04-05 14 1
2020-04-04 13 2
2020-04-03 11 1
2020-04-02 10 1
2020-04-01 9 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:10.168324