-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcovid-testing-all-observations.csv
We can't make this file beautiful and searchable because it's too large.
4710 lines (4710 loc) · 941 KB
/
covid-testing-all-observations.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Entity,ISO code,Date,Source URL,Source label,Notes,Cumulative total,Daily change in cumulative total,Cumulative total per thousand,Daily change in cumulative total per thousand,3-day rolling mean daily change,3-day rolling mean daily change per thousand,7-day rolling mean daily change,7-day rolling mean daily change per thousand
Argentina - tests performed,ARG,2020-04-08,https://www.argentina.gob.ar/sites/default/files/08-04-20-reporte-matutino-covid-19.pdf,Government of Argentina,,13330,,0.295,,,,,
Argentina - tests performed,ARG,2020-04-09,https://www.argentina.gob.ar/sites/default/files/09-04-20-reporte-matutino-covid-19.pdf,Government of Argentina,,14850,1520,0.329,0.034,,,,
Argentina - tests performed,ARG,2020-04-10,https://www.argentina.gob.ar/sites/default/files/10-04-20_reporte-matutino-covid-19_0.pdf,Government of Argentina,,16379,1529,0.362,0.034,,,,
Argentina - tests performed,ARG,2020-04-11,https://www.argentina.gob.ar/sites/default/files/11-04-20-reporte-matutino-covid-19.pdf,Government of Argentina,,18027,1648,0.399,0.036,1565.667,0.035,,
Argentina - tests performed,ARG,2020-04-13,https://www.argentina.gob.ar/sites/default/files/12-04-20_reporte_matutino_covid_19.pdf,Government of Argentina,,19758,,0.437,,,,,
Argentina - tests performed,ARG,2020-04-14,https://www.argentina.gob.ar/sites/default/files/14-04-20_reporte_matutino_covid_19.pdf,Government of Argentina,,22805,3047,0.505,0.067,,,,
Argentina - tests performed,ARG,2020-04-15,https://www.argentina.gob.ar/sites/default/files/15-04-20_reporte-matutino-covid-19.pdf,Government of Argentina,,24374,1569,0.539,0.035,,,,
Argentina - tests performed,ARG,2020-04-16,https://www.argentina.gob.ar/sites/default/files/16-04-20_reporte_matutino_covid_19.pdf,Government of Argentina,,26457,2083,0.585,0.046,2233,0.049,,
Argentina - tests performed,ARG,2020-04-17,https://www.argentina.gob.ar/sites/default/files/17-04-20-reporte-matutino-covid-19_0.pdf,Government of Argentina,,28650,2193,0.634,0.049,1948.333,0.043,,
Argentina - tests performed,ARG,2020-04-18,https://www.argentina.gob.ar/sites/default/files/18-04-20_reporte-matutino-covid-19.pdf,Government of Argentina,,30942,2292,0.685,0.051,2189.333,0.049,,
Argentina - tests performed,ARG,2020-04-19,https://www.argentina.gob.ar/sites/default/files/19-04-20_reporte_matutino_covid_19.pdf,Government of Argentina,,32712,1770,0.724,0.039,2085,0.046,,
Argentina - tests performed,ARG,2020-04-20,https://www.argentina.gob.ar/sites/default/files/20-04-20_reporte_matutino_covid_19.pdf,Government of Argentina,,34568,1856,0.765,0.041,1972.667,0.044,2115.714,0.047
Argentina - tests performed,ARG,2020-04-21,https://www.argentina.gob.ar/sites/default/files/21-04-20_reporte-matutino-covid-19.pdf,Government of Argentina,,36611,2043,0.81,0.045,1889.667,0.042,1972.286,0.044
Argentina - tests performed,ARG,2020-04-22,https://www.argentina.gob.ar/sites/default/files/22-04-20_reporte-matutino-covid-19_2.pdf,Government of Argentina,,39228,2617,0.868,0.058,2172,0.048,2122,0.047
Argentina - tests performed,ARG,2020-04-23,https://www.argentina.gob.ar/sites/default/files/23-04-20-reporte-matutino-covid-19.pdf,Government of Argentina,,41786,2558,0.925,0.057,2406,0.053,2189.857,0.049
Argentina - tests performed,ARG,2020-04-24,https://www.argentina.gob.ar/sites/default/files/24-04-20_reporte_matutino_covid_19.pdf,Government of Argentina,,44654,2868,0.988,0.063,2681,0.059,2286.286,0.051
Argentina - tests performed,ARG,2020-04-25,https://www.argentina.gob.ar/sites/default/files/25-04-20-reporte-matutino-covid-19.docx.pdf,Government of Argentina,,47406,2752,1.049,0.061,2726,0.06,2352,0.052
Argentina - tests performed,ARG,2020-04-26,https://www.argentina.gob.ar/sites/default/files/26-04-20-reporte-matutino-covid-19.pdf,Government of Argentina,,49905,2499,1.104,0.055,2706.333,0.06,2456.143,0.054
Argentina - tests performed,ARG,2020-04-27,https://www.argentina.gob.ar/sites/default/files/27-04-20-reporte-matutino-covid-19.pdf,Government of Argentina,,51900,1995,1.148,0.044,2415.333,0.053,2476,0.055
Argentina - tests performed,ARG,2020-04-28,https://www.argentina.gob.ar/sites/default/files/28-04-20_reporte-matutino-covid-19.pdf,Government of Argentina,,53600,1700,1.186,0.038,2064.667,0.046,2427,0.054
Argentina - tests performed,ARG,2020-04-29,https://www.argentina.gob.ar/sites/default/files/29-04-20_reporte-matutino-covid-19.pdf,Government of Argentina,,56058,2458,1.24,0.054,2051,0.045,2404.286,0.053
Argentina - tests performed,ARG,2020-04-30,https://www.argentina.gob.ar/sites/default/files/30-04-20_reporte_matutino_covid_19.pdf,Government of Argentina,,58685,2627,1.298,0.058,2261.667,0.05,2414.143,0.053
Argentina - tests performed,ARG,2020-05-01,https://www.argentina.gob.ar/sites/default/files/01-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,61530,2845,1.361,0.063,2643.333,0.058,2410.857,0.053
Argentina - tests performed,ARG,2020-05-02,https://www.argentina.gob.ar/sites/default/files/02-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,63866,2336,1.413,0.052,2602.667,0.058,2351.429,0.052
Argentina - tests performed,ARG,2020-05-03,https://www.argentina.gob.ar/sites/default/files/03-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,65813,1947,1.456,0.043,2376,0.053,2272.571,0.05
Argentina - tests performed,ARG,2020-05-04,https://www.argentina.gob.ar/sites/default/files/04-05-20_reporte-matutino-covid-19.pdf,Government of Argentina,,67920,2107,1.503,0.047,2130,0.047,2288.571,0.051
Argentina - tests performed,ARG,2020-05-05,https://www.argentina.gob.ar/sites/default/files/05-05-20_reporte-matutino-covid-19.pdf,Government of Argentina,,69718,1798,1.543,0.04,1950.667,0.043,2302.571,0.051
Argentina - tests performed,ARG,2020-05-06,https://www.argentina.gob.ar/sites/default/files/06-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,72315,2597,1.6,0.057,2167.333,0.048,2322.429,0.051
Argentina - tests performed,ARG,2020-05-07,https://www.argentina.gob.ar/sites/default/files/07-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,75198,2883,1.664,0.064,2426,0.054,2359,0.052
Argentina - tests performed,ARG,2020-05-08,https://www.argentina.gob.ar/sites/default/files/08-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,77901,2703,1.724,0.06,2727.667,0.06,2338.714,0.052
Argentina - tests performed,ARG,2020-05-09,https://www.argentina.gob.ar/sites/default/files/09-05-20_reporte-matutino-covid-19.pdf,Government of Argentina,,80729,2828,1.786,0.063,2804.667,0.062,2409,0.053
Argentina - tests performed,ARG,2020-05-10,https://www.argentina.gob.ar/sites/default/files/10-05-20_reporte-matutino-covid-19.pdf,Government of Argentina,,83018,2289,1.837,0.051,2606.667,0.058,2457.857,0.055
Argentina - tests performed,ARG,2020-05-11,https://www.argentina.gob.ar/sites/default/files/11-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,85158,2140,1.884,0.047,2419,0.054,2462.571,0.055
Argentina - tests performed,ARG,2020-05-12,https://www.argentina.gob.ar/sites/default/files/12-05-20-reporte-matutino-covid-19.pdf,Government of Argentina,,87547,2389,1.937,0.053,2272.667,0.05,2547,0.056
Argentina - tests performed,ARG,2020-05-13,https://www.argentina.gob.ar/sites/default/files/13-05-20_reporte_matutino_covid_19.pdf,Government of Argentina,,90474,2927,2.002,0.065,2485.333,0.055,2594.143,0.058
Argentina - tests performed,ARG,2020-05-14,https://www.argentina.gob.ar/sites/default/files/14-05-20_reporte-matutino-covid-19.pdf,Government of Argentina,,93673,3199,2.073,0.071,2838.333,0.063,2639.286,0.059
Australia - tests performed,AUS,2020-03-22,https://doi.org/10.33321/cdi.2020.44.28,Australian Government Department of Health,,143056,,5.61,,,,,
Australia - tests performed,AUS,2020-03-29,https://doi.org/10.33321/cdi.2020.44.29,Australian Government Department of Health,,211261,,8.285,,,,,
Australia - tests performed,AUS,2020-04-05,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-5-april-2020_0.pdf,Australian Government Department of Health,,297154,,11.653,,,,,
Australia - tests performed,AUS,2020-04-06,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-6-april-2020_0.pdf,Australian Government Department of Health,,302663,5509,11.869,0.216,,,,
Australia - tests performed,AUS,2020-04-07,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-7-april-2020_0.pdf,Australian Government Department of Health,,310700,8037,12.184,0.315,,,,
Australia - tests performed,AUS,2020-04-08,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-8-april-2020_0.pdf,Australian Government Department of Health,,319368,8668,12.524,0.34,7404.667,0.29,,
Australia - tests performed,AUS,2020-04-09,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-9-april-2020_0.pdf,Australian Government Department of Health,,330134,10766,12.946,0.422,9157,0.359,,
Australia - tests performed,AUS,2020-04-10,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-10-april-2020_0.pdf,Australian Government Department of Health,,338346,8212,13.269,0.322,9215.333,0.361,,
Australia - tests performed,AUS,2020-04-11,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-11-april-2020_0.pdf,Australian Government Department of Health,,347847,9501,13.641,0.373,9493,0.372,,
Australia - tests performed,AUS,2020-04-12,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-12-april-2020_0.pdf,Australian Government Department of Health,,353941,6094,13.88,0.239,7935.667,0.311,8112.429,0.318
Australia - tests performed,AUS,2020-04-13,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-13-april-2020_0.pdf,Australian Government Department of Health,,362136,8195,14.201,0.321,7930,0.311,8496.143,0.333
Australia - tests performed,AUS,2020-04-14,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-14-april-2020_0.pdf,Australian Government Department of Health,,366493,4357,14.372,0.171,6215.333,0.244,7970.429,0.313
Australia - tests performed,AUS,2020-04-15,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-15-april-2020_0.pdf,Australian Government Department of Health,,371377,4884,14.564,0.192,5812,0.228,7429.857,0.291
Australia - tests performed,AUS,2020-04-16,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-16-april-2020_0.pdf,Australian Government Department of Health,,380003,8626,14.902,0.338,5955.667,0.234,7124.143,0.279
Australia - tests performed,AUS,2020-04-17,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-17-april-2020_0.pdf,Australian Government Department of Health,,391530,11527,15.354,0.452,8345.667,0.327,7597.714,0.298
Australia - tests performed,AUS,2020-04-18,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-18-april-2020_0.pdf,Australian Government Department of Health,,406510,14980,15.942,0.587,11711,0.459,8380.429,0.329
Australia - tests performed,AUS,2020-04-19,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-19-april-2020_0.pdf,Australian Government Department of Health,,420996,14486,16.51,0.568,13664.333,0.536,9579.286,0.376
Australia - tests performed,AUS,2020-04-20,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-20-april-2020_0.pdf,Australian Government Department of Health,,431734,10738,16.931,0.421,13401.333,0.525,9942.571,0.39
Australia - tests performed,AUS,2020-04-21,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-21-april-2020.pdf,Australian Government Department of Health,,439842,8108,17.249,0.318,11110.667,0.436,10478.429,0.411
Australia - tests performed,AUS,2020-04-22,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-22-april-2020.pdf,Australian Government Department of Health,,452441,12599,17.743,0.494,10481.667,0.411,11580.571,0.454
Australia - tests performed,AUS,2020-04-23,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-23-april-2020.pdf,Australian Government Department of Health,,466659,14218,18.3,0.558,11641.667,0.457,12379.429,0.485
Australia - tests performed,AUS,2020-04-24,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-24-april-2020.pdf,Australian Government Department of Health,,482370,15711,18.917,0.616,14176,0.556,12977.143,0.509
Australia - tests performed,AUS,2020-04-25,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-25-april-2020.pdf,Australian Government Department of Health,,494257,11887,19.383,0.466,13938.667,0.547,12535.286,0.492
Australia - tests performed,AUS,2020-04-26,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-26-april-2020.pdf,Australian Government Department of Health,,506449,12192,19.861,0.478,13263.333,0.52,12207.571,0.479
Australia - tests performed,AUS,2020-04-27,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-27-april-2020.pdf,Australian Government Department of Health,,517063,10614,20.277,0.416,11564.333,0.453,12189.857,0.478
Australia - tests performed,AUS,2020-04-28,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-28-april-2020.pdf,Australian Government Department of Health,,530679,13616,20.811,0.534,12140.667,0.476,12976.714,0.509
Australia - tests performed,AUS,2020-04-29,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-29-april-2020.pdf,Australian Government Department of Health,,544410,13731,21.35,0.538,12653.667,0.496,13138.429,0.515
Australia - tests performed,AUS,2020-04-30,https://www.health.gov.au/sites/default/files/documents/2020/04/coronavirus-covid-19-at-a-glance-30-april-2020.pdf,Australian Government Department of Health,,563641,19231,22.104,0.754,15526,0.609,13854.571,0.543
Australia - tests performed,AUS,2020-05-01,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-1-may-2020.pdf,Australian Government Department of Health,,588868,25227,23.093,0.989,19396.333,0.76,15214,0.596
Australia - tests performed,AUS,2020-05-02,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-2-may-2020.pdf,Australian Government Department of Health,,611583,22715,23.984,0.891,22391,0.878,16760.857,0.657
Australia - tests performed,AUS,2020-05-03,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-3-may-2020.pdf,Australian Government Department of Health,,633107,21524,24.828,0.844,23155.333,0.908,18094,0.709
Australia - tests performed,AUS,2020-05-04,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-4-may-2020.pdf,Australian Government Department of Health,,650214,17107,25.499,0.671,20448.667,0.802,19021.571,0.746
Australia - tests performed,AUS,2020-05-05,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-5-may-2020.pdf,Australian Government Department of Health,,664756,14542,26.069,0.57,17724.333,0.695,19153.857,0.751
Australia - tests performed,AUS,2020-05-06,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-6-may-2020.pdf,Australian Government Department of Health,,688656,23900,27.006,0.937,18516.333,0.726,20606.571,0.808
Australia - tests performed,AUS,2020-05-07,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-7-may-2020.pdf,Australian Government Department of Health,,722549,33893,28.335,1.329,24111.667,0.945,22701.143,0.89
Australia - tests performed,AUS,2020-05-08,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-8-may-2020.pdf,Australian Government Department of Health,,757250,34701,29.696,1.361,30831.333,1.209,24054.571,0.943
Australia - tests performed,AUS,2020-05-09,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-9-may-2020.pdf,Australian Government Department of Health,,795456,38206,31.194,1.498,35600,1.396,26267.571,1.03
Australia - tests performed,AUS,2020-05-10,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-10-may-2020.pdf,Australian Government Department of Health,,827872,32416,32.466,1.271,35107.667,1.377,27823.571,1.091
Australia - tests performed,AUS,2020-05-11,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-11-may-2020.pdf,Australian Government Department of Health,,855119,27247,33.534,1.069,32623,1.279,29272.143,1.148
Australia - tests performed,AUS,2020-05-12,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-12-may-2020.pdf,Australian Government Department of Health,,877927,22808,34.429,0.894,27490.333,1.078,30453,1.194
Australia - tests performed,AUS,2020-05-13,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-13-may-2020.pdf,Australian Government Department of Health,,909025,31098,35.648,1.22,27051,1.061,31481.286,1.235
Australia - tests performed,AUS,2020-05-14,https://www.health.gov.au/sites/default/files/documents/2020/05/coronavirus-covid-19-at-a-glance-14-may-2020.pdf,Australian Government Department of Health,,943480,34455,36.999,1.351,29453.667,1.155,31561.571,1.238
Austria - tests performed,AUT,2020-02-25,https://web.archive.org/web/20200225155838/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,218,,0.024,,,,,
Austria - tests performed,AUT,2020-02-26,https://web.archive.org/web/20200226220729/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,321,103,0.036,0.011,,,,
Austria - tests performed,AUT,2020-02-27,https://web.archive.org/web/20200227163730/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,447,126,0.05,0.014,,,,
Austria - tests performed,AUT,2020-02-28,https://web.archive.org/web/20200228195506/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,763,316,0.085,0.035,181.667,0.02,,
Austria - tests performed,AUT,2020-02-29,https://web.archive.org/web/20200229115109/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,1649,886,0.183,0.098,442.667,0.049,,
Austria - tests performed,AUT,2020-03-03,https://web.archive.org/web/20200303181915/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,2683,,0.298,,,,,
Austria - tests performed,AUT,2020-03-04,https://web.archive.org/web/20200304114837/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,3138,455,0.348,0.051,,,,
Austria - tests performed,AUT,2020-03-05,https://web.archive.org/web/20200305185145/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,3711,573,0.412,0.064,,,,
Austria - tests performed,AUT,2020-03-06,https://web.archive.org/web/20200306150526/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,4000,289,0.444,0.032,439,0.049,,
Austria - tests performed,AUT,2020-03-07,https://web.archive.org/web/20200307223222/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,4308,308,0.478,0.034,390,0.043,,
Austria - tests performed,AUT,2020-03-08,https://web.archive.org/web/20200308131539/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,4509,201,0.501,0.022,266,0.029,,
Austria - tests performed,AUT,2020-03-09,https://web.archive.org/web/20200309184346/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,4734,225,0.526,0.025,244.667,0.027,,
Austria - tests performed,AUT,2020-03-10,https://web.archive.org/web/20200310154703/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,5026,292,0.558,0.032,239.333,0.026,334.714,0.037
Austria - tests performed,AUT,2020-03-11,https://web.archive.org/web/20200311221452/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,5362,336,0.595,0.037,284.333,0.031,317.714,0.035
Austria - tests performed,AUT,2020-03-12,https://web.archive.org/web/20200312220151/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,5869,507,0.652,0.056,378.333,0.042,308.286,0.034
Austria - tests performed,AUT,2020-03-13,https://web.archive.org/web/20200313235350/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,6582,713,0.731,0.079,518.667,0.057,368.857,0.041
Austria - tests performed,AUT,2020-03-14,https://web.archive.org/web/20200314181016/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,7467,885,0.829,0.098,701.667,0.078,451.286,0.05
Austria - tests performed,AUT,2020-03-15,https://web.archive.org/web/20200315214744/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,8167,700,0.907,0.078,766,0.085,522.571,0.058
Austria - tests performed,AUT,2020-03-16,https://web.archive.org/web/20200316173127/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,8490,323,0.943,0.036,636,0.071,536.571,0.059
Austria - tests performed,AUT,2020-03-17,https://web.archive.org/web/20200317175518/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,10278,1788,1.141,0.199,937,0.104,750.286,0.083
Austria - tests performed,AUT,2020-03-18,https://web.archive.org/web/20200318134306/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,11977,1699,1.33,0.189,1270,0.141,945,0.105
Austria - tests performed,AUT,2020-03-19,https://web.archive.org/web/20200319163314/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,13724,1747,1.524,0.194,1744.667,0.194,1122.143,0.125
Austria - tests performed,AUT,2020-03-20,https://web.archive.org/web/20200320214720/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,15613,1889,1.734,0.21,1778.333,0.198,1290.143,0.143
Austria - tests performed,AUT,2020-03-21,https://web.archive.org/web/20200321184107/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,18545,2932,2.059,0.326,2189.333,0.243,1582.571,0.176
Austria - tests performed,AUT,2020-03-22,https://web.archive.org/web/20200322180039/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,21368,2823,2.373,0.313,2548,0.283,1885.857,0.21
Austria - tests performed,AUT,2020-03-23,https://web.archive.org/web/20200323215732/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,23429,2061,2.601,0.229,2605.333,0.289,2134.143,0.237
Austria - tests performed,AUT,2020-03-24,https://web.archive.org/web/20200324180033/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,28391,4962,3.152,0.551,3282,0.364,2587.571,0.287
Austria - tests performed,AUT,2020-03-25,https://web.archive.org/web/20200325185449/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,32407,4016,3.598,0.446,3679.667,0.409,2918.571,0.324
Austria - tests performed,AUT,2020-03-26,https://web.archive.org/web/20200326210712/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,35995,3588,3.997,0.398,4188.667,0.465,3181.571,0.353
Austria - tests performed,AUT,2020-03-27,https://web.archive.org/web/20200327183847/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,39552,3557,4.392,0.395,3720.333,0.413,3419.857,0.38
Austria - tests performed,AUT,2020-03-28,https://web.archive.org/web/20200328180923/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,42750,3198,4.747,0.355,3447.667,0.383,3457.857,0.384
Austria - tests performed,AUT,2020-03-29,https://web.archive.org/web/20200329211228/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,46441,3691,5.156,0.41,3482,0.387,3581.857,0.398
Austria - tests performed,AUT,2020-03-30,https://web.archive.org/web/20200330230033/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,49455,3014,5.491,0.335,3301,0.367,3718,0.413
Austria - tests performed,AUT,2020-03-31,https://web.archive.org/web/20200331230050/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,52344,2889,5.812,0.321,3198,0.355,3421.857,0.38
Austria - tests performed,AUT,2020-04-01,https://web.archive.org/web/20200401230032/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,55863,3519,6.203,0.391,3140.667,0.349,3350.857,0.372
Austria - tests performed,AUT,2020-04-02,https://web.archive.org/web/20200402230039/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,92190,36327,10.236,4.033,14245,1.582,8027.857,0.891
Austria - tests performed,AUT,2020-04-03,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,98343,6153,10.919,0.683,15333,1.702,8398.714,0.933
Austria - tests performed,AUT,2020-04-04,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,104134,5791,11.562,0.643,16090.333,1.786,8769.143,0.974
Austria - tests performed,AUT,2020-04-05,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,108416,4282,12.038,0.475,5408.667,0.6,8853.571,0.983
Austria - tests performed,AUT,2020-04-06,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,111296,2880,12.357,0.32,4317.667,0.479,8834.429,0.981
Austria - tests performed,AUT,2020-04-07,http://web.archive.org/web/20200407160026/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,115235,3939,12.795,0.437,3700.333,0.411,8984.429,0.997
Austria - tests performed,AUT,2020-04-08,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,120755,5520,13.408,0.613,4113,0.457,9270.286,1.029
Austria - tests performed,AUT,2020-04-09,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,126287,5532,14.022,0.614,4997,0.555,4871,0.541
Austria - tests performed,AUT,2020-04-10,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,134743,8456,14.961,0.939,6502.667,0.722,5200,0.577
Austria - tests performed,AUT,2020-04-11,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,140975,6232,15.653,0.692,6740,0.748,5263,0.584
Austria - tests performed,AUT,2020-04-12,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,144877,3902,16.086,0.433,6196.667,0.688,5208.714,0.578
Austria - tests performed,AUT,2020-04-13,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,148412,3535,16.479,0.392,4556.333,0.506,5302.286,0.589
Austria - tests performed,AUT,2020-04-14,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,151796,3384,16.854,0.376,3607,0.4,5223,0.58
Austria - tests performed,AUT,2020-04-15,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,156801,5005,17.41,0.556,3974.667,0.441,5149.429,0.572
Austria - tests performed,AUT,2020-04-16,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,162816,6015,18.078,0.668,4801.333,0.533,5218.429,0.579
Austria - tests performed,AUT,2020-04-17,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,169272,6456,18.795,0.717,5825.333,0.647,4932.714,0.548
Austria - tests performed,AUT,2020-04-18,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,175932,6660,19.534,0.739,6377,0.708,4993.857,0.554
Austria - tests performed,AUT,2020-04-19,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,179243,3311,19.902,0.368,5475.667,0.608,4909.429,0.545
Austria - tests performed,AUT,2020-04-20,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,182949,3706,20.313,0.411,4559,0.506,4933.857,0.548
Austria - tests performed,AUT,2020-04-21,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,189018,6069,20.987,0.674,4362,0.484,5317.429,0.59
Austria - tests performed,AUT,2020-04-22,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,201794,12776,22.406,1.419,7517,0.835,6427.571,0.714
Austria - tests performed,AUT,2020-04-23,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,205835,4041,22.854,0.449,7628.667,0.847,6145.571,0.682
Austria - tests performed,AUT,2020-04-24,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,212686,6851,23.615,0.761,7889.333,0.876,6202,0.689
Austria - tests performed,AUT,2020-04-25,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,221089,8403,24.548,0.933,6431.667,0.714,6451,0.716
Austria - tests performed,AUT,2020-04-26,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,227631,6542,25.274,0.726,7265.333,0.807,6912.571,0.768
Austria - tests performed,AUT,2020-04-27,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,232537,4906,25.819,0.545,6617,0.735,7084,0.787
Austria - tests performed,AUT,2020-04-28,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,239578,7041,26.601,0.782,6163,0.684,7222.857,0.802
Austria - tests performed,AUT,2020-04-29,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,247754,8176,27.509,0.908,6707.667,0.745,6565.714,0.729
Austria - tests performed,AUT,2020-04-30,https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,256399,8645,28.469,0.96,7954,0.883,7223.429,0.802
Austria - tests performed,AUT,2020-05-01,https://web.archive.org/web/20200501145322/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,264079,7680,29.321,0.853,8167,0.907,7341.857,0.815
Austria - tests performed,AUT,2020-05-02,https://web.archive.org/web/20200502151038/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,269619,5540,29.936,0.615,7288.333,0.809,6932.857,0.77
Austria - tests performed,AUT,2020-05-03,https://web.archive.org/web/20200503141230/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,274355,4736,30.462,0.526,5985.333,0.665,6674.857,0.741
Austria - tests performed,AUT,2020-05-04,https://web.archive.org/web/20200504171204/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,279071,4716,30.986,0.524,4997.333,0.555,6647.714,0.738
Austria - tests performed,AUT,2020-05-05,https://web.archive.org/web/20200505202231/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,285883,6812,31.742,0.756,5421.333,0.602,6615,0.735
Austria - tests performed,AUT,2020-05-06,https://web.archive.org/web/20200506175135/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,292254,6371,32.45,0.707,5966.333,0.662,6357.143,0.706
Austria - tests performed,AUT,2020-05-07,https://web.archive.org/web/20200507200249/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,297894,5640,33.076,0.626,6274.333,0.696,5927.857,0.658
Austria - tests performed,AUT,2020-05-08,https://web.archive.org/web/20200508085522/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,304069,6175,33.761,0.686,6062,0.673,5712.857,0.634
Austria - tests performed,AUT,2020-05-09,https://web.archive.org/web/20200509164005/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,311690,7621,34.608,0.846,6478.667,0.719,6010.143,0.667
Austria - tests performed,AUT,2020-05-10,https://web.archive.org/web/20200510104642/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,316508,4818,35.143,0.535,6204.667,0.689,6021.857,0.669
Austria - tests performed,AUT,2020-05-11,https://web.archive.org/web/20200511162510/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,319484,2976,35.473,0.33,5138.333,0.57,5773.286,0.641
Austria - tests performed,AUT,2020-05-12,https://web.archive.org/web/20200512173912/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,329314,9830,36.564,1.091,5874.667,0.652,6204.429,0.689
Austria - tests performed,AUT,2020-05-13,https://web.archive.org/web/20200513185837/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,336252,6938,37.335,0.77,6581.333,0.73,6285.429,0.698
Austria - tests performed,AUT,2020-05-14,https://web.archive.org/web/20200514114502/https://www.sozialministerium.at/Informationen-zum-Coronavirus/Neuartiges-Coronavirus-(2019-nCov).html,Austrian Ministry for Health,,344606,8354,38.262,0.928,8374,0.93,6673.143,0.741
Bahrain - units unclear,BHR,2020-03-05,https://web.archive.org/web/20200305184133/https://www.moh.gov.bh/COVID19,Ministry of Health,,5334,,3.135,,,,,
Bahrain - units unclear,BHR,2020-03-07,https://web.archive.org/web/20200307100426/https://www.moh.gov.bh/COVID19,Ministry of Health,,6420,,3.773,,,,,
Bahrain - units unclear,BHR,2020-03-09,https://web.archive.org/web/20200309183605/https://www.moh.gov.bh/COVID19,Ministry of Health,,7830,,4.602,,,,,
Bahrain - units unclear,BHR,2020-03-10,https://web.archive.org/web/20200310202857/https://www.moh.gov.bh/COVID19,Ministry of Health,,8354,524,4.91,0.308,,,,
Bahrain - units unclear,BHR,2020-03-11,https://web.archive.org/web/20200311221218/https://www.moh.gov.bh/COVID19,Ministry of Health,,8810,456,5.178,0.268,,,,
Bahrain - units unclear,BHR,2020-03-12,https://web.archive.org/web/20200312133620/https://www.moh.gov.bh/COVID19,Ministry of Health,,9042,232,5.314,0.136,404,0.237,,
Bahrain - units unclear,BHR,2020-03-16,https://web.archive.org/web/20200316100532/https://www.moh.gov.bh/COVID19,Ministry of Health,,12131,,7.129,,,,,
Bahrain - units unclear,BHR,2020-03-17,https://web.archive.org/web/20200318092443/https://www.moh.gov.bh/COVID19,Ministry of Health,,13553,1422,7.965,0.836,,,,
Bahrain - units unclear,BHR,2020-03-20,https://web.archive.org/web/20200320214618/https://www.moh.gov.bh/COVID19,Ministry of Health,,19098,,11.224,,,,,
Bahrain - units unclear,BHR,2020-03-23,https://web.archive.org/web/20200323194303/https://www.moh.gov.bh/COVID19,Ministry of Health,,25169,,14.792,,,,,
Bahrain - units unclear,BHR,2020-03-26,https://web.archive.org/web/20200326185742/https://www.moh.gov.bh/COVID19,Ministry of Health,,29533,,17.356,,,,,
Bahrain - units unclear,BHR,2020-03-29,https://web.archive.org/web/20200329223131/https://www.moh.gov.bh/COVID19,Ministry of Health,,31895,,18.744,,,,,
Bahrain - units unclear,BHR,2020-03-30,https://web.archive.org/web/20200330141923/https://www.moh.gov.bh/COVID19,Ministry of Health,,32596,701,19.156,0.412,,,,
Bahrain - units unclear,BHR,2020-04-03,https://www.moh.gov.bh/COVID19,Ministry of Health,,37996,,22.33,,,,,
Bahrain - units unclear,BHR,2020-04-04,https://web.archive.org/web/20200404111105/https://www.moh.gov.bh/COVID19,Ministry of Health,,39256,1260,23.07,0.74,,,,
Bahrain - units unclear,BHR,2020-04-05,https://web.archive.org/web/20200406073159/https://www.moh.gov.bh/COVID19,Ministry of Health,,44386,5130,26.085,3.015,,,,
Bahrain - units unclear,BHR,2020-04-06,https://www.moh.gov.bh/COVID19,Ministry of Health,,47684,3298,28.023,1.938,3229.333,1.898,,
Bahrain - units unclear,BHR,2020-04-07,http://web.archive.org/web/20200407160551/https://www.moh.gov.bh/COVID19,Ministry of Health,As of 5pm local time,50127,2443,29.459,1.436,3623.667,2.13,,
Bahrain - units unclear,BHR,2020-04-08,https://www.moh.gov.bh/COVID19,Ministry of Health,,52804,2677,31.032,1.573,2806,1.649,,
Bahrain - units unclear,BHR,2020-04-09,https://www.moh.gov.bh/COVID19,Ministry of Health,,55096,2292,32.379,1.347,2470.667,1.452,,
Bahrain - units unclear,BHR,2020-04-10,https://www.moh.gov.bh/COVID19,Ministry of Health,,57681,2585,33.898,1.519,2518,1.48,2812.143,1.653
Bahrain - units unclear,BHR,2020-04-11,https://www.moh.gov.bh/COVID19,Ministry of Health,,60706,3025,35.676,1.778,2634,1.548,3064.286,1.801
Bahrain - units unclear,BHR,2020-04-12,https://www.moh.gov.bh/COVID19,Ministry of Health,,63973,3267,37.596,1.92,2959,1.739,2798.143,1.644
Bahrain - units unclear,BHR,2020-04-13,https://www.moh.gov.bh/COVID19,Ministry of Health,,67327,3354,39.567,1.971,3215.333,1.89,2806.143,1.649
Bahrain - units unclear,BHR,2020-04-14,https://www.moh.gov.bh/COVID19,Ministry of Health,,70813,3486,41.616,2.049,3369,1.98,2955.143,1.737
Bahrain - units unclear,BHR,2020-04-15,https://www.moh.gov.bh/COVID19,Ministry of Health,,73272,2459,43.061,1.445,3099.667,1.822,2924,1.718
Bahrain - units unclear,BHR,2020-04-16,https://www.moh.gov.bh/COVID19,Ministry of Health,,76944,3672,45.219,2.158,3205.667,1.884,3121.143,1.834
Bahrain - units unclear,BHR,2020-04-17,https://www.moh.gov.bh/COVID19,Ministry of Health,,79612,2668,46.787,1.568,2933,1.724,3133,1.841
Bahrain - units unclear,BHR,2020-04-18,https://www.moh.gov.bh/COVID19,Ministry of Health,,82568,2956,48.524,1.737,3098.667,1.821,3123.143,1.835
Bahrain - units unclear,BHR,2020-04-19,https://www.moh.gov.bh/COVID19,Ministry of Health,,86732,4164,50.971,2.447,3262.667,1.917,3251.286,1.911
Bahrain - units unclear,BHR,2020-04-20,https://www.moh.gov.bh/COVID19,Ministry of Health,,90307,3575,53.072,2.101,3565,2.095,3282.857,1.929
Bahrain - units unclear,BHR,2020-04-21,https://www.moh.gov.bh/COVID19,Ministry of Health,,94380,4073,55.466,2.394,3937.333,2.314,3366.714,1.979
Bahrain - units unclear,BHR,2020-04-22,https://www.moh.gov.bh/COVID19,Ministry of Health,,97796,3416,57.474,2.008,3688,2.168,3503.429,2.059
Bahrain - units unclear,BHR,2020-04-23,https://www.moh.gov.bh/COVID19,Ministry of Health,,100031,2235,58.787,1.313,3241.333,1.905,3298.143,1.938
Bahrain - units unclear,BHR,2020-04-24,https://www.moh.gov.bh/COVID19,Ministry of Health,,105365,5334,61.922,3.135,3661.667,2.152,3679,2.162
Bahrain - units unclear,BHR,2020-04-25,https://www.moh.gov.bh/COVID19,Ministry of Health,,110407,5042,64.885,2.963,4203.667,2.47,3977,2.337
Bahrain - units unclear,BHR,2020-04-26,https://www.moh.gov.bh/COVID19,Ministry of Health,,114110,3703,67.061,2.176,4693,2.758,3911.143,2.299
Bahrain - units unclear,BHR,2020-04-27,https://www.moh.gov.bh/COVID19,Ministry of Health,,117797,3687,69.228,2.167,4144,2.435,3927.143,2.308
Bahrain - units unclear,BHR,2020-04-28,https://www.moh.gov.bh/COVID19,Ministry of Health,,121706,3909,71.525,2.297,3766.333,2.213,3903.714,2.294
Bahrain - units unclear,BHR,2020-04-29,https://www.moh.gov.bh/COVID19,Ministry of Health,,126905,5199,74.581,3.055,4265,2.506,4158.429,2.444
Bahrain - units unclear,BHR,2020-04-30,https://www.moh.gov.bh/COVID19,Ministry of Health,,129694,2789,76.22,1.639,3965.667,2.33,4237.571,2.49
Bahrain - units unclear,BHR,2020-05-01,https://web.archive.org/web/20200501145324/https://www.moh.gov.bh/COVID19,Ministry of Health,,134082,4388,78.798,2.579,4125.333,2.424,4102.429,2.411
Bahrain - units unclear,BHR,2020-05-02,https://web.archive.org/web/20200502151040/https://www.moh.gov.bh/COVID19,Ministry of Health,,138278,4196,81.264,2.466,3791,2.228,3981.571,2.34
Bahrain - units unclear,BHR,2020-05-03,https://web.archive.org/web/20200503200101/https://www.moh.gov.bh/COVID19,Ministry of Health,,144155,5877,84.718,3.454,4820.333,2.833,4292.143,2.522
Bahrain - units unclear,BHR,2020-05-04,https://web.archive.org/web/20200504191152/https://www.moh.gov.bh/COVID19,Ministry of Health,,149586,5431,87.91,3.192,5168,3.037,4541.286,2.669
Bahrain - units unclear,BHR,2020-05-05,https://web.archive.org/web/20200505202234/https://www.moh.gov.bh/COVID19,Ministry of Health,,155501,5915,91.386,3.476,5741,3.374,4827.857,2.837
Bahrain - units unclear,BHR,2020-05-06,https://web.archive.org/web/20200506175139/https://www.moh.gov.bh/COVID19,Ministry of Health,,160341,4840,94.23,2.844,5395.333,3.171,4776.571,2.807
Bahrain - units unclear,BHR,2020-05-07,https://web.archive.org/web/20200507200252/https://www.moh.gov.bh/COVID19,Ministry of Health,,166378,6037,97.778,3.548,5597.333,3.289,5240.571,3.08
Bahrain - units unclear,BHR,2020-05-08,https://web.archive.org/web/20200508200339/https://www.moh.gov.bh/COVID19,Ministry of Health,,172158,5780,101.175,3.397,5552.333,3.263,5439.429,3.197
Bahrain - units unclear,BHR,2020-05-09,https://web.archive.org/web/20200509192849/https://www.moh.gov.bh/COVID19,Ministry of Health,,178353,6195,104.816,3.641,6004,3.529,5725,3.365
Bahrain - units unclear,BHR,2020-05-10,https://web.archive.org/web/20200510202938/https://www.moh.gov.bh/COVID19,Ministry of Health,,184029,5676,108.152,3.336,5883.667,3.458,5696.286,3.348
Bahrain - units unclear,BHR,2020-05-11,https://web.archive.org/web/20200511231211/https://www.moh.gov.bh/COVID19,Ministry of Health,,190780,6751,112.119,3.967,6207.333,3.648,5884.857,3.458
Bahrain - units unclear,BHR,2020-05-12,https://web.archive.org/web/20200512173915/https://www.moh.gov.bh/COVID19,Ministry of Health,,197898,7118,116.302,4.183,6515,3.829,6056.714,3.559
Bahrain - units unclear,BHR,2020-05-13,https://web.archive.org/web/20200513185841/https://www.moh.gov.bh/COVID19,Ministry of Health,,205570,7672,120.811,4.509,7180.333,4.22,6461.286,3.797
Bahrain - units unclear,BHR,2020-05-14,https://web.archive.org/web/20200514195100/https://www.moh.gov.bh/COVID19,Ministry of Health,,211127,5557,124.077,3.266,6782.333,3.986,6392.714,3.757
Bangladesh - samples tested,BGD,2020-03-04,https://covid19.cramstack.com/,Government of Bangladesh,,108,,0.001,,,,,
Bangladesh - samples tested,BGD,2020-03-05,https://covid19.cramstack.com/,Government of Bangladesh,,111,3,0.001,0,,,,
Bangladesh - samples tested,BGD,2020-03-07,https://covid19.cramstack.com/,Government of Bangladesh,,120,,0.001,,,,,
Bangladesh - samples tested,BGD,2020-03-08,https://covid19.cramstack.com/,Government of Bangladesh,,127,7,0.001,0,,,,
Bangladesh - samples tested,BGD,2020-03-09,https://covid19.cramstack.com/,Government of Bangladesh,,137,10,0.001,0,,,,
Bangladesh - samples tested,BGD,2020-03-10,https://covid19.cramstack.com/,Government of Bangladesh,,147,10,0.001,0,9,0,,
Bangladesh - samples tested,BGD,2020-03-11,https://covid19.cramstack.com/,Government of Bangladesh,,163,16,0.001,0,12,0,,
Bangladesh - samples tested,BGD,2020-03-12,https://covid19.cramstack.com/,Government of Bangladesh,,187,24,0.001,0,16.667,0,,
Bangladesh - samples tested,BGD,2020-03-13,https://covid19.cramstack.com/,Government of Bangladesh,,211,24,0.001,0,21.333,0,,
Bangladesh - samples tested,BGD,2020-03-14,https://covid19.cramstack.com/,Government of Bangladesh,,241,30,0.001,0,26,0,17.286,0
Bangladesh - samples tested,BGD,2020-03-15,https://covid19.cramstack.com/,Government of Bangladesh,,268,27,0.002,0,27,0,20.143,0
Bangladesh - samples tested,BGD,2020-03-16,https://covid19.cramstack.com/,Government of Bangladesh,,293,25,0.002,0,27.333,0,22.286,0
Bangladesh - samples tested,BGD,2020-03-17,https://covid19.cramstack.com/,Government of Bangladesh,,342,49,0.002,0,33.667,0,27.857,0
Bangladesh - samples tested,BGD,2020-03-18,https://covid19.cramstack.com/,Government of Bangladesh,,381,39,0.002,0,37.667,0,31.143,0
Bangladesh - samples tested,BGD,2020-03-19,https://covid19.cramstack.com/,Government of Bangladesh,,427,46,0.003,0,44.667,0,34.286,0
Bangladesh - samples tested,BGD,2020-03-20,https://covid19.cramstack.com/,Government of Bangladesh,,463,36,0.003,0,40.333,0,36,0
Bangladesh - samples tested,BGD,2020-03-21,https://covid19.cramstack.com/,Government of Bangladesh,,499,36,0.003,0,39.333,0,36.857,0
Bangladesh - samples tested,BGD,2020-03-22,https://covid19.cramstack.com/,Government of Bangladesh,,564,65,0.003,0,45.667,0,42.286,0
Bangladesh - samples tested,BGD,2020-03-23,https://covid19.cramstack.com/,Government of Bangladesh,,620,56,0.004,0,52.333,0,46.714,0
Bangladesh - samples tested,BGD,2020-03-24,https://covid19.cramstack.com/,Government of Bangladesh,,712,92,0.004,0.001,71,0,52.857,0
Bangladesh - samples tested,BGD,2020-03-25,https://covid19.cramstack.com/,Government of Bangladesh,,794,82,0.005,0,76.667,0,59,0
Bangladesh - samples tested,BGD,2020-03-26,https://covid19.cramstack.com/,Government of Bangladesh,,920,126,0.006,0.001,100,0.001,70.429,0
Bangladesh - samples tested,BGD,2020-03-27,https://covid19.cramstack.com/,Government of Bangladesh,,1026,106,0.006,0.001,104.667,0.001,80.429,0
Bangladesh - samples tested,BGD,2020-03-28,https://covid19.cramstack.com/,Government of Bangladesh,,1076,50,0.007,0,94,0.001,82.429,0
Bangladesh - samples tested,BGD,2020-03-29,https://covid19.cramstack.com/,Government of Bangladesh,,1185,109,0.007,0.001,88.333,0.001,88.714,0.001
Bangladesh - samples tested,BGD,2020-03-30,https://covid19.cramstack.com/,Government of Bangladesh,,1338,153,0.008,0.001,104,0.001,102.571,0.001
Bangladesh - samples tested,BGD,2020-03-31,https://covid19.cramstack.com/,Government of Bangladesh,,1602,264,0.01,0.002,175.333,0.001,127.143,0.001
Bangladesh - samples tested,BGD,2020-04-01,https://covid19.cramstack.com/,Government of Bangladesh,,1759,157,0.011,0.001,191.333,0.001,137.857,0.001
Bangladesh - samples tested,BGD,2020-04-02,https://covid19.cramstack.com/,Government of Bangladesh,,1906,147,0.012,0.001,189.333,0.001,140.857,0.001
Bangladesh - samples tested,BGD,2020-04-03,https://covid19.cramstack.com/,Government of Bangladesh,,2113,207,0.013,0.001,170.333,0.001,155.286,0.001
Bangladesh - samples tested,BGD,2020-04-04,https://covid19.cramstack.com/,Government of Bangladesh,,2547,434,0.015,0.003,262.667,0.002,210.143,0.001
Bangladesh - samples tested,BGD,2020-04-05,https://covid19.cramstack.com/,Government of Bangladesh,,2914,367,0.018,0.002,336,0.002,247,0.002
Bangladesh - samples tested,BGD,2020-04-06,https://covid19.cramstack.com/,Government of Bangladesh,,3610,696,0.022,0.004,499,0.003,324.571,0.002
Bangladesh - samples tested,BGD,2020-04-07,https://covid19.cramstack.com/,Government of Bangladesh,,4402,792,0.027,0.005,618.333,0.004,400,0.002
Bangladesh - samples tested,BGD,2020-04-08,https://covid19.cramstack.com/,Government of Bangladesh,,5383,981,0.033,0.006,823,0.005,517.714,0.003
Bangladesh - samples tested,BGD,2020-04-09,https://covid19.cramstack.com/,Government of Bangladesh,,6480,1097,0.039,0.007,956.667,0.006,653.429,0.004
Bangladesh - samples tested,BGD,2020-04-10,https://covid19.cramstack.com/,Government of Bangladesh,,7664,1184,0.047,0.007,1087.333,0.007,793,0.005
Bangladesh - samples tested,BGD,2020-04-11,https://covid19.cramstack.com/,Government of Bangladesh,,8313,649,0.05,0.004,976.667,0.006,823.714,0.005
Bangladesh - samples tested,BGD,2020-04-12,https://covid19.cramstack.com/,Government of Bangladesh,,9653,1340,0.059,0.008,1057.667,0.006,962.714,0.006
Bangladesh - samples tested,BGD,2020-04-13,https://covid19.cramstack.com/,Government of Bangladesh,,11223,1570,0.068,0.01,1186.333,0.007,1087.571,0.007
Bangladesh - samples tested,BGD,2020-04-14,https://covid19.cramstack.com/,Government of Bangladesh,,13128,1905,0.08,0.012,1605,0.01,1246.571,0.008
Bangladesh - samples tested,BGD,2020-04-15,https://covid19.cramstack.com/,Government of Bangladesh,,14868,1740,0.09,0.011,1738.333,0.011,1355,0.008
Bangladesh - samples tested,BGD,2020-04-16,https://covid19.cramstack.com/,Government of Bangladesh,,17003,2135,0.103,0.013,1926.667,0.012,1503.286,0.009
Bangladesh - samples tested,BGD,2020-04-17,https://covid19.cramstack.com/,Government of Bangladesh,,19193,2190,0.117,0.013,2021.667,0.012,1647,0.01
Bangladesh - samples tested,BGD,2020-04-18,https://covid19.cramstack.com/,Government of Bangladesh,,21307,2114,0.129,0.013,2146.333,0.013,1856.286,0.011
Bangladesh - samples tested,BGD,2020-04-19,https://covid19.cramstack.com/,Government of Bangladesh,,23941,2634,0.145,0.016,2312.667,0.014,2041.143,0.013
Bangladesh - samples tested,BGD,2020-04-20,https://covid19.cramstack.com/,Government of Bangladesh,,26604,2663,0.162,0.016,2470.333,0.015,2197.286,0.013
Bangladesh - samples tested,BGD,2020-04-21,https://covid19.cramstack.com/,Government of Bangladesh,,29578,2974,0.18,0.018,2757,0.017,2350,0.014
Bangladesh - samples tested,BGD,2020-04-22,https://covid19.cramstack.com/,Government of Bangladesh,,32674,3096,0.198,0.019,2911,0.018,2543.714,0.015
Bangladesh - samples tested,BGD,2020-04-23,https://covid19.cramstack.com/,Government of Bangladesh,,36090,3416,0.219,0.021,3162,0.019,2726.714,0.017
Bangladesh - samples tested,BGD,2020-04-24,https://covid19.cramstack.com/,Government of Bangladesh,,39776,3686,0.242,0.022,3399.333,0.021,2940.429,0.018
Bangladesh - samples tested,BGD,2020-04-25,https://covid19.cramstack.com/,Government of Bangladesh,,43012,3236,0.261,0.02,3446,0.021,3100.714,0.019
Bangladesh - samples tested,BGD,2020-04-26,https://covid19.cramstack.com/,Government of Bangladesh,,46485,3473,0.282,0.021,3465,0.021,3220.571,0.02
Bangladesh - samples tested,BGD,2020-04-27,https://covid19.cramstack.com/,Government of Bangladesh,,50297,3812,0.305,0.023,3507,0.021,3384.714,0.021
Bangladesh - samples tested,BGD,2020-04-28,https://covid19.cramstack.com/,Government of Bangladesh,,54733,4436,0.332,0.027,3907,0.024,3593.571,0.022
Bangladesh - samples tested,BGD,2020-04-29,https://covid19.cramstack.com/,Government of Bangladesh,,59701,4968,0.363,0.03,4405.333,0.027,3861,0.023
Bangladesh - samples tested,BGD,2020-04-30,https://covid19.cramstack.com/,Government of Bangladesh,,64666,4965,0.393,0.03,4789.667,0.029,4082.286,0.025
Bangladesh - samples tested,BGD,2020-05-01,https://covid19.cramstack.com/,Government of Bangladesh,,70239,5573,0.426,0.034,5168.667,0.031,4351.857,0.026
Bangladesh - samples tested,BGD,2020-05-02,https://covid19.cramstack.com/,Government of Bangladesh,,76066,5827,0.462,0.035,5455,0.033,4722,0.029
Bangladesh - samples tested,BGD,2020-05-03,https://covid19.cramstack.com/,Government of Bangladesh,,81454,5388,0.495,0.033,5596,0.034,4995.571,0.03
Bangladesh - samples tested,BGD,2020-05-04,https://covid19.cramstack.com/,Government of Bangladesh,,87698,6244,0.533,0.038,5819.667,0.035,5343,0.032
Bangladesh - samples tested,BGD,2020-05-05,https://covid19.cramstack.com/,Government of Bangladesh,,93403,5705,0.567,0.035,5779,0.035,5524.286,0.034
Bangladesh - samples tested,BGD,2020-05-06,https://covid19.cramstack.com/,Government of Bangladesh,,99644,6241,0.605,0.038,6063.333,0.037,5706.143,0.035
Bangladesh - samples tested,BGD,2020-05-07,https://covid19.cramstack.com/,Government of Bangladesh,,105511,5867,0.641,0.036,5937.667,0.036,5835,0.036
Bangladesh - samples tested,BGD,2020-05-08,https://covid19.cramstack.com/,Government of Bangladesh,,111454,5943,0.677,0.036,6017,0.037,5887.857,0.036
Bangladesh - samples tested,BGD,2020-05-09,https://covid19.cramstack.com/,Government of Bangladesh,,116919,5465,0.71,0.033,5758.333,0.035,5836.143,0.036
Bangladesh - samples tested,BGD,2020-05-10,https://covid19.cramstack.com/,Government of Bangladesh,,122657,5738,0.745,0.035,5715.333,0.035,5886.143,0.036
Bangladesh - samples tested,BGD,2020-05-11,https://covid19.cramstack.com/,Government of Bangladesh,,129865,7208,0.789,0.044,6137,0.037,6023.857,0.037
Bangladesh - samples tested,BGD,2020-05-12,https://covid19.cramstack.com/,Government of Bangladesh,,136638,6773,0.83,0.041,6573,0.04,6176.429,0.038
Bangladesh - samples tested,BGD,2020-05-13,https://covid19.cramstack.com/,Government of Bangladesh,,144538,7900,0.878,0.048,7293.667,0.044,6413.429,0.039
Bangladesh - samples tested,BGD,2020-05-14,https://covid19.cramstack.com/,Government of Bangladesh,,151930,7392,0.923,0.045,7355,0.045,6631.286,0.04
Belarus - tests performed,BLR,2020-03-03,http://web.archive.org/web/20200428155522/http://minzdrav.gov.by/ru/sobytiya/o-rezultatakh-testirovaniya-patsientov-na-koronavirus/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...the RSPC laboratory conducted more than 5 thousand tests.,5000,,0.529,,,,,
Belarus - tests performed,BLR,2020-03-12,http://web.archive.org/web/20200428155050/http://minzdrav.gov.by/ru/sobytiya/o-laboratornom-kontrole-grazhdan-po-covid19/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...the RPRC of Epidemiology and Microbiology has already conducted more than 10.5 thousand tests for COVID-19.,10500,,1.111,,,,,
Belarus - tests performed,BLR,2020-03-16,http://web.archive.org/web/20200428154909/http://minzdrav.gov.by/ru/sobytiya/covid-19-o-sostoyanii-patsientov/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...specialists from the RPRC of Epidemiology and Microbiology have already conducted more than 16 thousand tests for COVID-19.,16000,,1.693,,,,,
Belarus - tests performed,BLR,2020-03-20,http://web.archive.org/web/20200428154904/http://minzdrav.gov.by/ru/sobytiya/o-situatsii-po-covid-19/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...more than 19 thousand people were examined for COVID-19 infection.,19000,,2.011,,,,,
Belarus - tests performed,BLR,2020-03-30,http://web.archive.org/web/20200428154055/http://minzdrav.gov.by/ru/sobytiya/o-situatsii-s-covid-19-v-belarusi/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...more than 30 thousand tests for coronavirus infection have been carried out.,30000,,3.175,,,,,
Belarus - tests performed,BLR,2020-03-31,http://web.archive.org/web/20200428154616/http://minzdrav.gov.by/ru/sobytiya/o-situatsii-s-covid-19-v-belarusi-31.03/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...more than 31 thousand tests for coronavirus infection have been carried out.,31000,1000,3.281,0.106,,,,
Belarus - tests performed,BLR,2020-04-01,http://web.archive.org/web/20200428154311/http://minzdrav.gov.by/ru/sobytiya/o-situatsii-s-covid-19-v-respublike-belarus/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ... over 32 thousand tests for coronavirus infection have been carried out in Belarus.,32000,1000,3.386,0.106,,,,
Belarus - tests performed,BLR,2020-04-06,http://web.archive.org/web/20200428153906/http://minzdrav.gov.by/ru/sobytiya/o-situatsii-s-covid-19-v-belarusi-na-6-aprelya/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...more than 40 thousand tests for coronavirus infection were carried out in Belarus.,40000,,4.233,,,,,
Belarus - tests performed,BLR,2020-04-08,http://web.archive.org/web/20200428153431/http://minzdrav.gov.by/ru/sobytiya/belarus-situatsiya-s-covid-19/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...about 46 thousand tests for coronavirus infection were carried out in Belarus.,46000,,4.868,,,,,
Belarus - tests performed,BLR,2020-04-09,http://web.archive.org/web/20200428154020/http://minzdrav.gov.by/ru/sobytiya/v-provedenii-testirovaniya-prinimayut-uchastie-14-laboratoriy/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...over 49 thousand tests for coronavirus infection have been carried out in Belarus.,49000,3000,5.186,0.317,,,,
Belarus - tests performed,BLR,2020-04-12,https://t.me/minzdravbelarus/374,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...more than 64 thousand were carried out in Belarus for coronavirus infection.,64000,,6.773,,,,,
Belarus - tests performed,BLR,2020-04-13,https://t.me/minzdravbelarus/381,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...almost 68 thousand tests for coronavirus infection were carried out in Belarus.,68000,4000,7.196,0.423,,,,
Belarus - tests performed,BLR,2020-04-14,http://web.archive.org/web/20200421134959/http://minzdrav.gov.by/ru/sobytiya/dlya-provedeniya-testirovaniya-covid-19-zadeystvovano-17-laboratoriy/,Belarus Ministry of Health,,71875,3875,7.606,0.41,,,,
Belarus - tests performed,BLR,2020-04-15,https://t.me/minzdravbelarus/426,Belarus Ministry of Health,,76198,4323,8.064,0.457,4066,0.43,,
Belarus - tests performed,BLR,2020-04-17,https://t.me/minzdravbelarus/475,Belarus Ministry of Health,,86813,,9.187,,,,,
Belarus - tests performed,BLR,2020-04-18,https://t.me/minzdravbelarus/496,Belarus Ministry of Health,,92709,5896,9.811,0.624,,,,
Belarus - tests performed,BLR,2020-04-19,https://t.me/minzdravbelarus/500,Belarus Ministry of Health,,98231,5522,10.396,0.584,,,,
Belarus - tests performed,BLR,2020-04-20,http://web.archive.org/web/20200421134557/http://minzdrav.gov.by/ru/sobytiya/covid-19-statistika-ministerstva-zdravookhraneniya/,Belarus Ministry of Health,,102566,4335,10.854,0.459,5251,0.556,,
Belarus - tests performed,BLR,2020-04-21,http://web.archive.org/web/20200428152406/http://minzdrav.gov.by/ru/sobytiya/statistika-ministerstva-zdravookhraneniya-covid-19/,Belarus Ministry of Health,,108545,5979,11.487,0.633,5278.667,0.559,,
Belarus - tests performed,BLR,2020-04-22,http://web.archive.org/web/20200428152326/http://minzdrav.gov.by/ru/sobytiya/na-22-aprelya-vyzdoroveli-i-vypisany-769-patsientov/,Belarus Ministry of Health,,114955,6410,12.165,0.678,5574.667,0.59,,
Belarus - tests performed,BLR,2020-04-23,http://web.archive.org/web/20200428151814/http://minzdrav.gov.by/ru/sobytiya/vsego-provedeno-122-tys-543-testa-na-covid-19/,Belarus Ministry of Health,,122543,7588,12.968,0.803,6659,0.705,,
Belarus - tests performed,BLR,2020-04-24,http://web.archive.org/web/20200428152115/http://minzdrav.gov.by/ru/sobytiya/v-belarusi-vyzdoroveli-i-vypisany-1120-patsientov/,Belarus Ministry of Health,,130824,8281,13.845,0.876,7426.333,0.786,6287.286,0.665
Belarus - tests performed,BLR,2020-04-25,http://web.archive.org/web/20200428151414/http://minzdrav.gov.by/ru/sobytiya/u-belarusi-na-25-krasavika-vypisany-1573-patsyenta/,Belarus Ministry of Health,,139295,8471,14.741,0.896,8113.333,0.858,6655.143,0.704
Belarus - tests performed,BLR,2020-04-26,http://web.archive.org/web/20200428151203/http://minzdrav.gov.by/ru/sobytiya/u-belarusi-na-26-krasavika-vypisany-1695-patsyenta/,Belarus Ministry of Health,,147525,8230,15.612,0.871,8327.333,0.881,7042,0.745
Belarus - tests performed,BLR,2020-04-27,http://web.archive.org/web/20200428151053/http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-27-aprelya-vyzdoroveli-i-vypisany-1740-patsientov/,Belarus Ministry of Health,This is an imprecise figure: the press release reports that ...more than 153.8 thousand tests were conducted.,153800,6275,16.276,0.664,7658.667,0.81,7319.143,0.774
Belarus - tests performed,BLR,2020-04-28,http://minzdrav.gov.by/ru/sobytiya/u-belarusi-na-28-krasavika-vypisanyya-1993-patsyenta/,Belarus Ministry of Health,,161028,7228,17.041,0.765,7244.333,0.767,7497.571,0.793
Belarus - tests performed,BLR,2020-04-29,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-vyzdoroveli-i-vypisany-2072-patsienta/,Belarus Ministry of Health,,168986,7958,17.883,0.842,7153.667,0.757,7718.714,0.817
Belarus - tests performed,BLR,2020-04-30,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-vyzdoroveli-i-vypisany-2386-patsientov/,Belarus Ministry of Health,,176625,7639,18.692,0.808,7608.333,0.805,7726,0.817
Belarus - tests performed,BLR,2020-05-01,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-vyzdoroveli-i-vypisany-2918-patsientov/,Belarus Ministry of Health,,186262,9637,19.712,1.02,8411.333,0.89,7919.714,0.838
Belarus - tests performed,BLR,2020-05-02,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-2-maya-vyzdoroveli-i-vypisany-3117-patsientov/,Belarus Ministry of Health,,195430,9168,20.682,0.97,8814.667,0.933,8019.286,0.849
Belarus - tests performed,BLR,2020-05-03,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-3-maya-vyzdoroveli-i-vypisany-3196-patsientov/,Belarus Ministry of Health,,204239,8809,21.614,0.932,9204.667,0.974,8102,0.857
Belarus - tests performed,BLR,2020-05-04,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-4-maya-vyzdoroveli-i-vypisany-3259-patsientov/,Belarus Ministry of Health,,211369,7130,22.369,0.755,8369,0.886,8224.143,0.87
Belarus - tests performed,BLR,2020-05-07,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-7-maya-vyzdoroveli-i-vypisany-5067-patsientov/,Belarus Ministry of Health,,229466,,24.284,,,,,
Belarus - tests performed,BLR,2020-05-08,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-8-maya-vyzdoroveli-i-vypisany-5-tys-484-patsienta/,Belarus Ministry of Health,,240146,10680,25.414,1.13,,,,
Belarus - tests performed,BLR,2020-05-09,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-9-maya-vyzdoroveli-i-vypisany-6050-patsientov/,Belarus Ministry of Health,,251771,11625,26.644,1.23,,,,
Belarus - tests performed,BLR,2020-05-10,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-10-maya-vyzdoroveli-i-vypisany-6406-patsientov/,Belarus Ministry of Health,,263543,11772,27.89,1.246,11359,1.202,,
Belarus - tests performed,BLR,2020-05-11,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-vyzdoroveli-i-vypisany-6-tys-531-patsient/,Belarus Ministry of Health,,274060,10517,29.003,1.113,11304.667,1.196,,
Belarus - tests performed,BLR,2020-05-12,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-vyzdoroveli-i-vypisany-6-tys-974-patsienta/,Belarus Ministry of Health,,284445,10385,30.102,1.099,10891.333,1.153,,
Belarus - tests performed,BLR,2020-05-13,http://minzdrav.gov.by/ru/sobytiya/v-belarusi-na-13-maya-vyzdoroveli-i-vypisany-7711-patsientov/,Belarus Ministry of Health,,296380,11935,31.365,1.263,10945.667,1.158,,
Belgium - units unclear,BEL,2020-03-01,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,56,56,0.005,0.005,,,,
Belgium - units unclear,BEL,2020-03-02,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,330,274,0.028,0.024,,,,
Belgium - units unclear,BEL,2020-03-03,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,804,474,0.069,0.041,268,0.023,,
Belgium - units unclear,BEL,2020-03-04,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,1456,652,0.126,0.056,466.667,0.04,,
Belgium - units unclear,BEL,2020-03-05,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,2161,705,0.186,0.061,610.333,0.053,,
Belgium - units unclear,BEL,2020-03-06,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,3189,1028,0.275,0.089,795,0.069,,
Belgium - units unclear,BEL,2020-03-07,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,3594,405,0.31,0.035,712.667,0.062,513.429,0.044
Belgium - units unclear,BEL,2020-03-08,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,4011,417,0.346,0.036,616.667,0.053,565,0.049
Belgium - units unclear,BEL,2020-03-09,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,4530,519,0.391,0.045,447,0.039,600,0.052
Belgium - units unclear,BEL,2020-03-10,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,5225,695,0.451,0.06,543.667,0.047,631.571,0.055
Belgium - units unclear,BEL,2020-03-11,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,6156,931,0.531,0.08,715,0.062,671.429,0.058
Belgium - units unclear,BEL,2020-03-12,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,7462,1306,0.644,0.113,977.333,0.084,757.286,0.065
Belgium - units unclear,BEL,2020-03-13,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,9628,2166,0.831,0.187,1467.667,0.127,919.857,0.079
Belgium - units unclear,BEL,2020-03-14,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,11422,1794,0.986,0.155,1755.333,0.152,1118.286,0.097
Belgium - units unclear,BEL,2020-03-15,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,12486,1064,1.077,0.092,1674.667,0.145,1210.714,0.105
Belgium - units unclear,BEL,2020-03-16,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,13979,1493,1.206,0.129,1450.333,0.125,1349.857,0.117
Belgium - units unclear,BEL,2020-03-17,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,15809,1830,1.364,0.158,1462.333,0.126,1512,0.131
Belgium - units unclear,BEL,2020-03-18,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,17958,2149,1.549,0.185,1824,0.157,1686,0.146
Belgium - units unclear,BEL,2020-03-19,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,20549,2591,1.773,0.224,2190,0.189,1869.571,0.161
Belgium - units unclear,BEL,2020-03-20,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,23070,2521,1.991,0.218,2420.333,0.209,1920.286,0.166
Belgium - units unclear,BEL,2020-03-21,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,24872,1802,2.146,0.155,2304.667,0.199,1921.429,0.166
Belgium - units unclear,BEL,2020-03-22,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,25976,1104,2.241,0.095,1809,0.156,1927.143,0.166
Belgium - units unclear,BEL,2020-03-23,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,28470,2494,2.457,0.215,1800,0.155,2070.143,0.179
Belgium - units unclear,BEL,2020-03-24,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,31503,3033,2.718,0.262,2210.333,0.191,2242,0.193
Belgium - units unclear,BEL,2020-03-25,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,34843,3340,3.006,0.288,2955.667,0.255,2412.143,0.208
Belgium - units unclear,BEL,2020-03-26,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,38050,3207,3.283,0.277,3193.333,0.276,2500.143,0.216
Belgium - units unclear,BEL,2020-03-27,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,41820,3770,3.608,0.325,3439,0.297,2678.571,0.231
Belgium - units unclear,BEL,2020-03-28,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,44793,2973,3.865,0.257,3316.667,0.286,2845.857,0.246
Belgium - units unclear,BEL,2020-03-29,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,46666,1873,4.027,0.162,2872,0.248,2955.714,0.255
Belgium - units unclear,BEL,2020-03-30,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,49743,3077,4.292,0.265,2641,0.228,3039,0.262
Belgium - units unclear,BEL,2020-03-31,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,54498,4755,4.702,0.41,3235,0.279,3285,0.283
Belgium - units unclear,BEL,2020-04-01,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,58696,4198,5.065,0.362,4010,0.346,3407.571,0.294
Belgium - units unclear,BEL,2020-04-02,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,63019,4323,5.438,0.373,4425.333,0.382,3567,0.308
Belgium - units unclear,BEL,2020-04-03,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,67625,4606,5.835,0.397,4375.667,0.377,3686.429,0.318
Belgium - units unclear,BEL,2020-04-04,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,71449,3824,6.165,0.33,4251,0.367,3808,0.328
Belgium - units unclear,BEL,2020-04-05,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,73784,2335,6.366,0.201,3588.333,0.309,3874,0.334
Belgium - units unclear,BEL,2020-04-06,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,77683,3899,6.703,0.336,3352.667,0.289,3991.429,0.344
Belgium - units unclear,BEL,2020-04-07,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,82828,5145,7.147,0.444,3793,0.327,4047.143,0.349
Belgium - units unclear,BEL,2020-04-08,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,88021,5193,7.595,0.448,4745.667,0.409,4189.286,0.361
Belgium - units unclear,BEL,2020-04-09,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,93226,5205,8.044,0.449,5181,0.447,4315.286,0.372
Belgium - units unclear,BEL,2020-04-10,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,98978,5752,8.54,0.496,5383.333,0.464,4479,0.386
Belgium - units unclear,BEL,2020-04-11,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,104915,5937,9.053,0.512,5631.333,0.486,4780.857,0.412
Belgium - units unclear,BEL,2020-04-12,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,110505,5590,9.535,0.482,5759.667,0.497,5245.857,0.452
Belgium - units unclear,BEL,2020-04-13,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,115727,5222,9.985,0.451,5583,0.482,5434.857,0.469
Belgium - units unclear,BEL,2020-04-14,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,121399,5672,10.475,0.489,5494.667,0.474,5510.143,0.475
Belgium - units unclear,BEL,2020-04-15,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,128627,7228,11.098,0.624,6040.667,0.521,5800.857,0.5
Belgium - units unclear,BEL,2020-04-16,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,135625,6998,11.702,0.604,6632.667,0.572,6057,0.523
Belgium - units unclear,BEL,2020-04-17,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,143684,8059,12.398,0.695,7428.333,0.641,6386.571,0.551
Belgium - units unclear,BEL,2020-04-18,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,151708,8024,13.09,0.692,7693.667,0.664,6684.714,0.577
Belgium - units unclear,BEL,2020-04-19,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,157395,5687,13.581,0.491,7256.667,0.626,6698.571,0.578
Belgium - units unclear,BEL,2020-04-20,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,166209,8814,14.341,0.761,7508.333,0.648,7211.714,0.622
Belgium - units unclear,BEL,2020-04-21,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,173505,7296,14.971,0.63,7265.667,0.627,7443.714,0.642
Belgium - units unclear,BEL,2020-04-22,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,185966,12461,16.046,1.075,9523.667,0.822,8191.286,0.707
Belgium - units unclear,BEL,2020-04-23,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,199662,13696,17.228,1.182,11151,0.962,9148.143,0.789
Belgium - units unclear,BEL,2020-04-24,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,215158,15496,18.565,1.337,13884.333,1.198,10210.571,0.881
Belgium - units unclear,BEL,2020-04-25,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,229587,14429,19.81,1.245,14540.333,1.255,11125.571,0.96
Belgium - units unclear,BEL,2020-04-26,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,241606,12019,20.847,1.037,13981.333,1.206,12030.143,1.038
Belgium - units unclear,BEL,2020-04-27,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,256297,14691,22.114,1.268,13713,1.183,12869.714,1.111
Belgium - units unclear,BEL,2020-04-28,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,273061,16764,23.561,1.446,14491.333,1.25,14222.286,1.227
Belgium - units unclear,BEL,2020-04-29,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,292852,19791,25.268,1.708,17082,1.474,15269.429,1.318
Belgium - units unclear,BEL,2020-04-30,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,314335,21483,27.122,1.854,19346,1.669,16381.857,1.414
Belgium - units unclear,BEL,2020-05-01,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,335856,21521,28.979,1.857,20931.667,1.806,17242.571,1.488
Belgium - units unclear,BEL,2020-05-02,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,350745,14889,30.264,1.285,19297.667,1.665,17308.286,1.494
Belgium - units unclear,BEL,2020-05-03,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,362840,12095,31.307,1.044,16168.333,1.395,17319.143,1.495
Belgium - units unclear,BEL,2020-05-04,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,383552,20712,33.094,1.787,15898.667,1.372,18179.286,1.569
Belgium - units unclear,BEL,2020-05-05,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,401231,17679,34.62,1.525,16828.667,1.452,18310,1.58
Belgium - units unclear,BEL,2020-05-06,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,418438,17207,36.105,1.485,18532.667,1.599,17940.857,1.548
Belgium - units unclear,BEL,2020-05-07,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,436651,18213,37.676,1.571,17699.667,1.527,17473.714,1.508
Belgium - units unclear,BEL,2020-05-08,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,458678,22027,39.577,1.901,19149,1.652,17546,1.514
Belgium - units unclear,BEL,2020-05-09,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,476722,18044,41.134,1.557,19428,1.676,17996.714,1.553
Belgium - units unclear,BEL,2020-05-10,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,487194,10472,42.037,0.904,16847.667,1.454,17764.857,1.533
Belgium - units unclear,BEL,2020-05-11,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,494760,7566,42.69,0.653,12027.333,1.038,15886.857,1.371
Belgium - units unclear,BEL,2020-05-12,https://epistat.sciensano.be/Data/COVID19BE_tests.csv,Sciensano (Belgian institute for health),,508697,13937,43.892,1.203,10658.333,0.92,15352.286,1.325
Bolivia - cases tested,BOL,2020-03-21,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,139,,0.012,,,,,
Bolivia - cases tested,BOL,2020-03-22,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,178,39,0.015,0.003,,,,
Bolivia - cases tested,BOL,2020-03-23,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,273,95,0.023,0.008,,,,
Bolivia - cases tested,BOL,2020-03-24,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,277,4,0.024,0,46,0.004,,
Bolivia - cases tested,BOL,2020-03-25,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,334,57,0.029,0.005,52,0.004,,
Bolivia - cases tested,BOL,2020-03-26,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,442,108,0.038,0.009,56.333,0.005,,
Bolivia - cases tested,BOL,2020-03-27,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,516,74,0.044,0.006,79.667,0.007,,
Bolivia - cases tested,BOL,2020-03-28,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,559,43,0.048,0.004,75,0.006,60,0.005
Bolivia - cases tested,BOL,2020-03-29,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,574,15,0.049,0.001,44,0.004,56.571,0.005
Bolivia - cases tested,BOL,2020-03-30,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,697,123,0.06,0.011,60.333,0.005,60.571,0.005
Bolivia - cases tested,BOL,2020-03-31,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,779,82,0.067,0.007,73.333,0.006,71.714,0.006
Bolivia - cases tested,BOL,2020-04-01,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,836,57,0.072,0.005,87.333,0.008,71.714,0.006
Bolivia - cases tested,BOL,2020-04-02,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,985,149,0.084,0.013,96,0.008,77.571,0.007
Bolivia - cases tested,BOL,2020-04-03,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,1118,133,0.096,0.011,113,0.01,86,0.007
Bolivia - cases tested,BOL,2020-04-04,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,1136,18,0.097,0.002,100,0.009,82.429,0.007
Bolivia - cases tested,BOL,2020-04-05,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,1441,305,0.123,0.026,152,0.013,123.857,0.011
Bolivia - cases tested,BOL,2020-04-06,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,1452,11,0.124,0.001,111.333,0.01,107.857,0.009
Bolivia - cases tested,BOL,2020-04-07,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,1468,16,0.126,0.001,110.667,0.009,98.429,0.008
Bolivia - cases tested,BOL,2020-04-08,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,1522,54,0.13,0.005,27,0.002,98,0.008
Bolivia - cases tested,BOL,2020-04-09,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,1997,475,0.171,0.041,181.667,0.016,144.571,0.012
Bolivia - cases tested,BOL,2020-04-10,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,2185,188,0.187,0.016,239,0.021,152.429,0.013
Bolivia - cases tested,BOL,2020-04-11,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,2356,171,0.202,0.015,278,0.024,174.286,0.015
Bolivia - cases tested,BOL,2020-04-12,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,2528,172,0.217,0.015,177,0.015,155.286,0.013
Bolivia - cases tested,BOL,2020-04-13,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,2693,165,0.231,0.014,169.333,0.015,177.286,0.015
Bolivia - cases tested,BOL,2020-04-14,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,2919,226,0.25,0.019,187.667,0.016,207.286,0.018
Bolivia - cases tested,BOL,2020-04-15,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,3230,311,0.277,0.027,234,0.02,244,0.021
Bolivia - cases tested,BOL,2020-04-16,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,3419,189,0.293,0.016,242,0.021,203.143,0.017
Bolivia - cases tested,BOL,2020-04-17,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,3573,154,0.306,0.013,218,0.019,198.286,0.017
Bolivia - cases tested,BOL,2020-04-18,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,3600,27,0.308,0.002,123.333,0.01,177.714,0.015
Bolivia - cases tested,BOL,2020-04-19,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,4135,535,0.354,0.046,238.667,0.02,229.571,0.02
Bolivia - cases tested,BOL,2020-04-20,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,4298,163,0.368,0.014,241.667,0.021,229.286,0.02
Bolivia - cases tested,BOL,2020-04-21,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,4420,122,0.379,0.01,273.333,0.023,214.429,0.018
Bolivia - cases tested,BOL,2020-04-22,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,4810,390,0.412,0.033,225,0.019,225.714,0.019
Bolivia - cases tested,BOL,2020-04-23,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,4995,185,0.428,0.016,232.333,0.02,225.143,0.019
Bolivia - cases tested,BOL,2020-04-24,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,5297,302,0.454,0.026,292.333,0.025,246.286,0.021
Bolivia - cases tested,BOL,2020-04-25,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,5356,59,0.459,0.005,182,0.016,250.857,0.021
Bolivia - cases tested,BOL,2020-04-26,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,5791,435,0.496,0.037,265.333,0.023,236.571,0.02
Bolivia - cases tested,BOL,2020-04-27,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,5988,197,0.513,0.017,230.333,0.02,241.429,0.021
Bolivia - cases tested,BOL,2020-04-28,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,6121,133,0.524,0.011,255,0.022,243,0.021
Bolivia - cases tested,BOL,2020-04-29,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,6409,288,0.549,0.025,206,0.018,228.429,0.02
Bolivia - cases tested,BOL,2020-04-30,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,6551,142,0.561,0.012,187.667,0.016,222.286,0.019
Bolivia - cases tested,BOL,2020-05-01,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,6613,62,0.567,0.005,164,0.014,188,0.016
Bolivia - cases tested,BOL,2020-05-02,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,7556,943,0.647,0.081,382.333,0.033,314.286,0.027
Bolivia - cases tested,BOL,2020-05-03,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,7680,124,0.658,0.011,376.333,0.032,269.857,0.023
Bolivia - cases tested,BOL,2020-05-04,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,7767,87,0.665,0.007,384.667,0.033,254.143,0.022
Bolivia - cases tested,BOL,2020-05-05,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,7888,121,0.676,0.01,110.667,0.009,252.429,0.022
Bolivia - cases tested,BOL,2020-05-06,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,7972,84,0.683,0.007,97.333,0.008,223.286,0.019
Bolivia - cases tested,BOL,2020-05-07,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,8167,195,0.7,0.017,133.333,0.011,230.857,0.02
Bolivia - cases tested,BOL,2020-05-08,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,8352,185,0.715,0.016,154.667,0.013,248.429,0.021
Bolivia - cases tested,BOL,2020-05-09,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,8523,171,0.73,0.015,183.667,0.016,138.143,0.012
Bolivia - cases tested,BOL,2020-05-10,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,8642,119,0.74,0.01,158.333,0.014,137.429,0.012
Bolivia - cases tested,BOL,2020-05-11,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,8917,275,0.764,0.024,188.333,0.016,164.286,0.014
Bolivia - cases tested,BOL,2020-05-12,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,9050,133,0.775,0.011,175.667,0.015,166,0.014
Bolivia - cases tested,BOL,2020-05-13,https://github.com/mauforonda/covid19-bolivia/blob/master/data.json,Ministry of Health,Made available on Github by Mau Foronda,9234,184,0.791,0.016,197.333,0.017,180.286,0.016
Brazil - tests performed,BRA,2020-04-07,https://www.saude.gov.br/noticias/agencia-saude/46707-saude-ja-distribuiu-quase-1-milhao-de-testes-para-coronavirus,Ministry of Health press release,,62985,,0.296,,,,,
Brazil - tests performed,BRA,2020-04-20,https://www.saude.gov.br/noticias/agencia-saude/46768-chega-ao-pais-mais-500-mil-testes-de-biologia-molecular,Ministry of Health press release,,132467,,0.623,,,,,
Bulgaria - tests performed,BGR,2020-04-11,http://web.archive.org/web/20200411165137/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,18502,,2.663,,,,,
Bulgaria - tests performed,BGR,2020-04-19,https://coronavirus.bg/arcgis/apps/opsdashboard/index.html#/ecacd239ee7e4fba956f7948f586af93,Bulgaria COVID-10 Information Portal,Taken from Bulgaria's dashboard as no snapshot available using web archives.,26417,,3.802,,,,,
Bulgaria - tests performed,BGR,2020-04-22,http://web.archive.org/web/20200423114827/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,27000,,3.886,,,,,
Bulgaria - tests performed,BGR,2020-04-29,http://web.archive.org/web/20200429110342/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,45208,,6.506,,,,,
Bulgaria - tests performed,BGR,2020-05-01,https://web.archive.org/web/20200501162016/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,46510,,6.694,,,,,
Bulgaria - tests performed,BGR,2020-05-02,https://web.archive.org/web/20200502151045/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,47636,1126,6.856,0.162,,,,
Bulgaria - tests performed,BGR,2020-05-03,https://web.archive.org/web/20200503141236/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,48618,982,6.997,0.141,,,,
Bulgaria - tests performed,BGR,2020-05-04,https://web.archive.org/web/20200504171421/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,49145,527,7.073,0.076,878.333,0.126,,
Bulgaria - tests performed,BGR,2020-05-05,https://web.archive.org/web/20200505202238/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,50303,1158,7.239,0.167,889,0.128,,
Bulgaria - tests performed,BGR,2020-05-06,https://web.archive.org/web/20200506175144/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,51768,1465,7.45,0.211,1050,0.151,,
Bulgaria - tests performed,BGR,2020-05-07,https://web.archive.org/web/20200507200256/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,52931,1163,7.618,0.167,1262,0.182,,
Bulgaria - tests performed,BGR,2020-05-08,https://web.archive.org/web/20200508085527/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,54328,1397,7.819,0.201,1341.667,0.193,1116.857,0.161
Bulgaria - tests performed,BGR,2020-05-09,https://web.archive.org/web/20200509164021/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,56105,1777,8.074,0.256,1445.667,0.208,1209.857,0.174
Bulgaria - tests performed,BGR,2020-05-10,https://web.archive.org/web/20200510104647/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,57231,1126,8.237,0.162,1433.333,0.206,1230.429,0.177
Bulgaria - tests performed,BGR,2020-05-11,https://web.archive.org/web/20200511162517/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,57634,403,8.295,0.058,1102,0.159,1212.714,0.175
Bulgaria - tests performed,BGR,2020-05-12,https://web.archive.org/web/20200512191641/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,58713,1079,8.45,0.155,869.333,0.125,1201.429,0.173
Bulgaria - tests performed,BGR,2020-05-13,https://web.archive.org/web/20200513185930/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,60100,1387,8.649,0.2,956.333,0.138,1190.286,0.171
Bulgaria - tests performed,BGR,2020-05-14,https://web.archive.org/web/20200514114507/https://coronavirus.bg/,Bulgaria COVID-10 Information Portal,,61711,1611,8.881,0.232,1359,0.196,1254.286,0.181
Canada - people tested,CAN,2020-03-18,https://web.archive.org/web/20200319151005/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 11am EDT (no 6pm reported),53975,,1.43,,,,,
Canada - people tested,CAN,2020-03-19,https://web.archive.org/web/20200321005428/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 11am EDT (no 6pm reported),54956,981,1.456,0.026,,,,
Canada - people tested,CAN,2020-03-20,https://web.archive.org/web/20200321081153/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 7pm EDT,76814,21858,2.035,0.579,,,,
Canada - people tested,CAN,2020-03-21,https://web.archive.org/web/20200322140249/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 5pm EDT,88883,12069,2.355,0.32,11636,0.308,,
Canada - people tested,CAN,2020-03-22,https://web.archive.org/web/20200323125719/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 5pm EDT,98824,9941,2.618,0.263,14622.667,0.387,,
Canada - people tested,CAN,2020-03-23,https://web.archive.org/web/20200324132035/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6pm EDT,107147,8323,2.839,0.221,10111,0.268,,
Canada - people tested,CAN,2020-03-24,https://web.archive.org/web/20200325134405/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6pm EDT,125062,17915,3.314,0.475,12059.667,0.32,,
Canada - people tested,CAN,2020-03-25,https://web.archive.org/web/20200326134105/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 11am EDT (no 6pm reported),142154,17092,3.766,0.453,14443.333,0.383,12597,0.334
Canada - people tested,CAN,2020-03-26,https://web.archive.org/web/20200327083147/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6pm EDT,161603,19449,4.282,0.515,18152,0.481,15235.286,0.404
Canada - people tested,CAN,2020-03-27,https://web.archive.org/web/20200328101418/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6pm EDT,170644,9041,4.521,0.24,15194,0.403,13404.286,0.355
Canada - people tested,CAN,2020-03-28,https://web.archive.org/web/20200329091313/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6pm EDT,184201,13557,4.881,0.359,14015.667,0.371,13616.857,0.361
Canada - people tested,CAN,2020-03-29,https://web.archive.org/web/20200330090801/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6pm EDT,210435,26234,5.576,0.695,16277.333,0.431,15944.429,0.423
Canada - people tested,CAN,2020-03-30,https://web.archive.org/web/20200331231102/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6pm EDT,241138,30703,6.389,0.813,23498,0.622,19141.571,0.507
Canada - people tested,CAN,2020-04-01,https://web.archive.org/web/20200402145159/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6.45pm EDT,256933,,6.808,,,,,
Canada - people tested,CAN,2020-04-02,http://web.archive.org/web/20200403100712/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 11am EDT (no 6pm reported),268154,11221,7.105,0.297,,,,
Canada - people tested,CAN,2020-04-03,http://web.archive.org/web/20200404035905/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 7pm EDT,295065,26911,7.818,0.713,,,,
Canada - people tested,CAN,2020-04-04,http://web.archive.org/web/20200405125709/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 5.15pm EDT,311971,16906,8.266,0.448,18346,0.486,,
Canada - people tested,CAN,2020-04-05,http://web.archive.org/web/20200406180501/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 11 am EDT,334849,22878,8.872,0.606,22231.667,0.589,,
Canada - people tested,CAN,2020-04-06,http://web.archive.org/web/20200407160901/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 6.30pm EDT,336806,1957,8.924,0.052,13913.667,0.369,,
Canada - people tested,CAN,2020-04-07,http://web.archive.org/web/20200407160901/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,As of 11am EDT,346507,9701,9.181,0.257,11512,0.305,,
Canada - people tested,CAN,2020-04-08,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,359269,12762,9.519,0.338,8140,0.216,14619.429,0.387
Canada - people tested,CAN,2020-04-09,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,373581,14312,9.898,0.379,12258.333,0.325,15061,0.399
Canada - people tested,CAN,2020-04-10,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,383322,9741,10.156,0.258,12271.667,0.325,12608.143,0.334
Canada - people tested,CAN,2020-04-11,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,401552,18230,10.639,0.483,14094.333,0.373,12797.286,0.339
Canada - people tested,CAN,2020-04-12,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,404651,3099,10.721,0.082,10356.667,0.274,9971.714,0.264
Canada - people tested,CAN,2020-04-13,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,428920,24269,11.364,0.643,15199.333,0.403,13159.143,0.349
Canada - people tested,CAN,2020-04-14,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,450717,21797,11.942,0.578,16388.333,0.434,14887.143,0.394
Canada - people tested,CAN,2020-04-15,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,462353,11636,12.25,0.308,19234,0.51,14726.286,0.39
Canada - people tested,CAN,2020-04-16,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,487060,24707,12.905,0.655,19380,0.514,16211.286,0.43
Canada - people tested,CAN,2020-04-17,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,503003,15943,13.327,0.422,17428.667,0.462,17097.286,0.453
Canada - people tested,CAN,2020-04-18,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,516216,13213,13.677,0.35,17954.333,0.476,16380.571,0.434
Canada - people tested,CAN,2020-04-19,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,536062,19846,14.203,0.526,16334,0.433,18773,0.497
Canada - people tested,CAN,2020-04-20,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,555551,19489,14.72,0.516,17516,0.464,18090.143,0.479
Canada - people tested,CAN,2020-04-21,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,565931,10380,14.995,0.275,16571.667,0.439,16459.143,0.436
Canada - people tested,CAN,2020-04-22,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,576348,10417,15.271,0.276,13428.667,0.356,16285,0.431
Canada - people tested,CAN,2020-04-23,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,620101,43753,16.43,1.159,21516.667,0.57,19005.857,0.503
Canada - people tested,CAN,2020-04-24,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,643398,23297,17.047,0.617,25822.333,0.684,20056.429,0.531
Canada - people tested,CAN,2020-04-25,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,669558,26160,17.74,0.693,31070,0.823,21906,0.58
Canada - people tested,CAN,2020-04-26,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,691663,22105,18.326,0.586,23854,0.632,22228.714,0.589
Canada - people tested,CAN,2020-04-27,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,717451,25788,19.009,0.683,24684.333,0.654,23128.571,0.613
Canada - people tested,CAN,2020-04-28,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,740859,23408,19.629,0.62,23767,0.63,24989.714,0.662
Canada - people tested,CAN,2020-04-29,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,758412,17553,20.095,0.465,22249.667,0.589,26009.143,0.689
Canada - people tested,CAN,2020-04-30,https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,788283,29871,20.886,0.791,23610.667,0.625,24026,0.636
Canada - people tested,CAN,2020-05-01,https://web.archive.org/web/20200501173328/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,832222,43939,22.05,1.164,30454.333,0.807,26974.857,0.715
Canada - people tested,CAN,2020-05-03,https://web.archive.org/web/20200503200108/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,893490,,23.674,,,,,
Canada - people tested,CAN,2020-05-04,https://web.archive.org/web/20200504191158/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,919368,25878,24.359,0.686,,,,
Canada - people tested,CAN,2020-05-05,https://web.archive.org/web/20200505202240/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,940567,21199,24.921,0.562,,,,
Canada - people tested,CAN,2020-05-06,https://web.archive.org/web/20200506175147/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,942526,1959,24.973,0.052,16345.333,0.433,,
Canada - people tested,CAN,2020-05-07,https://web.archive.org/web/20200507200258/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1001882,59356,26.545,1.573,27504.667,0.729,,
Canada - people tested,CAN,2020-05-08,https://web.archive.org/web/20200508200344/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1032012,30130,27.344,0.798,30481.667,0.808,,
Canada - people tested,CAN,2020-05-09,https://web.archive.org/web/20200509164024/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1067595,35583,28.287,0.943,41689.667,1.105,,
Canada - people tested,CAN,2020-05-10,https://web.archive.org/web/20200510202943/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1093228,25633,28.966,0.679,30448.667,0.807,28534,0.756
Canada - people tested,CAN,2020-05-11,https://web.archive.org/web/20200511231217/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1118950,25722,29.647,0.682,28979.333,0.768,28511.714,0.756
Canada - people tested,CAN,2020-05-12,https://web.archive.org/web/20200512191644/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1145683,26733,30.356,0.708,26029.333,0.69,29302.286,0.776
Canada - people tested,CAN,2020-05-13,https://web.archive.org/web/20200513185932/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1169380,23697,30.983,0.628,25384,0.673,32407.714,0.859
Canada - people tested,CAN,2020-05-14,https://web.archive.org/web/20200514114509/https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection.html,Government of Canada,,1172796,,31.074,0.091,,0.476,,0.647
Chile - tests performed,CHL,2020-04-01,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,38040,,1.99,,,,,
Chile - tests performed,CHL,2020-04-02,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,40725,2685,2.13,0.14,,,,
Chile - tests performed,CHL,2020-04-03,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,44130,3405,2.309,0.178,,,,
Chile - tests performed,CHL,2020-04-04,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,48613,4483,2.543,0.235,3524.333,0.184,,
Chile - tests performed,CHL,2020-04-05,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,51956,3343,2.718,0.175,3743.667,0.196,,
Chile - tests performed,CHL,2020-04-06,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,54864,2908,2.87,0.152,3578,0.187,,
Chile - tests performed,CHL,2020-04-07,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,57122,2258,2.988,0.118,2836.333,0.148,,
Chile - tests performed,CHL,2020-04-08,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,60391,3269,3.159,0.171,2811.667,0.147,3193,0.167
Chile - tests performed,CHL,2020-04-09,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,68353,7962,3.576,0.417,4496.333,0.235,3946.857,0.207
Chile - tests performed,CHL,2020-04-10,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,72797,4444,3.808,0.232,5225,0.273,4095.286,0.214
Chile - tests performed,CHL,2020-04-11,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,76374,3577,3.995,0.187,5327.667,0.279,3965.857,0.207
Chile - tests performed,CHL,2020-04-12,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,82271,5897,4.304,0.308,4639.333,0.242,4330.714,0.226
Chile - tests performed,CHL,2020-04-13,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,85035,2764,4.448,0.145,4079.333,0.213,4310.143,0.225
Chile - tests performed,CHL,2020-04-14,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,87794,2759,4.593,0.144,3806.667,0.199,4381.714,0.229
Chile - tests performed,CHL,2020-04-15,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,91873,4079,4.806,0.213,3200.667,0.167,4497.429,0.235
Chile - tests performed,CHL,2020-04-16,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,98424,6551,5.149,0.343,4463,0.233,4295.857,0.225
Chile - tests performed,CHL,2020-04-17,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,103873,5449,5.434,0.285,5359.667,0.28,4439.429,0.232
Chile - tests performed,CHL,2020-04-18,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,108891,5018,5.696,0.262,5672.667,0.297,4645.286,0.243
Chile - tests performed,CHL,2020-04-19,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,113649,4758,5.945,0.249,5075,0.265,4482.571,0.234
Chile - tests performed,CHL,2020-04-20,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,118827,5178,6.216,0.271,4984.667,0.261,4827.429,0.252
Chile - tests performed,CHL,2020-04-21,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,122357,3530,6.401,0.185,4488.667,0.235,4937.571,0.258
Chile - tests performed,CHL,2020-04-22,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,128722,6365,6.734,0.333,5024.333,0.263,5264.143,0.275
Chile - tests performed,CHL,2020-04-23,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,135147,6425,7.07,0.336,5440,0.285,5246.143,0.274
Chile - tests performed,CHL,2020-04-24,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,142267,7120,7.442,0.372,6636.667,0.347,5484.857,0.287
Chile - tests performed,CHL,2020-04-25,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,149212,6945,7.806,0.363,6830,0.357,5760.143,0.301
Chile - tests performed,CHL,2020-04-26,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,155975,6763,8.159,0.354,6942.667,0.363,6046.571,0.316
Chile - tests performed,CHL,2020-04-27,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,161235,5260,8.434,0.275,6322.667,0.331,6058.286,0.317
Chile - tests performed,CHL,2020-04-28,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,166165,4930,8.692,0.258,5651,0.296,6258.286,0.327
Chile - tests performed,CHL,2020-04-29,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,172619,6454,9.03,0.338,5548,0.29,6271,0.328
Chile - tests performed,CHL,2020-04-30,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,180517,7898,9.443,0.413,6427.333,0.336,6481.429,0.339
Chile - tests performed,CHL,2020-05-01,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,189433,8916,9.91,0.466,7756,0.406,6738,0.352
Chile - tests performed,CHL,2020-05-02,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,199400,9967,10.431,0.521,8927,0.467,7169.714,0.375
Chile - tests performed,CHL,2020-05-03,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,206218,6818,10.788,0.357,8567,0.448,7177.571,0.375
Chile - tests performed,CHL,2020-05-04,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,214131,7913,11.202,0.414,8232.667,0.431,7556.571,0.395
Chile - tests performed,CHL,2020-05-05,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,222095,7964,11.618,0.417,7565,0.396,7990,0.418
Chile - tests performed,CHL,2020-05-06,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,232108,10013,12.142,0.524,8630,0.452,8498.429,0.445
Chile - tests performed,CHL,2020-05-07,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,244226,12118,12.776,0.634,10031.667,0.525,9101.286,0.476
Chile - tests performed,CHL,2020-05-08,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,255961,11735,13.39,0.614,11288.667,0.591,9504,0.497
Chile - tests performed,CHL,2020-05-09,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,267904,11943,14.014,0.625,11932,0.624,9786.286,0.512
Chile - tests performed,CHL,2020-05-10,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,280684,12780,14.683,0.669,12152.667,0.636,10638,0.557
Chile - tests performed,CHL,2020-05-11,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,294057,13373,15.383,0.7,12698.667,0.665,11418,0.598
Chile - tests performed,CHL,2020-05-12,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,303340,9283,15.868,0.486,11812,0.618,11606.429,0.607
Chile - tests performed,CHL,2020-05-13,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,313750,10410,16.413,0.545,11022,0.577,11663.143,0.61
Chile - tests performed,CHL,2020-05-14,https://github.com/jorgeperezrojas/covid19-data,Ministry of Health,Made available by Jorge Perez Rojas on Github,325417,11667,17.023,0.61,10453.333,0.547,11598.714,0.607
Colombia - samples tested,COL,2020-03-05,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,636,,0.012,,,,,
Colombia - samples tested,COL,2020-03-06,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,739,103,0.015,0.002,,,,
Colombia - samples tested,COL,2020-03-07,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,810,71,0.016,0.001,,,,
Colombia - samples tested,COL,2020-03-08,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,813,3,0.016,0,59,0.001,,
Colombia - samples tested,COL,2020-03-09,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,851,38,0.017,0.001,37.333,0.001,,
Colombia - samples tested,COL,2020-03-10,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,927,76,0.018,0.001,39,0.001,,
Colombia - samples tested,COL,2020-03-11,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,1133,206,0.022,0.004,106.667,0.002,,
Colombia - samples tested,COL,2020-03-12,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,1393,260,0.027,0.005,180.667,0.003,108.143,0.002
Colombia - samples tested,COL,2020-03-13,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,1754,361,0.034,0.007,275.667,0.005,145,0.003
Colombia - samples tested,COL,2020-03-14,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,2343,589,0.046,0.012,403.333,0.008,219,0.004
Colombia - samples tested,COL,2020-03-15,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,3176,833,0.062,0.016,594.333,0.012,337.571,0.007
Colombia - samples tested,COL,2020-03-16,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,3607,431,0.071,0.008,617.667,0.012,393.714,0.008
Colombia - samples tested,COL,2020-03-17,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,3931,324,0.077,0.006,529.333,0.01,429.143,0.008
Colombia - samples tested,COL,2020-03-18,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,4690,759,0.092,0.015,504.667,0.01,508.143,0.01
Colombia - samples tested,COL,2020-03-19,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,5363,673,0.105,0.013,585.333,0.011,567.143,0.011
Colombia - samples tested,COL,2020-03-20,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,5766,403,0.113,0.008,611.667,0.012,573.143,0.011
Colombia - samples tested,COL,2020-03-21,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,6064,298,0.119,0.006,458,0.009,531.571,0.01
Colombia - samples tested,COL,2020-03-22,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,6910,846,0.136,0.017,515.667,0.01,533.429,0.01
Colombia - samples tested,COL,2020-03-23,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,7285,375,0.143,0.007,506.333,0.01,525.429,0.01
Colombia - samples tested,COL,2020-03-24,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,8051,766,0.158,0.015,662.333,0.013,588.571,0.012
Colombia - samples tested,COL,2020-03-25,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,8797,746,0.173,0.015,629,0.012,586.714,0.012
Colombia - samples tested,COL,2020-03-26,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,9228,431,0.181,0.008,647.667,0.013,552.143,0.011
Colombia - samples tested,COL,2020-03-27,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,9486,258,0.186,0.005,478.333,0.009,531.429,0.01
Colombia - samples tested,COL,2020-03-28,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,10851,1365,0.213,0.027,684.667,0.013,683.857,0.013
Colombia - samples tested,COL,2020-03-29,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,12325,1474,0.242,0.029,1032.333,0.02,773.571,0.015
Colombia - samples tested,COL,2020-03-30,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,13816,1491,0.272,0.029,1443.333,0.028,933,0.018
Colombia - samples tested,COL,2020-03-31,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,17863,4047,0.351,0.08,2337.333,0.046,1401.714,0.028
Colombia - samples tested,COL,2020-04-01,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,20253,2390,0.398,0.047,2642.667,0.052,1636.571,0.032
Colombia - samples tested,COL,2020-04-02,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,21412,1159,0.421,0.023,2532,0.05,1740.571,0.034
Colombia - samples tested,COL,2020-04-03,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,22752,1340,0.447,0.026,1629.667,0.032,1895.143,0.037
Colombia - samples tested,COL,2020-04-04,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,23989,1237,0.471,0.024,1245.333,0.024,1876.857,0.037
Colombia - samples tested,COL,2020-04-05,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,25547,1558,0.502,0.031,1378.333,0.027,1888.857,0.037
Colombia - samples tested,COL,2020-04-06,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,27968,2421,0.55,0.048,1738.667,0.034,2021.714,0.04
Colombia - samples tested,COL,2020-04-07,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,30728,2760,0.604,0.054,2246.333,0.044,1837.857,0.036
Colombia - samples tested,COL,2020-04-08,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,33858,3130,0.665,0.062,2770.333,0.055,1943.571,0.038
Colombia - samples tested,COL,2020-04-09,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,35193,1335,0.692,0.026,2408.333,0.047,1968.714,0.039
Colombia - samples tested,COL,2020-04-10,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,37876,2683,0.744,0.053,2382.667,0.047,2160.571,0.043
Colombia - samples tested,COL,2020-04-11,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,40618,2742,0.798,0.054,2253.333,0.044,2375.571,0.047
Colombia - samples tested,COL,2020-04-12,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,41780,1162,0.821,0.023,2195.667,0.043,2319,0.046
Colombia - samples tested,COL,2020-04-13,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,43036,1256,0.846,0.025,1720,0.034,2152.571,0.042
Colombia - samples tested,COL,2020-04-14,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,45351,2315,0.891,0.045,1577.667,0.031,2089,0.041
Colombia - samples tested,COL,2020-04-15,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,48556,3205,0.954,0.063,2258.667,0.044,2099.714,0.041
Colombia - samples tested,COL,2020-04-16,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,52013,3457,1.022,0.068,2992.333,0.059,2402.857,0.047
Colombia - samples tested,COL,2020-04-17,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,55501,3488,1.091,0.069,3383.333,0.067,2517.857,0.05
Colombia - samples tested,COL,2020-04-18,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,58930,3429,1.158,0.067,3458,0.068,2616,0.051
Colombia - samples tested,COL,2020-04-19,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,62674,3744,1.232,0.074,3553.667,0.07,2984.857,0.059
Colombia - samples tested,COL,2020-04-20,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,65097,2423,1.279,0.048,3198.667,0.063,3151.571,0.062
Colombia - samples tested,COL,2020-04-21,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,68356,3259,1.343,0.064,3142,0.062,3286.429,0.065
Colombia - samples tested,COL,2020-04-22,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,71407,3051,1.403,0.06,2911,0.057,3264.429,0.064
Colombia - samples tested,COL,2020-04-23,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,74864,3457,1.471,0.068,3255.667,0.064,3264.429,0.064
Colombia - samples tested,COL,2020-04-24,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,77985,3121,1.533,0.061,3209.667,0.063,3212,0.063
Colombia - samples tested,COL,2020-04-25,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,81053,3068,1.593,0.06,3215.333,0.063,3160.429,0.062
Colombia - samples tested,COL,2020-04-26,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,87106,6053,1.712,0.119,4080.667,0.08,3490.286,0.069
Colombia - samples tested,COL,2020-04-27,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,90899,3793,1.786,0.075,4304.667,0.085,3686,0.072
Colombia - samples tested,COL,2020-04-28,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,95085,4186,1.869,0.082,4677.333,0.092,3818.429,0.075
Colombia - samples tested,COL,2020-04-29,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,100153,5068,1.968,0.1,4349,0.086,4106.571,0.081
Colombia - samples tested,COL,2020-04-30,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,104657,4504,2.057,0.089,4586,0.09,4256.143,0.084
Colombia - samples tested,COL,2020-05-01,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,108950,4293,2.141,0.084,4621.667,0.091,4423.571,0.087
Colombia - samples tested,COL,2020-05-02,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,114602,5652,2.252,0.111,4816.333,0.095,4792.714,0.094
Colombia - samples tested,COL,2020-05-03,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,118801,4199,2.335,0.083,4714.667,0.093,4527.857,0.089
Colombia - samples tested,COL,2020-05-04,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,123029,4228,2.418,0.083,4693,0.092,4590,0.09
Colombia - samples tested,COL,2020-05-05,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,127105,4076,2.498,0.08,4167.667,0.082,4574.286,0.09
Colombia - samples tested,COL,2020-05-06,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,131110,4005,2.577,0.079,4103,0.081,4422.429,0.087
Colombia - samples tested,COL,2020-05-07,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,135352,4242,2.66,0.083,4107.667,0.081,4385,0.086
Colombia - samples tested,COL,2020-05-08,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,139739,4387,2.746,0.086,4211.333,0.083,4398.429,0.086
Colombia - samples tested,COL,2020-05-09,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,144912,5173,2.848,0.102,4600.667,0.09,4330,0.085
Colombia - samples tested,COL,2020-05-10,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,151396,6484,2.975,0.127,5348,0.105,4656.429,0.091
Colombia - samples tested,COL,2020-05-11,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,158933,7537,3.124,0.148,6398,0.126,5129.143,0.101
Colombia - samples tested,COL,2020-05-12,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,165738,6805,3.257,0.134,6942,0.136,5519,0.108
Colombia - samples tested,COL,2020-05-13,https://www.ins.gov.co/Noticias/Paginas/Coronavirus.aspx#muestras,National Institute of Health,,171799,6061,3.376,0.119,6801,0.134,5812.714,0.114
Costa Rica - people tested,CRI,2020-03-11,https://observador.cr/covid19-estadisticas/,Ministry of Health,,68,68,0.013,0.013,,,,
Costa Rica - people tested,CRI,2020-03-12,https://observador.cr/covid19-estadisticas/,Ministry of Health,,157,89,0.031,0.017,,,,
Costa Rica - people tested,CRI,2020-03-13,https://observador.cr/covid19-estadisticas/,Ministry of Health,,243,86,0.048,0.017,81,0.016,,
Costa Rica - people tested,CRI,2020-03-14,https://observador.cr/covid19-estadisticas/,Ministry of Health,,370,127,0.073,0.025,100.667,0.02,,
Costa Rica - people tested,CRI,2020-03-15,https://observador.cr/covid19-estadisticas/,Ministry of Health,,413,43,0.081,0.008,85.333,0.017,,
Costa Rica - people tested,CRI,2020-03-16,https://observador.cr/covid19-estadisticas/,Ministry of Health,,584,171,0.115,0.034,113.667,0.022,,
Costa Rica - people tested,CRI,2020-03-17,https://observador.cr/covid19-estadisticas/,Ministry of Health,,698,114,0.137,0.022,109.333,0.021,99.714,0.019
Costa Rica - people tested,CRI,2020-03-18,https://observador.cr/covid19-estadisticas/,Ministry of Health,,852,154,0.167,0.03,146.333,0.029,112,0.022
Costa Rica - people tested,CRI,2020-03-19,https://observador.cr/covid19-estadisticas/,Ministry of Health,,968,116,0.19,0.023,128,0.025,115.857,0.023
Costa Rica - people tested,CRI,2020-03-20,https://observador.cr/covid19-estadisticas/,Ministry of Health,,1087,119,0.213,0.023,129.667,0.025,120.571,0.024
Costa Rica - people tested,CRI,2020-03-21,https://observador.cr/covid19-estadisticas/,Ministry of Health,,1235,148,0.242,0.029,127.667,0.025,123.571,0.024
Costa Rica - people tested,CRI,2020-03-22,https://observador.cr/covid19-estadisticas/,Ministry of Health,,1462,227,0.287,0.045,164.667,0.032,149.857,0.029
Costa Rica - people tested,CRI,2020-03-23,https://observador.cr/covid19-estadisticas/,Ministry of Health,,1619,157,0.318,0.031,177.333,0.035,147.857,0.029
Costa Rica - people tested,CRI,2020-03-24,https://observador.cr/covid19-estadisticas/,Ministry of Health,,1784,165,0.35,0.032,183,0.036,155.143,0.03
Costa Rica - people tested,CRI,2020-03-25,https://observador.cr/covid19-estadisticas/,Ministry of Health,,1813,29,0.356,0.006,117,0.023,137.286,0.027
Costa Rica - people tested,CRI,2020-03-26,https://observador.cr/covid19-estadisticas/,Ministry of Health,,2490,677,0.489,0.133,290.333,0.057,217.429,0.043
Costa Rica - people tested,CRI,2020-03-27,https://observador.cr/covid19-estadisticas/,Ministry of Health,,2977,487,0.584,0.096,397.667,0.078,270,0.053
Costa Rica - people tested,CRI,2020-03-28,https://observador.cr/covid19-estadisticas/,Ministry of Health,,3135,158,0.615,0.031,440.667,0.087,271.429,0.053
Costa Rica - people tested,CRI,2020-03-29,https://observador.cr/covid19-estadisticas/,Ministry of Health,,3357,222,0.659,0.044,289,0.057,270.714,0.053
Costa Rica - people tested,CRI,2020-03-30,https://observador.cr/covid19-estadisticas/,Ministry of Health,,3620,263,0.711,0.052,214.333,0.042,285.857,0.056
Costa Rica - people tested,CRI,2020-03-31,https://observador.cr/covid19-estadisticas/,Ministry of Health,,3773,153,0.741,0.03,212.667,0.042,284.143,0.056
Costa Rica - people tested,CRI,2020-04-01,https://observador.cr/covid19-estadisticas/,Ministry of Health,,4146,373,0.814,0.073,263,0.052,333.286,0.066
Costa Rica - people tested,CRI,2020-04-02,https://observador.cr/covid19-estadisticas/,Ministry of Health,,4278,132,0.84,0.026,219.333,0.043,255.429,0.05
Costa Rica - people tested,CRI,2020-04-03,https://observador.cr/covid19-estadisticas/,Ministry of Health,,4388,110,0.861,0.022,205,0.04,201.571,0.04
Costa Rica - people tested,CRI,2020-04-04,https://observador.cr/covid19-estadisticas/,Ministry of Health,,4582,194,0.899,0.038,145.333,0.029,206.714,0.041
Costa Rica - people tested,CRI,2020-04-05,https://observador.cr/covid19-estadisticas/,Ministry of Health,,5026,444,0.987,0.087,249.333,0.049,238.429,0.047
Costa Rica - people tested,CRI,2020-04-06,https://observador.cr/covid19-estadisticas/,Ministry of Health,,5291,265,1.039,0.052,301,0.059,238.714,0.047
Costa Rica - people tested,CRI,2020-04-07,https://observador.cr/covid19-estadisticas/,Ministry of Health,,5453,162,1.07,0.032,290.333,0.057,240,0.047
Costa Rica - people tested,CRI,2020-04-08,https://observador.cr/covid19-estadisticas/,Ministry of Health,,5963,510,1.171,0.1,312.333,0.061,259.571,0.051
Costa Rica - people tested,CRI,2020-04-09,https://observador.cr/covid19-estadisticas/,Ministry of Health,,6226,263,1.222,0.052,311.667,0.061,278.286,0.055
Costa Rica - people tested,CRI,2020-04-10,https://observador.cr/covid19-estadisticas/,Ministry of Health,,6380,154,1.252,0.03,309,0.061,284.571,0.056
Costa Rica - people tested,CRI,2020-04-11,https://observador.cr/covid19-estadisticas/,Ministry of Health,,6536,156,1.283,0.031,191,0.038,279.143,0.055
Costa Rica - people tested,CRI,2020-04-12,https://observador.cr/covid19-estadisticas/,Ministry of Health,,6690,154,1.313,0.03,154.667,0.03,237.714,0.047
Costa Rica - people tested,CRI,2020-04-13,https://observador.cr/covid19-estadisticas/,Ministry of Health,,6796,106,1.334,0.021,138.667,0.027,215,0.042
Costa Rica - people tested,CRI,2020-04-14,https://observador.cr/covid19-estadisticas/,Ministry of Health,,6872,76,1.349,0.015,112,0.022,202.714,0.04
Costa Rica - people tested,CRI,2020-04-15,https://observador.cr/covid19-estadisticas/,Ministry of Health,,7065,193,1.387,0.038,125,0.025,157.429,0.031
Costa Rica - people tested,CRI,2020-04-16,https://observador.cr/covid19-estadisticas/,Ministry of Health,,7279,214,1.429,0.042,161,0.032,150.429,0.03
Costa Rica - people tested,CRI,2020-04-17,https://observador.cr/covid19-estadisticas/,Ministry of Health,,7451,172,1.463,0.034,193,0.038,153,0.03
Costa Rica - people tested,CRI,2020-04-18,https://observador.cr/covid19-estadisticas/,Ministry of Health,,7678,227,1.507,0.045,204.333,0.04,163.143,0.032
Costa Rica - people tested,CRI,2020-04-19,https://observador.cr/covid19-estadisticas/,Ministry of Health,,7730,52,1.517,0.01,150.333,0.03,148.571,0.029
Costa Rica - people tested,CRI,2020-04-20,https://observador.cr/covid19-estadisticas/,Ministry of Health,,7826,96,1.536,0.019,125,0.025,147.143,0.029
Costa Rica - people tested,CRI,2020-04-21,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8092,266,1.588,0.052,138,0.027,174.286,0.034
Costa Rica - people tested,CRI,2020-04-22,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8393,301,1.648,0.059,221,0.043,189.714,0.037
Costa Rica - people tested,CRI,2020-04-23,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8646,253,1.697,0.05,273.333,0.054,195.286,0.038
Costa Rica - people tested,CRI,2020-04-24,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8748,102,1.717,0.02,218.667,0.043,185.286,0.036
Costa Rica - people tested,CRI,2020-04-25,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8835,87,1.734,0.017,147.333,0.029,165.286,0.032
Costa Rica - people tested,CRI,2020-04-26,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8872,37,1.742,0.007,75.333,0.015,163.143,0.032
Costa Rica - people tested,CRI,2020-04-27,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8930,58,1.753,0.011,60.667,0.012,157.714,0.031
Costa Rica - people tested,CRI,2020-04-28,https://observador.cr/covid19-estadisticas/,Ministry of Health,,8989,59,1.765,0.012,51.333,0.01,128.143,0.025
Costa Rica - people tested,CRI,2020-04-29,https://observador.cr/covid19-estadisticas/,Ministry of Health,,9226,237,1.811,0.047,118,0.023,119,0.023
Costa Rica - people tested,CRI,2020-04-30,https://observador.cr/covid19-estadisticas/,Ministry of Health,,9335,109,1.833,0.021,135,0.027,98.429,0.019
Costa Rica - people tested,CRI,2020-05-01,https://observador.cr/covid19-estadisticas/,Ministry of Health,,9502,167,1.865,0.033,171,0.034,107.714,0.021
Costa Rica - people tested,CRI,2020-05-02,https://observador.cr/covid19-estadisticas/,Ministry of Health,,9593,91,1.883,0.018,122.333,0.024,108.286,0.021
Costa Rica - people tested,CRI,2020-05-03,https://observador.cr/covid19-estadisticas/,Ministry of Health,,9713,120,1.907,0.024,126,0.025,120.143,0.024
Costa Rica - people tested,CRI,2020-05-04,https://observador.cr/covid19-estadisticas/,Ministry of Health,,9819,106,1.928,0.021,105.667,0.021,127,0.025
Costa Rica - people tested,CRI,2020-05-05,https://observador.cr/covid19-estadisticas/,Ministry of Health,,9892,73,1.942,0.014,99.667,0.02,129,0.025
Costa Rica - people tested,CRI,2020-05-06,https://observador.cr/covid19-estadisticas/,Ministry of Health,,10101,209,1.983,0.041,129.333,0.025,125,0.025
Costa Rica - people tested,CRI,2020-05-07,https://observador.cr/covid19-estadisticas/,Ministry of Health,,10375,274,2.037,0.054,185.333,0.036,148.571,0.029
Costa Rica - people tested,CRI,2020-05-08,https://observador.cr/covid19-estadisticas/,Ministry of Health,,10827,452,2.125,0.089,311.667,0.061,189.286,0.037
Costa Rica - people tested,CRI,2020-05-09,https://observador.cr/covid19-estadisticas/,Ministry of Health,,11276,449,2.214,0.088,391.667,0.077,240.429,0.047
Costa Rica - people tested,CRI,2020-05-10,https://observador.cr/covid19-estadisticas/,Ministry of Health,,11868,592,2.33,0.116,497.667,0.098,307.857,0.06
Costa Rica - people tested,CRI,2020-05-11,https://observador.cr/covid19-estadisticas/,Ministry of Health,,11988,120,2.353,0.024,387,0.076,309.857,0.061
Costa Rica - people tested,CRI,2020-05-12,https://observador.cr/covid19-estadisticas/,Ministry of Health,,12061,73,2.368,0.014,261.667,0.051,309.857,0.061
Costa Rica - people tested,CRI,2020-05-13,https://observador.cr/covid19-estadisticas/,Ministry of Health,,12507,446,2.455,0.088,213,0.042,343.714,0.068
Costa Rica - people tested,CRI,2020-05-14,https://observador.cr/covid19-estadisticas/,Ministry of Health,,12822,315,2.517,0.062,278,0.055,349.571,0.069
Croatia - people tested,HRV,2020-03-03,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-3-ozujka-2020/2217,Government of Croatia,,247,,0.06,,,,,
Croatia - people tested,HRV,2020-03-04,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-4-ozujka-2020/2220,Government of Croatia,,255,8,0.062,0.002,,,,
Croatia - people tested,HRV,2020-03-05,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-5-ozujka-2020/2227,Government of Croatia,,273,18,0.066,0.004,,,,
Croatia - people tested,HRV,2020-03-06,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-6-ozujka-2020/2231,Government of Croatia,,302,29,0.074,0.007,18.333,0.004,,
Croatia - people tested,HRV,2020-03-07,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-7-ozujka-2020/2233,Government of Croatia,,317,15,0.077,0.004,20.667,0.005,,
Croatia - people tested,HRV,2020-03-08,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-8-ozujka-2020/2235,Government of Croatia,,327,10,0.08,0.002,18,0.004,,
Croatia - people tested,HRV,2020-03-09,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-9-ozujka-2020/2237,Government of Croatia,,344,17,0.084,0.004,14,0.003,,
Croatia - people tested,HRV,2020-03-10,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-10-ozujka-2020/2241,Government of Croatia,,365,21,0.089,0.005,16,0.004,16.857,0.004
Croatia - people tested,HRV,2020-03-12,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-12-ozujka-2020/2252,Government of Croatia,,483,,0.118,,,,,
Croatia - people tested,HRV,2020-03-13,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-13-ozujka-2020-2255/2255,Government of Croatia,,553,70,0.135,0.017,,,,
Croatia - people tested,HRV,2020-03-14,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-14-ozujka-2020-u-18-30-sati/2257,Government of Croatia,,649,96,0.158,0.023,,,,
Croatia - people tested,HRV,2020-03-15,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-15-ozujka-2020-u-17-sati/2259,Government of Croatia,,745,96,0.181,0.023,87.333,0.021,,
Croatia - people tested,HRV,2020-03-16,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-16-ozujka-2020-u-17-i-30-sati/2261,Government of Croatia,,880,135,0.214,0.033,109,0.026,,
Croatia - people tested,HRV,2020-03-17,https://civilna-zastita.gov.hr/vijesti/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-17-ozujka-2020-u-19-sati/2264,Government of Croatia,,1109,229,0.27,0.056,153.333,0.037,,
Croatia - people tested,HRV,2020-03-18,https://civilna-zastita.gov.hr/vijesti/izvanredno-priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-18-ozujka-2020-u-22-00-sata/2269,Government of Croatia,,1181,72,0.288,0.018,145.333,0.036,,
Croatia - people tested,HRV,2020-03-19,https://civilna-zastita.gov.hr/vijesti/priopcenje-za-medije-stozera-civilne-zastite-republike-hrvatske-od-19-ozujka-2020-u-10-30-sati/2273,Government of Croatia,,1264,83,0.308,0.02,128,0.031,111.571,0.027
Croatia - people tested,HRV,2020-03-24,http://web.archive.org/web/20200324152320/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,3159,,0.769,,,,,
Croatia - people tested,HRV,2020-03-25,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,3618,459,0.881,0.112,,,,
Croatia - people tested,HRV,2020-03-26,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,4208,590,1.025,0.144,,,,
Croatia - people tested,HRV,2020-03-27,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,4778,570,1.164,0.139,539.667,0.132,,
Croatia - people tested,HRV,2020-03-28,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,5215,437,1.27,0.106,532.333,0.13,,
Croatia - people tested,HRV,2020-03-29,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,5900,685,1.437,0.167,564,0.137,,
Croatia - people tested,HRV,2020-03-30,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,6404,504,1.56,0.123,542,0.132,,
Croatia - people tested,HRV,2020-03-31,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,7015,611,1.709,0.149,600,0.146,550.857,0.134
Croatia - people tested,HRV,2020-04-01,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,7680,665,1.871,0.162,593.333,0.145,580.286,0.141
Croatia - people tested,HRV,2020-04-02,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,8352,672,2.034,0.164,649.333,0.158,592,0.144
Croatia - people tested,HRV,2020-04-03,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,9250,898,2.253,0.219,745,0.182,638.857,0.156
Croatia - people tested,HRV,2020-04-04,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,9833,583,2.395,0.142,717.667,0.175,659.714,0.161
Croatia - people tested,HRV,2020-04-05,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,10847,1014,2.642,0.247,831.667,0.203,706.714,0.172
Croatia - people tested,HRV,2020-04-06,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,11464,617,2.793,0.15,738,0.18,722.857,0.176
Croatia - people tested,HRV,2020-04-07,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,12322,858,3.002,0.209,829.667,0.202,758.143,0.185
Croatia - people tested,HRV,2020-04-08,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,13125,803,3.197,0.196,759.333,0.185,777.857,0.19
Croatia - people tested,HRV,2020-04-09,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,13680,555,3.332,0.135,738.667,0.18,761.143,0.185
Croatia - people tested,HRV,2020-04-10,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,14612,932,3.559,0.227,763.333,0.186,766,0.187
Croatia - people tested,HRV,2020-04-11,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,15691,1079,3.822,0.263,855.333,0.208,836.857,0.204
Croatia - people tested,HRV,2020-04-12,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,16381,690,3.99,0.168,900.333,0.219,790.571,0.193
Croatia - people tested,HRV,2020-04-13,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,17790,1409,4.333,0.343,1059.333,0.258,903.714,0.22
Croatia - people tested,HRV,2020-04-14,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,18359,569,4.472,0.139,889.333,0.217,862.429,0.21
Croatia - people tested,HRV,2020-04-15,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,19256,897,4.691,0.218,958.333,0.233,875.857,0.213
Croatia - people tested,HRV,2020-04-16,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,20158,902,4.91,0.22,789.333,0.192,925.429,0.225
Croatia - people tested,HRV,2020-04-17,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,20953,795,5.104,0.194,864.667,0.211,905.857,0.221
Croatia - people tested,HRV,2020-04-18,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,21647,694,5.273,0.169,797,0.194,850.857,0.207
Croatia - people tested,HRV,2020-04-19,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,24186,2539,5.891,0.618,1342.667,0.327,1115,0.272
Croatia - people tested,HRV,2020-04-20,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,26610,2424,6.482,0.59,1885.667,0.459,1260,0.307
Croatia - people tested,HRV,2020-04-22,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,27614,,6.726,,,,,
Croatia - people tested,HRV,2020-04-23,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,28853,1239,7.028,0.302,,,,
Croatia - people tested,HRV,2020-04-24,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,30213,1360,7.36,0.331,,,,
Croatia - people tested,HRV,2020-04-25,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,30913,700,7.53,0.171,1099.667,0.268,,
Croatia - people tested,HRV,2020-04-26,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,31622,709,7.703,0.173,923,0.225,,
Croatia - people tested,HRV,2020-04-27,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,32817,1195,7.994,0.291,868,0.212,,
Croatia - people tested,HRV,2020-04-28,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,33577,760,8.179,0.185,888,0.216,,
Croatia - people tested,HRV,2020-04-29,https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,34476,899,8.398,0.219,951.333,0.232,980.286,0.239
Croatia - people tested,HRV,2020-04-30,https://web.archive.org/web/20200501145333/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,36917,2441,8.993,0.595,1366.667,0.333,1152,0.281
Croatia - people tested,HRV,2020-05-02,https://web.archive.org/web/20200502151051/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,37557,,9.148,,,,,
Croatia - people tested,HRV,2020-05-03,https://web.archive.org/web/20200503141652/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,38084,527,9.277,0.128,,,,
Croatia - people tested,HRV,2020-05-04,https://web.archive.org/web/20200504171429/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,39040,956,9.51,0.233,,,,
Croatia - people tested,HRV,2020-05-05,https://web.archive.org/web/20200505202246/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,39973,933,9.737,0.227,805.333,0.196,,
Croatia - people tested,HRV,2020-05-06,https://web.archive.org/web/20200506175452/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,41053,1080,10,0.263,989.667,0.241,,
Croatia - people tested,HRV,2020-05-07,https://web.archive.org/web/20200507200304/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,41938,885,10.216,0.216,966,0.235,,
Croatia - people tested,HRV,2020-05-08,https://web.archive.org/web/20200508130102/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,43378,1440,10.566,0.351,1135,0.277,,
Croatia - people tested,HRV,2020-05-09,https://web.archive.org/web/20200509164031/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,44218,840,10.771,0.205,1055,0.257,951.571,0.232
Croatia - people tested,HRV,2020-05-10,https://web.archive.org/web/20200510202948/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,44886,668,10.934,0.163,982.667,0.24,971.714,0.237
Croatia - people tested,HRV,2020-05-11,https://web.archive.org/web/20200511162523/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,46071,1185,11.222,0.289,897.667,0.219,1004.429,0.245
Croatia - people tested,HRV,2020-05-12,https://web.archive.org/web/20200512191650/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,47480,1409,11.566,0.343,1087.333,0.265,1072.429,0.261
Croatia - people tested,HRV,2020-05-13,https://web.archive.org/web/20200513185938/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,48737,1257,11.872,0.306,1283.667,0.313,1097.714,0.268
Croatia - people tested,HRV,2020-05-14,https://web.archive.org/web/20200514195110/https://www.koronavirus.hr/najnovije/ukupno-dosad-382-zarazene-osobe-u-hrvatskoj/35,Government of Croatia,,50340,1603,12.262,0.39,1423,0.346,1200.286,0.292
Cuba - tests performed,CUB,2020-03-22,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,518,,0.046,,,,,
Cuba - tests performed,CUB,2020-03-23,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,625,107,0.055,0.009,,,,
Cuba - tests performed,CUB,2020-03-24,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,738,113,0.065,0.01,,,,
Cuba - tests performed,CUB,2020-03-25,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,893,155,0.079,0.014,125,0.011,,
Cuba - tests performed,CUB,2020-03-26,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,1039,146,0.092,0.013,138,0.012,,
Cuba - tests performed,CUB,2020-03-27,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,1368,329,0.121,0.029,210,0.019,,
Cuba - tests performed,CUB,2020-03-28,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,1665,297,0.147,0.026,257.333,0.023,,
Cuba - tests performed,CUB,2020-03-29,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,2007,342,0.177,0.03,322.667,0.028,212.714,0.019
Cuba - tests performed,CUB,2020-03-30,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,2322,315,0.205,0.028,318,0.028,242.429,0.021
Cuba - tests performed,CUB,2020-03-31,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,2766,444,0.244,0.039,367,0.032,289.714,0.026
Cuba - tests performed,CUB,2020-04-01,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,3342,576,0.295,0.051,445,0.039,349.857,0.031
Cuba - tests performed,CUB,2020-04-02,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,4145,803,0.366,0.071,607.667,0.054,443.714,0.039
Cuba - tests performed,CUB,2020-04-03,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,5202,1057,0.459,0.093,812,0.072,547.714,0.048
Cuba - tests performed,CUB,2020-04-04,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,6403,1201,0.565,0.106,1020.333,0.09,676.857,0.06
Cuba - tests performed,CUB,2020-04-05,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,7167,764,0.633,0.067,1007.333,0.089,737.143,0.065
Cuba - tests performed,CUB,2020-04-06,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,8223,1056,0.726,0.093,1007,0.089,843,0.074
Cuba - tests performed,CUB,2020-04-07,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,9410,1187,0.831,0.105,1002.333,0.088,949.143,0.084
Cuba - tests performed,CUB,2020-04-08,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,10725,1315,0.947,0.116,1186,0.105,1054.714,0.093
Cuba - tests performed,CUB,2020-04-09,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,12023,1298,1.061,0.115,1266.667,0.112,1125.429,0.099
Cuba - tests performed,CUB,2020-04-10,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,13162,1139,1.162,0.101,1250.667,0.111,1137.143,0.1
Cuba - tests performed,CUB,2020-04-11,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,15057,1895,1.329,0.167,1444,0.128,1236.286,0.109
Cuba - tests performed,CUB,2020-04-12,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,17133,2076,1.513,0.183,1703.333,0.15,1423.714,0.126
Cuba - tests performed,CUB,2020-04-13,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,18767,1634,1.657,0.144,1868.333,0.165,1506.286,0.133
Cuba - tests performed,CUB,2020-04-14,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,20451,1684,1.806,0.149,1798,0.159,1577.286,0.139
Cuba - tests performed,CUB,2020-04-15,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,21837,1386,1.928,0.122,1568,0.138,1587.429,0.14
Cuba - tests performed,CUB,2020-04-16,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,23317,1480,2.059,0.131,1516.667,0.134,1613.429,0.142
Cuba - tests performed,CUB,2020-04-17,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,25212,1895,2.226,0.167,1587,0.14,1721.429,0.152
Cuba - tests performed,CUB,2020-04-18,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,26982,1770,2.382,0.156,1715,0.151,1703.571,0.15
Cuba - tests performed,CUB,2020-04-19,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,28598,1616,2.525,0.143,1760.333,0.155,1637.857,0.145
Cuba - tests performed,CUB,2020-04-20,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,30416,1818,2.685,0.161,1734.667,0.153,1664.143,0.147
Cuba - tests performed,CUB,2020-04-21,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,32276,1860,2.85,0.164,1764.667,0.156,1689.286,0.149
Cuba - tests performed,CUB,2020-04-22,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,34243,1967,3.023,0.174,1881.667,0.166,1772.286,0.157
Cuba - tests performed,CUB,2020-04-23,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,36134,1891,3.19,0.167,1906,0.168,1831,0.162
Cuba - tests performed,CUB,2020-04-24,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,37991,1857,3.354,0.164,1905,0.168,1825.571,0.161
Cuba - tests performed,CUB,2020-04-25,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,39828,1837,3.516,0.162,1861.667,0.164,1835.143,0.162
Cuba - tests performed,CUB,2020-04-26,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,41651,1823,3.677,0.161,1839,0.162,1864.714,0.165
Cuba - tests performed,CUB,2020-04-27,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,43508,1857,3.841,0.164,1839,0.162,1870.286,0.165
Cuba - tests performed,CUB,2020-04-28,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,45344,1836,4.003,0.162,1838.667,0.162,1866.857,0.165
Cuba - tests performed,CUB,2020-04-29,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,47347,2003,4.18,0.177,1898.667,0.168,1872,0.165
Cuba - tests performed,CUB,2020-04-30,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,49409,2062,4.362,0.182,1967,0.174,1896.429,0.167
Cuba - tests performed,CUB,2020-05-01,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,51506,2097,4.547,0.185,2054,0.181,1930.714,0.17
Cuba - tests performed,CUB,2020-05-02,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,53545,2039,4.727,0.18,2066,0.182,1959.571,0.173
Cuba - tests performed,CUB,2020-05-03,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,55542,1997,4.904,0.176,2044.333,0.18,1984.429,0.175
Cuba - tests performed,CUB,2020-05-04,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,57711,2169,5.095,0.191,2068.333,0.182,2029,0.179
Cuba - tests performed,CUB,2020-05-05,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,59648,1937,5.266,0.171,2034.333,0.179,2043.429,0.18
Cuba - tests performed,CUB,2020-05-06,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,61613,1965,5.44,0.173,2023.667,0.178,2038,0.18
Cuba - tests performed,CUB,2020-05-07,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,63560,1947,5.612,0.172,1949.667,0.172,2021.571,0.178
Cuba - tests performed,CUB,2020-05-08,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,65509,1949,5.784,0.172,1953.667,0.172,2000.429,0.176
Cuba - tests performed,CUB,2020-05-09,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,67335,1826,5.945,0.161,1907.333,0.168,1970,0.174
Cuba - tests performed,CUB,2020-05-10,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,69182,1847,6.108,0.163,1874,0.165,1948.571,0.172
Cuba - tests performed,CUB,2020-05-11,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,71157,1975,6.282,0.174,1882.667,0.166,1920.857,0.169
Cuba - tests performed,CUB,2020-05-12,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,73129,1972,6.456,0.174,1931.333,0.17,1925.857,0.17
Cuba - tests performed,CUB,2020-05-13,https://covid19cubadata.github.io/#cuba,Ministry of Public Health,Made available on GitHub by covid19cubadata,75142,2013,6.634,0.178,1986.667,0.175,1932.714,0.171
Czech Republic - tests performed,CZE,2020-01-27,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,20,,0.002,,,,,
Czech Republic - tests performed,CZE,2020-01-28,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,28,8,0.003,0.001,,,,
Czech Republic - tests performed,CZE,2020-01-29,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,33,5,0.003,0,,,,
Czech Republic - tests performed,CZE,2020-01-30,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,34,1,0.003,0,4.667,0,,
Czech Republic - tests performed,CZE,2020-01-31,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,37,3,0.003,0,3,0,,
Czech Republic - tests performed,CZE,2020-02-01,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,38,1,0.004,0,1.667,0,,
Czech Republic - tests performed,CZE,2020-02-02,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,43,5,0.004,0,3,0,,
Czech Republic - tests performed,CZE,2020-02-03,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,48,5,0.004,0,3.667,0,4,0
Czech Republic - tests performed,CZE,2020-02-04,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,53,5,0.005,0,5,0,3.571,0
Czech Republic - tests performed,CZE,2020-02-06,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,56,,0.005,,,,,
Czech Republic - tests performed,CZE,2020-02-07,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,62,6,0.006,0.001,,,,
Czech Republic - tests performed,CZE,2020-02-09,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,64,,0.006,,,,,
Czech Republic - tests performed,CZE,2020-02-10,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,72,8,0.007,0.001,,,,
Czech Republic - tests performed,CZE,2020-02-11,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,74,2,0.007,0,,,,
Czech Republic - tests performed,CZE,2020-02-12,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,75,1,0.007,0,3.667,0,,
Czech Republic - tests performed,CZE,2020-02-13,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,76,1,0.007,0,1.333,0,,
Czech Republic - tests performed,CZE,2020-02-15,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,77,,0.007,,,,,
Czech Republic - tests performed,CZE,2020-02-16,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,78,1,0.007,0,,,,
Czech Republic - tests performed,CZE,2020-02-17,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,80,2,0.007,0,,,,
Czech Republic - tests performed,CZE,2020-02-19,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,82,,0.008,,,,,
Czech Republic - tests performed,CZE,2020-02-22,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,83,,0.008,,,,,
Czech Republic - tests performed,CZE,2020-02-23,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,86,3,0.008,0,,,,
Czech Republic - tests performed,CZE,2020-02-24,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,98,12,0.009,0.001,,,,
Czech Republic - tests performed,CZE,2020-02-25,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,112,14,0.01,0.001,9.667,0.001,,
Czech Republic - tests performed,CZE,2020-02-26,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,135,23,0.013,0.002,16.333,0.001,,
Czech Republic - tests performed,CZE,2020-02-27,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,170,35,0.016,0.003,24,0.002,,
Czech Republic - tests performed,CZE,2020-02-28,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,193,23,0.018,0.002,27,0.002,,
Czech Republic - tests performed,CZE,2020-02-29,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,200,7,0.019,0.001,21.667,0.002,16.714,0.001
Czech Republic - tests performed,CZE,2020-03-01,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,211,11,0.02,0.001,13.667,0.001,17.857,0.002
Czech Republic - tests performed,CZE,2020-03-02,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,262,51,0.024,0.005,23,0.002,23.429,0.002
Czech Republic - tests performed,CZE,2020-03-03,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,340,78,0.032,0.007,46.667,0.004,32.571,0.003
Czech Republic - tests performed,CZE,2020-03-04,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,407,67,0.038,0.006,65.333,0.006,38.857,0.004
Czech Republic - tests performed,CZE,2020-03-05,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,483,76,0.045,0.007,73.667,0.007,44.714,0.004
Czech Republic - tests performed,CZE,2020-03-06,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,594,111,0.055,0.01,84.667,0.008,57.286,0.005
Czech Republic - tests performed,CZE,2020-03-07,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,787,193,0.073,0.018,126.667,0.012,83.857,0.008
Czech Republic - tests performed,CZE,2020-03-08,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,928,141,0.087,0.013,148.333,0.014,102.429,0.009
Czech Republic - tests performed,CZE,2020-03-09,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,1193,265,0.111,0.025,199.667,0.019,133,0.012
Czech Republic - tests performed,CZE,2020-03-10,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,1358,165,0.127,0.015,190.333,0.018,145.429,0.013
Czech Republic - tests performed,CZE,2020-03-11,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,1816,458,0.17,0.043,296,0.028,201.286,0.019
Czech Republic - tests performed,CZE,2020-03-12,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,2353,537,0.22,0.05,386.667,0.036,267.143,0.025
Czech Republic - tests performed,CZE,2020-03-13,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,3198,845,0.299,0.079,613.333,0.057,372,0.035
Czech Republic - tests performed,CZE,2020-03-14,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,4184,986,0.391,0.092,789.333,0.074,485.286,0.045
Czech Republic - tests performed,CZE,2020-03-15,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,5212,1028,0.487,0.096,953,0.089,612,0.057
Czech Republic - tests performed,CZE,2020-03-16,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,6531,1319,0.61,0.123,1111,0.104,762.571,0.071
Czech Republic - tests performed,CZE,2020-03-17,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,7825,1294,0.731,0.121,1213.667,0.113,923.857,0.086
Czech Republic - tests performed,CZE,2020-03-18,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,9581,1756,0.895,0.164,1456.333,0.136,1109.286,0.104
Czech Republic - tests performed,CZE,2020-03-19,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,11840,2259,1.106,0.211,1769.667,0.165,1355.286,0.127
Czech Republic - tests performed,CZE,2020-03-20,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,13961,2121,1.304,0.198,2045.333,0.191,1537.571,0.144
Czech Republic - tests performed,CZE,2020-03-21,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,15843,1882,1.479,0.176,2087.333,0.195,1665.571,0.156
Czech Republic - tests performed,CZE,2020-03-22,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,17644,1801,1.648,0.168,1934.667,0.181,1776,0.166
Czech Republic - tests performed,CZE,2020-03-23,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,19935,2291,1.862,0.214,1991.333,0.186,1914.857,0.179
Czech Republic - tests performed,CZE,2020-03-24,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,22997,3062,2.147,0.286,2384.667,0.223,2167.429,0.202
Czech Republic - tests performed,CZE,2020-03-25,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,27104,4107,2.531,0.384,3153.333,0.295,2503.286,0.234
Czech Republic - tests performed,CZE,2020-03-26,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,31737,4633,2.964,0.433,3934,0.368,2842.429,0.266
Czech Republic - tests performed,CZE,2020-03-27,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,37096,5359,3.464,0.5,4699.667,0.439,3305,0.309
Czech Republic - tests performed,CZE,2020-03-28,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,41320,4224,3.858,0.394,4738.667,0.442,3639.571,0.34
Czech Republic - tests performed,CZE,2020-03-29,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,44168,2848,4.124,0.266,4143.667,0.387,3789.143,0.354
Czech Republic - tests performed,CZE,2020-03-30,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,49327,5159,4.606,0.482,4077,0.381,4198.857,0.392
Czech Republic - tests performed,CZE,2020-03-31,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,55988,6661,5.228,0.622,4889.333,0.457,4713,0.44
Czech Republic - tests performed,CZE,2020-04-01,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,62090,6102,5.798,0.57,5974,0.558,4998,0.467
Czech Republic - tests performed,CZE,2020-04-02,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,68763,6673,6.421,0.623,6478.667,0.605,5289.429,0.494
Czech Republic - tests performed,CZE,2020-04-03,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,76161,7398,7.112,0.691,6724.333,0.628,5580.714,0.521
Czech Republic - tests performed,CZE,2020-04-04,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,81998,5837,7.657,0.545,6636,0.62,5811.143,0.543
Czech Republic - tests performed,CZE,2020-04-05,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,86810,4812,8.106,0.449,6015.667,0.562,6091.714,0.569
Czech Republic - tests performed,CZE,2020-04-06,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,93245,6435,8.707,0.601,5694.667,0.532,6274,0.586
Czech Republic - tests performed,CZE,2020-04-07,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,101418,8173,9.47,0.763,6473.333,0.604,6490,0.606
Czech Republic - tests performed,CZE,2020-04-08,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,109887,8469,10.261,0.791,7692.333,0.718,6828.143,0.638
Czech Republic - tests performed,CZE,2020-04-09,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,118067,8180,11.025,0.764,8274,0.773,7043.429,0.658
Czech Republic - tests performed,CZE,2020-04-10,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,123769,5702,11.557,0.532,7450.333,0.696,6801.143,0.635
Czech Republic - tests performed,CZE,2020-04-11,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,128660,4891,12.014,0.457,6257.667,0.584,6666,0.622
Czech Republic - tests performed,CZE,2020-04-12,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,131910,3250,12.318,0.303,4614.333,0.431,6442.857,0.602
Czech Republic - tests performed,CZE,2020-04-13,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,135125,3215,12.618,0.3,3785.333,0.353,5982.857,0.559
Czech Republic - tests performed,CZE,2020-04-14,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,141298,6173,13.194,0.576,4212.667,0.393,5697.143,0.532
Czech Republic - tests performed,CZE,2020-04-15,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,149774,8476,13.986,0.791,5954.667,0.556,5698.143,0.532
Czech Republic - tests performed,CZE,2020-04-16,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,158155,8381,14.768,0.783,7676.667,0.717,5726.857,0.535
Czech Republic - tests performed,CZE,2020-04-17,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,166443,8288,15.542,0.774,8381.667,0.783,6096.286,0.569
Czech Republic - tests performed,CZE,2020-04-18,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,172048,5605,16.066,0.523,7424.667,0.693,6198.286,0.579
Czech Republic - tests performed,CZE,2020-04-19,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,176075,4027,16.442,0.376,5973.333,0.558,6309.286,0.589
Czech Republic - tests performed,CZE,2020-04-20,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,182642,6567,17.055,0.613,5399.667,0.504,6788.143,0.634
Czech Republic - tests performed,CZE,2020-04-21,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,190983,8341,17.834,0.779,6311.667,0.589,7097.857,0.663
Czech Republic - tests performed,CZE,2020-04-22,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,199801,8818,18.657,0.823,7908.667,0.738,7146.714,0.667
Czech Republic - tests performed,CZE,2020-04-23,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,207702,7901,19.395,0.738,8353.333,0.78,7078.143,0.661
Czech Republic - tests performed,CZE,2020-04-24,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,214831,7129,20.061,0.666,7949.333,0.742,6912.571,0.645
Czech Republic - tests performed,CZE,2020-04-25,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,219277,4446,20.476,0.415,6492,0.606,6747,0.63
Czech Republic - tests performed,CZE,2020-04-26,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,222658,3381,20.792,0.316,4985.333,0.466,6654.714,0.621
Czech Republic - tests performed,CZE,2020-04-27,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,230412,7754,21.516,0.724,5193.667,0.485,6824.286,0.637
Czech Republic - tests performed,CZE,2020-04-28,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,239153,8741,22.332,0.816,6625.333,0.619,6881.429,0.643
Czech Republic - tests performed,CZE,2020-04-29,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,246475,7322,23.016,0.684,7939,0.741,6667.714,0.623
Czech Republic - tests performed,CZE,2020-04-30,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,253871,7396,23.706,0.691,7819.667,0.73,6595.571,0.616
Czech Republic - tests performed,CZE,2020-05-01,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,258247,4376,24.115,0.409,6364.667,0.595,6202.286,0.579
Czech Republic - tests performed,CZE,2020-05-02,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,262142,3895,24.479,0.364,5222.333,0.488,6123.571,0.572
Czech Republic - tests performed,CZE,2020-05-03,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,265898,3756,24.829,0.351,4009,0.375,6177.143,0.577
Czech Republic - tests performed,CZE,2020-05-04,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,273472,7574,25.537,0.707,5075,0.474,6151.429,0.575
Czech Republic - tests performed,CZE,2020-05-05,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,282899,9427,26.417,0.88,6919,0.646,6249.429,0.584
Czech Republic - tests performed,CZE,2020-05-06,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,291136,8237,27.186,0.769,8412.667,0.785,6380.143,0.596
Czech Republic - tests performed,CZE,2020-05-07,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,298480,7344,27.872,0.686,8336,0.778,6372.714,0.595
Czech Republic - tests performed,CZE,2020-05-08,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,303037,4557,28.297,0.426,6712.667,0.627,6398.571,0.598
Czech Republic - tests performed,CZE,2020-05-09,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,306819,3782,28.651,0.353,5227.667,0.488,6382.429,0.596
Czech Republic - tests performed,CZE,2020-05-10,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,310870,4051,29.029,0.378,4130,0.386,6424.571,0.6
Czech Republic - tests performed,CZE,2020-05-11,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,318675,7805,29.758,0.729,5212.667,0.487,6457.571,0.603
Czech Republic - tests performed,CZE,2020-05-12,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,327354,8679,30.568,0.81,6845,0.639,6350.714,0.593
Czech Republic - tests performed,CZE,2020-05-13,https://onemocneni-aktualne.mzcr.cz/api/v1/covid-19/testy.csv,Ministry of Health,,334714,7360,31.255,0.687,7948,0.742,6225.429,0.581
Denmark - people tested,DNK,2020-03-17,https://files.ssi.dk/COVID19-overvaagningsrapport-18032020,Statens Serum Institut,Cumulative total begins from 27 Jan. We sum the daily test totals from 4/03-17/03. The report at this link: https://files.ssi.dk/COVID19-overvaagningsrapport-17032020 also for the 17/03/2020 seems to be an earlier version,7630,,1.317,,,,,
Denmark - people tested,DNK,2020-03-19,https://files.ssi.dk/COVID19-overvaagningsrapport-19032020,Statens Serum Institut,Cumulative total begins from 27 Jan,8847,,1.527,,,,,
Denmark - people tested,DNK,2020-03-20,https://files.ssi.dk/COVID19-overvaagningsrapport-21032020-2,Statens Serum Institut,Cumulative total begins from 27 Jan,11657,2810,2.013,0.485,,,,
Denmark - people tested,DNK,2020-03-21,https://files.ssi.dk/COVID19-overvaagningsrapport-22032020,Statens Serum Institut,Cumulative total begins from 27 Jan,12351,694,2.132,0.12,,,,
Denmark - people tested,DNK,2020-03-22,https://files.ssi.dk/COVID19-overvaagningsrapport-23032020,Statens Serum Institut,Cumulative total begins from 27 Jan,12843,492,2.217,0.085,1332,0.23,,
Denmark - people tested,DNK,2020-03-23,https://files.ssi.dk/COVID19-overvaagningsrapport-24032020,Statens Serum Institut,Cumulative total begins from 27 Jan,13756,913,2.375,0.158,699.667,0.121,,
Denmark - people tested,DNK,2020-03-25,https://files.ssi.dk/COVID19-overvaagningsrapport-25032020,Statens Serum Institut,Cumulative total begins from 27 Jan,14870,,2.567,,,,,
Denmark - people tested,DNK,2020-03-26,https://files.ssi.dk/COVID19-overvaagningsrapport-26032020,Statens Serum Institut,Cumulative total begins from 27 Jan,15981,1111,2.759,0.192,,,,
Denmark - people tested,DNK,2020-03-27,https://files.ssi.dk/COVID19-overvaagningsrapport-27032020-gk38,Statens Serum Institut,Cumulative total begins from 27 Jan,17275,1294,2.982,0.223,,,,
Denmark - people tested,DNK,2020-03-28,https://files.ssi.dk/COVID19-overvaagningsrapport-28032020-wl35,Statens Serum Institut,Cumulative total begins from 27 Jan,18810,1535,3.247,0.265,1313.333,0.227,,
Denmark - people tested,DNK,2020-03-29,https://files.ssi.dk/COVID19-overvaagningsrapport-29032020-f67s,Statens Serum Institut,Cumulative total begins from 27 Jan,20198,1388,3.487,0.24,1405.667,0.243,,
Denmark - people tested,DNK,2020-03-30,https://files.ssi.dk/COVID19-overvaagningsrapport-30032020-hb2a,Statens Serum Institut,Cumulative total begins from 27 Jan,21378,1180,3.691,0.204,1367.667,0.236,,
Denmark - people tested,DNK,2020-03-31,https://files.ssi.dk/COVID19-overvaagningsrapport-31032020-2us61,Statens Serum Institut,Cumulative total begins from 27 Jan,23763,2385,4.103,0.412,1651,0.285,,
Denmark - people tested,DNK,2020-04-01,https://files.ssi.dk/COVID19-overvaagningsrapport-01042020-apl4,Statens Serum Institut,Cumulative total begins from 27 Jan,26776,3013,4.623,0.52,2192.667,0.379,1700.857,0.294
Denmark - people tested,DNK,2020-04-02,https://files.ssi.dk/COVID19-overvaagningsrapport-02042020-kl45,Statens Serum Institut,Cumulative total begins from 27 Jan,29921,3145,5.166,0.543,2847.667,0.492,1991.429,0.344
Denmark - people tested,DNK,2020-04-03,https://files.ssi.dk/covid-19-overvaagningsrapport-03042020-2,Statens Serum Institut,Cumulative total begins from 27 Jan,34388,4467,5.937,0.771,3541.667,0.611,2444.714,0.422
Denmark - people tested,DNK,2020-04-04,https://files.ssi.dk/COVID19-overvaagningsrapport-04042020-wdcs,Statens Serum Institut,Cumulative total begins from 7 Jan,39928,5540,6.893,0.956,4384,0.757,3016.857,0.521
Denmark - people tested,DNK,2020-04-05,https://files.ssi.dk/COVID19-overvaagningsrapport-05042020-dd29,Statens Serum Institut,Cumulative total begins from 7 Jan,43734,3806,7.55,0.657,4604.333,0.795,3362.286,0.58
Denmark - people tested,DNK,2020-04-06,https://files.ssi.dk/covid19-overvaagningsrapport-06042020-hu4v,Statens Serum Institut,Cumulative total begins from 7 Jan,46916,3182,8.1,0.549,4176,0.721,3648.286,0.63
Denmark - people tested,DNK,2020-04-07,https://files.ssi.dk/COVID19-overvaagningsrapport-07042020-wvp1,Statens Serum Institut,Cumulative total begins from 7 Jan,51544,4628,8.899,0.799,3872,0.668,3968.714,0.685
Denmark - people tested,DNK,2020-04-08,https://files.ssi.dk/COVID19-overvaagningsrapport-08042020-zm92,Statens Serum Institut,Cumulative total begins from 7 Jan,57535,5991,9.933,1.034,4600.333,0.794,4394.143,0.758
Denmark - people tested,DNK,2020-04-09,https://files.ssi.dk/COVID19-overvaagningsrapport-09042020-31us,Statens Serum Institut,Cumulative total begins from 7 Jan,62210,4675,10.74,0.807,5098,0.88,4612.714,0.796
Denmark - people tested,DNK,2020-04-10,https://files.ssi.dk/COVID19-overvaagningsrapport-10042020-21bn,Statens Serum Institut,Cumulative total begins from 7 Jan,64731,2521,11.176,0.435,4395.667,0.759,4334.714,0.748
Denmark - people tested,DNK,2020-04-11,https://files.ssi.dk/COVID19-overvaagningsrapport-11042020-ednk,Statens Serum Institut,Cumulative total begins from 7 Jan,67771,3040,11.7,0.525,3412,0.589,3977.571,0.687
Denmark - people tested,DNK,2020-04-12,https://files.ssi.dk/COVID19-overvaagningsrapport-12042020-hh8b,Statens Serum Institut,Cumulative total begins from 7 Jan,70125,2354,12.107,0.406,2638.333,0.455,3770.143,0.651
Denmark - people tested,DNK,2020-04-13,http://web.archive.org/web/20200414213814/https://files.ssi.dk/COVID19-overvaagningsrapport-13042020-gy70,Statens Serum Institut,Cumulative total begins from 7 Jan,72099,1974,12.448,0.341,2456,0.424,3597.571,0.621
Denmark - people tested,DNK,2020-04-14,http://web.archive.org/web/20200414213817/https://files.ssi.dk/COVID19-overvaagningsrapport-14042020-wgkv,Statens Serum Institut,Cumulative total begins from 7 Jan,73919,1820,12.762,0.314,2049.333,0.354,3196.429,0.552
Denmark - people tested,DNK,2020-04-15,http://web.archive.org/web/20200421144925/https://files.ssi.dk/COVID19-overvaagningsrapport-15042020-ht7b,Statens Serum Institut,Cumulative total begins from 7 Jan,77712,3793,13.417,0.655,2529,0.437,2882.429,0.498
Denmark - people tested,DNK,2020-04-16,http://web.archive.org/web/20200423192742/https://files.ssi.dk/COVID19-overvaagningsrapport-16042020-hzz5,Statens Serum Institut,Cumulative total begins from 7 Jan,82380,4668,14.223,0.806,3427,0.592,2881.429,0.497
Denmark - people tested,DNK,2020-04-17,https://www.ssi.dk/-/media/arkiv/dk/aktuelt/sygdomsudbrud/covid19-rapport/17042020/covid19-overvaagningsrapport-17042020-gt90.pdf?la=da,Statens Serum Institut,Cumulative total begins from 7 Jan,87024,4644,15.024,0.802,4368.333,0.754,3184.714,0.55
Denmark - people tested,DNK,2020-04-18,http://web.archive.org/web/20200420041023/https://files.ssi.dk/COVID19-overvaagningsrapport-18042020-a8sg,Statens Serum Institut,Cumulative total begins from 7 Jan,91437,4413,15.786,0.762,4575,0.79,3380.857,0.584
Denmark - people tested,DNK,2020-04-19,https://files.ssi.dk/COVID19-overvaagningsrapport-19042020-hba7,Statens Serum Institut,Cumulative total begins from 7 Jan,94277,2840,16.277,0.49,3965.667,0.685,3450.286,0.596
Denmark - people tested,DNK,2020-04-20,https://files.ssi.dk/COVID19-overvaagningsrapport-20042020-2dd09,Statens Serum Institut,Cumulative total begins from 7 Jan,96244,1967,16.616,0.34,3073.333,0.531,3449.286,0.596
Denmark - people tested,DNK,2020-04-21,http://web.archive.org/web/20200421140334/https://files.ssi.dk/COVID19-overvaagningsrapport-21032020-hj78,Statens Serum Institut,Cumulative total begins from 13 Jan,100543,4299,17.358,0.742,3035.333,0.524,3803.429,0.657
Denmark - people tested,DNK,2020-04-22,https://files.ssi.dk/covid19-overvaagningsrapport-22042020-lj45,Statens Serum Institut,Cumulative total begins from 13 Jan,108465,7922,18.726,1.368,4729.333,0.817,4393.286,0.759
Denmark - people tested,DNK,2020-04-23,https://files.ssi.dk/covid19-overvaagningsrapport-23042020-gl5b,Statens Serum Institut,Cumulative total begins from 13 Jan,116621,8156,20.134,1.408,6792.333,1.173,4891.571,0.845
Denmark - people tested,DNK,2020-04-24,http://web.archive.org/web/20200424135833/https://files.ssi.dk/COVID19-overvaagningsrapport-24042020-ds65,Statens Serum Institut,Cumulative total begins from 13 Jan,125329,8708,21.638,1.503,8262,1.426,5472.143,0.945
Denmark - people tested,DNK,2020-04-25,http://web.archive.org/web/20200425133947/https://files.ssi.dk/COVID19-overvaagningsrapport-25042020-sr21,Statens Serum Institut,Cumulative total begins from 13 Jan,136738,11409,23.607,1.97,9424.333,1.627,6471.571,1.117
Denmark - people tested,DNK,2020-04-26,https://files.ssi.dk/COVID19-overvaagningsrapport-26042020-y34f,Statens Serum Institut,Cumulative total begins from 13 Jan,146915,10177,25.364,1.757,10098,1.743,7519.714,1.298
Denmark - people tested,DNK,2020-04-27,http://web.archive.org/web/20200427161431/https://files.ssi.dk/COVID19-overvaagningsrapport-27042020-ce23,Statens Serum Institut,Cumulative total begins from 13 Jan,155810,8895,26.9,1.536,10160.333,1.754,8509.429,1.469
Denmark - people tested,DNK,2020-04-28,https://files.ssi.dk/COVID19-overvaagningsrapport-28042020-gg64,Statens Serum Institut,Cumulative total begins from 13 Jan,166846,11036,28.805,1.905,10036,1.733,9471.857,1.635
Denmark - people tested,DNK,2020-04-29,https://files.ssi.dk/COVID19-overvaagningsrapport-29042020-wl02,Statens Serum Institut,Cumulative total begins from 13 Jan,180062,13216,31.087,2.282,11049,1.908,10228.143,1.766
Denmark - people tested,DNK,2020-04-30,https://files.ssi.dk/COVID19-overvaagningsrapport-30042020-2h7d,Statens Serum Institut,Cumulative total begins from 13 Jan,193165,13103,33.349,2.262,12451.667,2.15,10934.857,1.888
Denmark - people tested,DNK,2020-05-01,https://files.ssi.dk/COVID19-overvaagningsrapport-01052020-prst,Statens Serum Institut,Cumulative total begins from 13 Jan,206576,13411,35.664,2.315,13243.333,2.286,11606.714,2.004
Denmark - people tested,DNK,2020-05-02,https://files.ssi.dk/COVID19-overvaagningsrapport-02052020-l9i8,Statens Serum Institut,Cumulative total begins from 27 Jan,221912,15336,38.312,2.648,13950,2.408,12167.714,2.101
Denmark - people tested,DNK,2020-05-03,https://files.ssi.dk/COVID19-overvaagningsrapport-03052020-am43,Statens Serum Institut,Cumulative total begins from 27 Jan,233799,11887,40.364,2.052,13544.667,2.338,12412,2.143
Denmark - people tested,DNK,2020-05-04,https://files.ssi.dk/COVID19-overvaagningsrapport-04052020-hu28,Statens Serum Institut,Cumulative total begins from 27 Jan,244791,10992,42.262,1.898,12738.333,2.199,12711.571,2.195
Denmark - people tested,DNK,2020-05-05,https://files.ssi.dk/COVID19-overvaagningsrapport-05052020-s0l0,Statens Serum Institut,Cumulative total begins from 27 Jan,257738,12947,44.497,2.235,11942,2.062,12984.571,2.242
Denmark - people tested,DNK,2020-05-06,https://files.ssi.dk/COVID19-overvaagningsrapport-06052020-pp5f,Statens Serum Institut,Cumulative total begins from 27 Jan,270680,12942,46.732,2.234,12293.667,2.122,12945.429,2.235
Denmark - people tested,DNK,2020-05-07,https://files.ssi.dk/COVID19-overvaagningsrapport-07052020-8t4k,Statens Serum Institut,Cumulative total begins from 27 Jan,284480,13800,49.114,2.383,13229.667,2.284,13045,2.252
Denmark - people tested,DNK,2020-05-08,https://files.ssi.dk/COVID19-overvaagningsrapport-08052020-krk5,Statens Serum Institut,Cumulative total begins from 27 Jan,298488,14008,51.533,2.418,13583.333,2.345,13130.286,2.267
Denmark - people tested,DNK,2020-05-09,https://files.ssi.dk/COVID19-overvaagningsrapport-09052020-hu51,Statens Serum Institut,Cumulative total begins from 27 Jan,308984,10496,53.345,1.812,12768,2.204,12438.857,2.147
Denmark - people tested,DNK,2020-05-10,https://files.ssi.dk/COVID19-overvaagningsrapport-10052020-uu5f,Statens Serum Institut,Cumulative total begins from 27 Jan,317834,8850,54.873,1.528,11118,1.919,12005,2.073
Denmark - people tested,DNK,2020-05-11,https://files.ssi.dk/COVID19-overvaagningsrapport-11052020-st5r,Statens Serum Institut,Cumulative total begins from 27 Jan,326560,8726,56.379,1.507,9357.333,1.616,11681.286,2.017
Denmark - people tested,DNK,2020-05-12,https://files.ssi.dk/COVID19-overvaagningsrapport-12052020-2-8ft5,Statens Serum Institut,Cumulative total begins from 27 Jan,334260,7700,57.709,1.329,8425.333,1.455,10931.714,1.887
Denmark - people tested,DNK,2020-05-13,https://files.ssi.dk/COVID19-overvaagningsrapport-13052020-xrpt,Statens Serum Institut,Cumulative total begins from 27 Jan,345712,11452,59.686,1.977,9292.667,1.604,10718.857,1.851
Ecuador - units unclear,ECU,2020-03-18,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/11INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-18032020-15h001.pdf,Government of Ecuador,Sum of confirmados and descartados,480,,0.027,,,,,
Ecuador - units unclear,ECU,2020-03-19,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/13INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-19032020-16H00.pdf,Government of Ecuador,Sum of confirmados and descartados,672,,0.038,,,,,
Ecuador - units unclear,ECU,2020-03-20,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/15INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-20032020-17H00-V2.pdf,Government of Ecuador,Sum of confirmados and descartados,959,,0.054,,,,,
Ecuador - units unclear,ECU,2020-03-21,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-21032020-17H00.pdf,Government of Ecuador,Sum of confirmados and descartados,1181,,0.067,,,,,
Ecuador - units unclear,ECU,2020-03-22,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-22032020-10H00-V1-1-1.pdf,Government of Ecuador,Sum of confirmados and descartados,1661,,0.094,,,,,
Ecuador - units unclear,ECU,2020-03-23,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-23032020-10H00-1.pdf,Government of Ecuador,Sum of confirmados and descartados,2072,,0.117,,,,,
Ecuador - units unclear,ECU,2020-03-24,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-24032020-17h00.pdf,Government of Ecuador,Sum of confirmados and descartados,2307,,0.131,,,,,
Ecuador - units unclear,ECU,2020-03-25,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-25032020-17h00.pdf,Government of Ecuador,Sum of confirmados and descartados,2598,,0.147,,,,,
Ecuador - units unclear,ECU,2020-03-26,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-26032020-17h00-propuestav2.pdf,Government of Ecuador,Sum of confirmados and descartados,3125,,0.177,,,,,
Ecuador - units unclear,ECU,2020-03-27,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONAL-No.027-COVI-19-COE-NACIONAL-27032020-17h00.pdf,Government of Ecuador,Sum of confirmados and descartados,3568,,0.202,,,,,
Ecuador - units unclear,ECU,2020-03-28,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-28032020-17h00.pdf,Government of Ecuador,Sum of confirmados and descartados,3935,,0.223,,,,,
Ecuador - units unclear,ECU,2020-03-29,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-29032020-17h00-1.pdf,Government of Ecuador,Sum of confirmados and descartados,4123,,0.234,,,,,
Ecuador - units unclear,ECU,2020-03-30,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-30032020-17h00-v3.pdf,Government of Ecuador,Sum of confirmados and descartados,4219,,0.239,,,,,
Ecuador - units unclear,ECU,2020-03-31,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/03/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-31032020-17h00.pdf,Government of Ecuador,Sum of confirmados and descartados,4828,,0.274,,,,,
Ecuador - units unclear,ECU,2020-04-01,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/04/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-01042020-17h00-1.pdf,Government of Ecuador,Sum of confirmados and descartados,5591,,0.317,,,,,
Ecuador - units unclear,ECU,2020-04-02,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/04/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-02042020-10h00.pdf,Government of Ecuador,Sum of confirmados and descartados,6302,,0.357,,,,,
Ecuador - units unclear,ECU,2020-04-03,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/04/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-03042020-10h00-c.pdf,Government of Ecuador,Sum of confirmados and descartados,6656,,0.377,,,,,
Ecuador - units unclear,ECU,2020-04-04,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/04/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-04042020-10h00.pdf,Government of Ecuador,Sum of confirmados and descartados,6834,,0.387,,,,,
Ecuador - units unclear,ECU,2020-04-05,https://www.gestionderiesgos.gob.ec/wp-content/uploads/2020/04/INFOGRAFIA-NACIONALCOVI-19-COE-NACIONAL-05042020-10h00.pdf,Government of Ecuador,Sum of confirmados and descartados,7249,,0.411,,,,,