-
Notifications
You must be signed in to change notification settings - Fork 0
/
COVID-19 Pandemic Computational Essay.nb
2953 lines (2773 loc) · 124 KB
/
COVID-19 Pandemic Computational Essay.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.2' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 126978, 2945]
NotebookOptionsPosition[ 116811, 2797]
NotebookOutlinePosition[ 117931, 2832]
CellTagsIndexPosition[ 117771, 2824]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Government Measures Implemented During the COVID-19 Pandemic", "Title",
CellChangeTimes->{
3.8915345263302593`*^9, {3.9012583976731977`*^9,
3.901258413296604*^9}},ExpressionUUID->"3b417fd1-db9c-499f-83f9-\
3c817c9a5324"],
Cell["Computational Essay", "Subtitle",
CellChangeTimes->{{3.891534463503911*^9,
3.891534469019664*^9}},ExpressionUUID->"c97d6ba6-1663-454e-9ba8-\
6cda04d490c2"],
Cell[CellGroupData[{
Cell["Chantel Davies", "Subsection",
CellChangeTimes->{{3.891534418379024*^9, 3.891534423213501*^9}, {
3.891534481677322*^9, 3.891534487720147*^9}, {3.901258419543606*^9,
3.901258423432304*^9}},ExpressionUUID->"a7773181-59d3-4901-9592-\
a97668dc1d50"],
Cell["\<\
During the COVID-19 pandemic, nations around the world implemented a range of \
measures to reduce transmission of the virus. This computational essay will \
use a dataset available from the Wolfram Data Repository to explore aspects \
of these measures.\
\>", "Text",
CellChangeTimes->{{3.891534674400112*^9, 3.891534745024272*^9}, {
3.891534813597806*^9,
3.891534815419746*^9}},ExpressionUUID->"8b41222b-b683-4a91-90a2-\
c88aebb5d700"],
Cell["Data can be accessed via:", "Text",
CellChangeTimes->{{3.89153479585749*^9,
3.8915348208587713`*^9}},ExpressionUUID->"7451ac02-a532-434c-a0d7-\
a9fa245b656a"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "=",
RowBox[{"Get", "[",
RowBox[{
"ResourceObject", "[",
"\"\<Coronavirus COVID-19 Pandemic Government Measures\>\"", "]"}],
"]"}]}], ";"}]], "Input",
CellChangeTimes->{{3.889981346389229*^9, 3.8899814054848127`*^9},
3.890143438848181*^9, {3.901439701144589*^9, 3.901439708620831*^9}, {
3.901439741991069*^9, 3.901439768325189*^9}},
CellLabel->"In[3]:=",ExpressionUUID->"9bdff600-170f-4444-9d33-36cd5ce666f9"],
Cell["\<\
The first ten rows of the data can be viewed to see the general structure and \
main categories of variables.\
\>", "Text",
CellChangeTimes->{{3.891534840849448*^9,
3.8915348824239264`*^9}},ExpressionUUID->"2db5e1a0-23d3-489b-a863-\
87607d3cb840"],
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"govData", "[",
RowBox[{"[",
RowBox[{"1", ";;", "10"}], "]"}], "]"}], "//", "TableForm"}],
";"}]], "Input",
CellChangeTimes->{{3.8899818342243843`*^9, 3.889981865509173*^9},
3.890145521589459*^9},
CellLabel->"In[4]:=",ExpressionUUID->"8e07626f-0aa7-41ec-abd0-f25858756025"],
Cell["\<\
The variables of interest here are \
\[OpenCurlyQuote]Country\[CloseCurlyQuote], \[OpenCurlyQuote]Continent\
\[CloseCurlyQuote], \[OpenCurlyQuote]Category\[CloseCurlyQuote], \
\[OpenCurlyQuote]Measure\[CloseCurlyQuote], and \
\[OpenCurlyQuote]ImplementationDate\[CloseCurlyQuote]. A subset of the data \
can be created using all rows and the columns of interest:\
\>", "Text",
CellChangeTimes->{{3.891534899523225*^9,
3.8915350275197887`*^9}},ExpressionUUID->"fb39846e-9982-40aa-8788-\
049af56263ed"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "=",
RowBox[{"govData", "[",
RowBox[{"[",
RowBox[{"All", ",",
RowBox[{"{",
RowBox[{
"\"\<Country\>\"", ",", "\"\<Continent\>\"", ",", "\"\<Category\>\"",
",", "\"\<Measure\>\"", ",", "\"\<ImplementationDate\>\""}], "}"}]}],
"]"}], "]"}]}], ";"}]], "Input",
CellChangeTimes->{{3.890143554848249*^9, 3.8901436300816383`*^9}, {
3.890143681482456*^9, 3.8901437210375147`*^9}, {3.8911835637205677`*^9,
3.891183566523096*^9}, 3.891535046123768*^9},
CellLabel->"In[5]:=",ExpressionUUID->"7e98165c-72e5-4c5c-a5e1-fe2e0a32cda3"]
}, Open ]],
Cell[CellGroupData[{
Cell["The dataset", "Subsection",
CellChangeTimes->{{3.8915351713648787`*^9,
3.891535174340996*^9}},ExpressionUUID->"92d0db66-8156-4c18-b05e-\
ef430083191f"],
Cell["\<\
The variable \[OpenCurlyQuote]Country\[CloseCurlyQuote] lists names of \
various countries; \[OpenCurlyQuote]Continent\[CloseCurlyQuote] classifies \
each of these countries into their respective continents; \
\[OpenCurlyQuote]Category\[CloseCurlyQuote] contains the main categories of \
measures that each of the different types of \[OpenCurlyQuote]Measure\
\[CloseCurlyQuote] variable are categorised; \
\[OpenCurlyQuote]ImplementationDate\[CloseCurlyQuote] is the date at which \
each measure was implemented. With the exception of \
\[OpenCurlyQuote]ImplementationDate\[CloseCurlyQuote], all variables are \
nominal (unordered).\
\>", "Text",
CellChangeTimes->{{3.891535231584901*^9,
3.891535488400647*^9}},ExpressionUUID->"96d18714-2692-45f7-abe8-\
f15bb4b04c8c"],
Cell["Measures within each category can be viewed in a table:", "Text",
CellChangeTimes->{{3.891535777621644*^9,
3.891535792873784*^9}},ExpressionUUID->"576d8759-8080-474f-8896-\
63afd42e9e4f"],
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"Dataset", "[",
RowBox[{
RowBox[{
RowBox[{"<|",
RowBox[{"\"\<Category\>\"", "->", "#"}], "|>"}], "&"}], "/@",
RowBox[{"DeleteDuplicates", "@",
RowBox[{"Lookup", "[",
RowBox[{
RowBox[{"Normal", "@", "govData"}], ",",
RowBox[{"{",
RowBox[{"\"\<Category\>\"", ",", "\"\<Measure\>\""}], "}"}]}],
"]"}]}]}], "]"}], "//", "Sort"}], ";"}]], "Input",
CellChangeTimes->{{3.890130988627124*^9, 3.890131013348091*^9}, {
3.890131048462631*^9, 3.890131051148817*^9}, {3.890131096895344*^9,
3.890131100438504*^9}, 3.8901311323634777`*^9, {3.8901311667227497`*^9,
3.890131196783267*^9}, {3.8901423118459253`*^9, 3.890142314106702*^9},
3.891183643749762*^9, 3.891535740303235*^9, 3.891535806296541*^9},
CellLabel->"In[6]:=",ExpressionUUID->"97e0a21c-9a47-42c9-925f-e697cda5d583"],
Cell["\<\
View the frequency of different measures implemented by each country during \
the time period, in reverse order (most to least):\
\>", "Text",
CellChangeTimes->{{3.8915358460631533`*^9,
3.891535888319099*^9}},ExpressionUUID->"d86748f2-553f-475d-829a-\
167eff6160b8"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "[",
RowBox[{
RowBox[{"Counts", "/*",
RowBox[{"SortBy", "[",
RowBox[{
RowBox[{"-", "#"}], "&"}], "]"}]}], ",", "\"\<Country\>\""}], "]"}],
";"}]], "Input",
CellChangeTimes->{{3.890138301620137*^9, 3.8901383134918756`*^9}, {
3.890138349614243*^9, 3.8901383934898167`*^9}, {3.890138428064726*^9,
3.890138452781555*^9}, 3.8901387464634743`*^9, {3.8901388794064417`*^9,
3.8901388813242607`*^9}, {3.890143838924473*^9, 3.89014384163603*^9},
3.8911836582280073`*^9},
CellLabel->"In[7]:=",ExpressionUUID->"c959d7a4-955c-470c-a904-45d59295ffbb"],
Cell["\<\
View the frequency of different categories of measures implemented by \
different countries, in reverse order (most to least);\
\>", "Text",
CellChangeTimes->{{3.890138556915443*^9, 3.890138604319048*^9}, {
3.890143925226015*^9, 3.890143929525806*^9}, 3.890558139809318*^9, {
3.891535913616437*^9,
3.8915359181074953`*^9}},ExpressionUUID->"ddf30414-a443-4b28-aa9b-\
005de386f665"],
Cell[TextData[{
"The frequency of each category can be plotted in a bar chart",
ButtonBox[Cell[TextData[StyleBox["1",
FontVariations->{"CompatibilityType"->"Superscript"}]], "Citation",
Editable->False,
TaggingRules->{NoteData -> RowBox[{
Cell[
BoxData[
FormBox[
RowBox[{"https", ":"}], TraditionalForm]]], "//",
Cell[
BoxData[
FormBox[
RowBox[{
RowBox[{
RowBox[{"www", ".", "wolfram", ".", "com"}], "/", "wolfram"}],
"-",
RowBox[{
RowBox[{"u", "/", "courses"}], "/", "data"}], "-",
RowBox[{"science", "/", "playing"}], "-", "around", "-", "with",
"-", "government", "-", "data", "-", "in", "-", "wolfram", "-",
RowBox[{"language", "/"}]}], TraditionalForm]]]}]},ExpressionUUID->
"72431563-0843-4c59-b8bf-c0e1f9fee30d"],
BaseStyle->"Hyperlink",
ButtonData->"00008116"]
}], "Text",
CellChangeTimes->{{3.891535931753043*^9, 3.89153602753687*^9}, {
3.891537401345511*^9, 3.8915374014114437`*^9}, {3.891537648684203*^9,
3.8915376487511883`*^9}, {3.89154236338981*^9,
3.891542363463531*^9}},ExpressionUUID->"d92c40f6-d37d-493c-a0c6-\
ba80b9a1f5a7"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "[",
RowBox[{
RowBox[{"Counts", "/*",
RowBox[{"KeyValueMap", "[",
RowBox[{
RowBox[{"Labeled", "[",
RowBox[{"#2", ",", "#1"}], "]"}], "&"}], "]"}], "/*", "BarChart"}],
",", "\"\<Category\>\""}], "]"}], ";"}]], "Input",
CellChangeTimes->{{3.890140071062893*^9, 3.8901400744066*^9}, {
3.890140166943945*^9, 3.8901401835276814`*^9}, {3.890140246126135*^9,
3.890140249513446*^9}, {3.8901406330724697`*^9, 3.89014065667419*^9}, {
3.890140827998866*^9, 3.890140871492934*^9}, {3.8901409248008757`*^9,
3.890140955484811*^9}, {3.89014116128123*^9, 3.890141180448991*^9}, {
3.8901412325197678`*^9, 3.890141234530238*^9}, {3.890141271007827*^9,
3.890141417436479*^9}, {3.890141451761725*^9, 3.890141484306172*^9}, {
3.890141661671389*^9, 3.890141673464529*^9}, {3.890141899269433*^9,
3.89014199154987*^9}, {3.891184124882916*^9, 3.8911841649060802`*^9}, {
3.891184216431897*^9, 3.8911842180731897`*^9}, {3.891184258964217*^9,
3.89118430721563*^9}, 3.89118923289893*^9},
CellLabel->"In[8]:=",ExpressionUUID->"aa2aab4e-8e81-42df-9e7e-f99df60a39b6"],
Cell["\<\
There are missing data in one of the categories. This can be checked with:\
\>", "Text",
CellChangeTimes->{{3.890144036213415*^9,
3.890144078702064*^9}},ExpressionUUID->"342bdc50-d281-44c0-b6db-\
fbc42b0c049a"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "[",
RowBox[{"Select", "[",
RowBox[{
RowBox[{"(",
RowBox[{"#Category", "==",
RowBox[{"Missing", "[", "\"\<NotAvailable\>\"", "]"}]}], ")"}], "&"}],
"]"}], "]"}], ";"}]], "Input",
CellChangeTimes->{{3.890142080962162*^9, 3.89014216028776*^9}, {
3.890142206282839*^9, 3.8901422092333517`*^9}, {3.8901440832075043`*^9,
3.890144087799355*^9}, 3.891536095094181*^9},
CellLabel->"In[9]:=",ExpressionUUID->"b1c72525-df8d-4610-990e-27205838f5c8"],
Cell["\<\
Three entries for Armenia are missing, even though the measures are there. \
There are only three entries, so on this occasion these can be deleted.\
\>", "Text",
CellChangeTimes->{{3.890144097342239*^9, 3.89014415501482*^9}, {
3.8915361155406847`*^9,
3.891536118290449*^9}},ExpressionUUID->"15ba55d6-8b9e-4f8d-8ff8-\
97aac5abb0ec"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "=",
RowBox[{"govData", "[",
RowBox[{"Select", "[",
RowBox[{
RowBox[{"(",
RowBox[{"#Category", "=!=",
RowBox[{"Missing", "[", "\"\<NotAvailable\>\"", "]"}]}], ")"}], "&"}],
"]"}], "]"}]}], ";"}]], "Input",
CellChangeTimes->{3.890144197922961*^9},
CellLabel->"In[10]:=",ExpressionUUID->"9d19a9ce-e3d9-4a32-ad6e-a4dde25cff21"],
Cell["\<\
The bar chart can be re-plotted with the labels positioned above the bars for \
easier reading:\
\>", "Text",
CellChangeTimes->{{3.8901442053033667`*^9, 3.890144213007723*^9}, {
3.8911883738824587`*^9, 3.891188393250366*^9}, {3.8915361626964083`*^9,
3.891536175778944*^9}},ExpressionUUID->"71ecefb9-b17b-4a7e-bfac-\
135691138f09"],
Cell[BoxData[
RowBox[{
RowBox[{"BarChart", "[",
RowBox[{
RowBox[{"Normal", "[",
RowBox[{"govData", "[",
RowBox[{"Counts", ",", "\"\<Category\>\""}], "]"}], "]"}], ",",
RowBox[{"ChartLabels", "->",
RowBox[{"Placed", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"\"\<Public health measures\>\"", ",",
"\"\<Social and economic measures\>\"", ",",
"\"\<Social distancing\>\"", ",", "\"\<Movement restrictions\>\"",
",", "\"\<Lockdown\>\""}], "}"}], ",", "Above"}], "]"}]}]}], "]"}],
";"}]], "Input",
CellChangeTimes->{{3.891187512882889*^9, 3.891187576426886*^9}, {
3.8911876988960114`*^9, 3.891187734751546*^9}, {3.891187801454145*^9,
3.891187826745331*^9}, {3.89118785973878*^9, 3.8911879360494537`*^9}, {
3.8911880704435253`*^9, 3.89118821054294*^9}, {3.891188242052499*^9,
3.891188311629797*^9}, 3.891536446470333*^9},
CellLabel->"In[11]:=",ExpressionUUID->"104fe703-c1c3-471f-a044-7b0e91c2f38f"],
Cell["\<\
Public health measures were the most frequent category of measures, whilst \
lockdowns were the least frequent. Lockdowns are extreme measures used by \
some government in the early months of the pandemic to prevent the spread of \
the virus until a suitable vaccine could be developed.\
\>", "Text",
CellChangeTimes->{{3.891536216747023*^9,
3.891536329985256*^9}},ExpressionUUID->"2ec68684-388b-4233-a240-\
846e4bd95949"],
Cell["\<\
It would be interesting to see a breakdown of these categories by continent, \
so a table showing the frequency of each category of health measures \
implemented across each continent. Data are grouped and tallied.\
\>", "Text",
CellChangeTimes->{{3.890562821201861*^9, 3.890562864122992*^9}, {
3.891536354903734*^9, 3.891536419155119*^9}, {3.8915366132092*^9,
3.8915366309290733`*^9}},ExpressionUUID->"589679d6-5cca-4dbc-a62d-\
462f12bf25de"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "[",
RowBox[{
RowBox[{
RowBox[{"GroupBy", "[",
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"#", "[", "\"\<Continent\>\"", "]"}], "&"}], ",",
RowBox[{
RowBox[{"#", "[", "\"\<Category\>\"", "]"}], "&"}]}], "}"}], "]"}], "/*",
"Transpose", "/*",
RowBox[{"ReplaceAll", "[",
RowBox[{"_Missing", "->", "0"}], "]"}]}], ",", "All", ",", "Length"}],
"]"}], ";"}]], "Input",
CellChangeTimes->{{3.890562867753429*^9, 3.890562949945822*^9},
3.8915364526104097`*^9},
CellLabel->"In[12]:=",ExpressionUUID->"70c2c451-4819-4696-91a9-2b43bf579d45"],
Cell["\<\
In order to visualize the total frequency of measures implemented by \
different countries, a choropleth map of the world map will be created.\
\>", "Text",
CellChangeTimes->{{3.8915351391644297`*^9, 3.89153515082058*^9}, {
3.891535573844377*^9, 3.891535655282688*^9}, {3.891535686969515*^9,
3.891535698074337*^9}},ExpressionUUID->"e2842451-a5a8-46fb-ad76-\
8ce2b5a0b6b9"],
Cell["\<\
Maps are a useful way to visualise differences across different countries. \
The frequency each country appears in the dataset is a proxy for the number \
of measures implemented during the time period.\
\>", "Text",
CellChangeTimes->{{3.890144234344038*^9,
3.890144316128851*^9}},ExpressionUUID->"9dfb8177-d26f-4d22-8fa8-\
80d948355b4b"],
Cell[BoxData[
RowBox[{
RowBox[{"GeoRegionValuePlot", "[",
RowBox[{"govData", "[",
RowBox[{
RowBox[{"Counts", "/*",
RowBox[{"SortBy", "[",
RowBox[{
RowBox[{"-", "#"}], "&"}], "]"}]}], ",", "\"\<Country\>\""}], "]"}],
"]"}], ";"}]], "Input",
CellChangeTimes->{{3.890138301620137*^9, 3.8901383134918756`*^9}, {
3.890138349614243*^9, 3.8901383934898167`*^9}, {3.890138428064726*^9,
3.890138452781555*^9}, 3.8901387464634743`*^9, {3.8901388794064417`*^9,
3.8901388813242607`*^9}, {3.890138946774107*^9, 3.890138947149358*^9}, {
3.890140139290999*^9, 3.89014015434079*^9}, {3.890140715230941*^9,
3.890140716859717*^9}, {3.890142896534032*^9, 3.890142901188764*^9},
3.89153653086919*^9},
CellLabel->"In[13]:=",ExpressionUUID->"d3cb6d09-ed2f-4ea9-82f6-af3013def46d"],
Cell["\<\
Darker colours on the map indicate a greater number of measures were \
implemented during the time period. It would appear that Canada, China, \
India, Australia, Hungary and parts of South-East Asia had the highest \
numbers of different measures.\
\>", "Text",
CellChangeTimes->{{3.89153681054525*^9, 3.891536849686913*^9}, {
3.891536896606598*^9,
3.891536998182447*^9}},ExpressionUUID->"aff2ef07-c3f2-4903-9929-\
f91f1a14eba7"],
Cell[TextData[{
"For the next part of the analysis, the timelines",
ButtonBox[Cell[TextData[StyleBox["2",
FontVariations->{"CompatibilityType"->"Superscript"}]], "Citation",
Editable->False,
TaggingRules->{NoteData -> RowBox[{
Cell[
BoxData[
FormBox[
RowBox[{"https", ":"}], TraditionalForm]]], "//",
Cell[
BoxData[
FormBox[
RowBox[{
RowBox[{
RowBox[{
RowBox[{"reference", ".", "wolfram", ".", "com"}], "/",
"language"}], "/", "ref"}], "/",
RowBox[{"TimelinePlot", ".", "html"}]}], TraditionalForm]]]}]},
ExpressionUUID->"74c1e2a8-77f1-4822-94a4-cec4fc7d7bc3"],
BaseStyle->"Hyperlink",
ButtonData->"00005AC5"],
" of implementation for each category of measures for each continent can be \
explored. First, the data need to be grouped into continents with each \
category within, identifying the minimum and maximum dates for each measure. \
This can be achieved with the following:"
}], "Text",
CellChangeTimes->{{3.891537015068308*^9, 3.891537063283909*^9}, {
3.891537110778902*^9, 3.891537184715617*^9}, {3.891537360818585*^9,
3.8915373665694942`*^9}, {3.8915374013412647`*^9, 3.8915374014695377`*^9}, {
3.891537648756152*^9, 3.8915376487915688`*^9}, {3.8915423634722548`*^9,
3.8915423635112534`*^9}},ExpressionUUID->"7db8090e-9d46-46ed-a496-\
cedd7c7a6b23"],
Cell[BoxData[
RowBox[{
RowBox[{"govData", "[",
RowBox[{
RowBox[{"GroupBy", "[", "\"\<Continent\>\"", "]"}], ",",
RowBox[{"GroupBy", "[", "\"\<Category\>\"", "]"}], ",", "MinMax", ",",
"\"\<ImplementationDate\>\""}], "]"}], ";"}]], "Input",
CellChangeTimes->{{3.890574466400957*^9, 3.890574492711697*^9},
3.890574621324815*^9, {3.890575156703911*^9, 3.8905751650326767`*^9}, {
3.890575207094521*^9, 3.8905752138940563`*^9}, {3.890575475305347*^9,
3.890575524679744*^9}, {3.890575895139511*^9, 3.890575915076262*^9},
3.891537207809442*^9},
CellLabel->"In[14]:=",ExpressionUUID->"abe4dc1f-a89b-42cb-93d3-7c36387b42e1"],
Cell["\<\
Normalising the data will provide a structure that can be copied and pasted \
for further modification. Initially, just the continents can be plotted:\
\>", "Text",
CellChangeTimes->{{3.891537294839143*^9, 3.891537320745097*^9}, {
3.891537443822423*^9,
3.891537456623939*^9}},ExpressionUUID->"ce407b65-0356-4669-bfe2-\
658b7e36d27d"],
Cell[BoxData[
RowBox[{
RowBox[{"Normal", "@",
RowBox[{"govData", "[",
RowBox[{
RowBox[{"GroupBy", "[", "\"\<Continent\>\"", "]"}], ",",
RowBox[{"GroupBy", "[", "\"\<Category\>\"", "]"}], ",", "MinMax", ",",
"\"\<ImplementationDate\>\""}], "]"}]}], ";"}]], "Input",
CellChangeTimes->{{3.891537336054377*^9, 3.8915373382833242`*^9}},
CellLabel->"In[15]:=",ExpressionUUID->"7301b87f-8bd3-4a00-846f-52bbd905472d"],
Cell[BoxData[
RowBox[{
RowBox[{"TimelinePlot", "[",
RowBox[{"{",
RowBox[{
RowBox[{"<|",
RowBox[{
TemplateBox[{"\"Asia\"",
RowBox[{"EntityClass", "[",
RowBox[{"\"Country\"", ",", "\"Asia\""}], "]"}],
"\"EntityClass[\\\"Country\\\", \\\"Asia\\\"]\"", "\"countries\""},
"EntityClass"], "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Thu 2 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "2", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Sun 29 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "29", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], "|>"}], ",",
"\[IndentingNewLine]",
RowBox[{"<|",
RowBox[{
TemplateBox[{"\"Europe\"",
RowBox[{"EntityClass", "[",
RowBox[{"\"Country\"", ",", "\"Europe\""}], "]"}],
"\"EntityClass[\\\"Country\\\", \\\"Europe\\\"]\"", "\"countries\""},
"EntityClass"], "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Fri 3 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "3", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Fri 27 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "27", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], "|>"}], ",",
RowBox[{"<|",
RowBox[{
TemplateBox[{"\"Africa\"",
RowBox[{"EntityClass", "[",
RowBox[{"\"Country\"", ",", "\"Africa\""}], "]"}],
"\"EntityClass[\\\"Country\\\", \\\"Africa\\\"]\"", "\"countries\""},
"EntityClass"], "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Thu 2 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "2", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Mon 30 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "30", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], "|>"}], ",",
RowBox[{"<|",
RowBox[{
TemplateBox[{"\"North America\"",
RowBox[{"EntityClass", "[",
RowBox[{"\"Country\"", ",", "\"NorthAmerica\""}], "]"}],
"\"EntityClass[\\\"Country\\\", \\\"NorthAmerica\\\"]\"",
"\"countries\""},
"EntityClass"], "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Sat 4 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "4", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Thu 26 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "26", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], "|>"}], ",",
RowBox[{"<|",
RowBox[{
TemplateBox[{"\"South America\"",
RowBox[{"EntityClass", "[",
RowBox[{"\"Country\"", ",", "\"SouthAmerica\""}], "]"}],
"\"EntityClass[\\\"Country\\\", \\\"SouthAmerica\\\"]\"",
"\"countries\""},
"EntityClass"], "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Fri 7 Feb 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "2", ",", "7", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Wed 25 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "25", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], "|>"}], ",",
RowBox[{"<|",
RowBox[{
TemplateBox[{"\"Oceania\"",
RowBox[{"EntityClass", "[",
RowBox[{"\"Country\"", ",", "\"Oceania\""}], "]"}],
"\"EntityClass[\\\"Country\\\", \\\"Oceania\\\"]\"", "\"countries\""},
"EntityClass"], "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Wed 22 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "22", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Wed 25 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "25", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], "|>"}]}], "}"}], "]"}],
";"}]], "Input",
CellChangeTimes->{3.8915375639776297`*^9},
CellLabel->"In[16]:=",ExpressionUUID->"f83cc636-14d7-4bea-92dc-6cda378e74e4"],
Cell["\<\
A basic timeline plot showing the start and end dates each continent was \
under measures in 2020.\
\>", "Text",
CellChangeTimes->{{3.890568335467287*^9, 3.890568367124551*^9}, {
3.891537490017007*^9,
3.891537519024184*^9}},ExpressionUUID->"e03964ba-72fa-4824-807e-\
17e4fd53db8e"],
Cell[TextData[{
"The next step is to identify the start and end dates of each category of \
measures for each continent",
ButtonBox[Cell[TextData[StyleBox["3",
FontVariations->{"CompatibilityType"->"Superscript"}]], "Citation",
Editable->False,
TaggingRules->{NoteData -> RowBox[{
Cell[
BoxData[
FormBox[
RowBox[{"https", ":"}], TraditionalForm]]], "//",
Cell[
BoxData[
FormBox[
RowBox[{
RowBox[{
RowBox[{
RowBox[{
RowBox[{"mathematica", ".", "stackexchange", ".", "com"}],
"/", "questions"}], "/", "204251"}], "/", "avoiding"}], "-",
"label", "-", "bubbles", "-", "overlapping", "-", "horizontal",
"-", "line", "-", "segments", "-", "in", "-", "timelineplot"}],
TraditionalForm]]]}]},ExpressionUUID->
"5ca55f8b-2f94-4a0b-8ea9-82e968f2646a"],
BaseStyle->"Hyperlink",
ButtonData->"00007D38"],
". Continents and their measures needed to be clustered and properly \
labelled."
}], "Text",
CellChangeTimes->{{3.891537583071601*^9, 3.891537616301972*^9}, {
3.891537648679522*^9, 3.891537690332687*^9}, {3.891542363532343*^9,
3.891542363568687*^9}},ExpressionUUID->"28cea10a-8c74-4d0f-b70e-\
f76e66162989"],
Cell[BoxData[
RowBox[{
RowBox[{"continentMeasuresTLP", "=",
RowBox[{"TimelinePlot", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"Legended", "[",
RowBox[{
RowBox[{"<|",
RowBox[{"{",
RowBox[{
RowBox[{"\"\<Public health measures\>\"", "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Wed 22 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "22", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Thu 26 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "26", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], ",",
RowBox[{"\"\<Social and economic measures\>\"", "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Mon 20 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "20", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Wed 25 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "25", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], ",",
RowBox[{"\"\<Social distancing\>\"", "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Mon 27 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "27", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Thu 26 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "26", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], ",",
RowBox[{"\"\<Movement restrictions\>\"", "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Thu 2 Jan 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "1", ",", "2", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False], ",",
TemplateBox[{
RowBox[{"\"Sun 29 Mar 2020 00:00:00\"",
StyleBox[
RowBox[{"\"GMT\"", "\[InvisibleSpace]",
StyleBox[
RowBox[{"-", "5"}], NumberMarks -> False, StripOnInput ->
False]}], FontColor -> GrayLevel[0.5]]}],
RowBox[{"DateObject", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"2020", ",", "3", ",", "29", ",", "0", ",", "0", ",",
"0.`"}], "}"}], ",", "\"Instant\"", ",", "\"Gregorian\"",
",",
RowBox[{"-", "5.`"}]}], "]"}]},
"DateObject",
Editable->False]}], "}"}], "]"}]}], ",",
RowBox[{"\"\<Lockdown\>\"", "\[Rule]",
RowBox[{"DateInterval", "[",
RowBox[{"{",
RowBox[{
TemplateBox[{
RowBox[{"\"Sat 7 Mar 2020 00:00:00\"",