This repository has been archived by the owner on Jul 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
myslipbox.graphml
2294 lines (2128 loc) · 128 KB
/
myslipbox.graphml
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
<?xml version='1.0' encoding='utf-8'?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<key attr.name="partition" attr.type="long" for="node" id="d5" />
<key attr.name="sources" attr.type="string" for="node" id="d4" />
<key attr.name="quotes" attr.type="string" for="node" id="d3" />
<key attr.name="labels" attr.type="string" for="node" id="d2" />
<key attr.name="text_md" attr.type="string" for="node" id="d1" />
<key attr.name="name" attr.type="string" for="node" id="d0" />
<graph edgedefault="undirected">
<node id="NwHayaCP">
<data key="d0">Liberalism</data>
<data key="d1">Liberalism seeks to provide a way out of the continuous oscillation between authoritarianism and individualism. It aims to establish a social order that is not built on the basis of irrational dogma, but at the same time, allows for a minimum of stability and order necessary for the preservation and functioning of the state.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="uIHekGyz">
<data key="d0">Individual freedom vs social cohesion</data>
<data key="d1">In human history, as in the history of philosophy, the pursuit of individual freedom has been always in conflict with the quest for social cohesion
- In ancient Greece, social bonds where established, in varying degrees, through the loyalty and duties _of citizens_ towards the state.
- After the Greeks where conquered by Rome, a more individualistic ethic emerged (e.g., the stoics identified virtue not so much in the relationship between citizens and the State, but between the soul and God).
- With Christianity, the idea became more widespread that an individual's duties towards God take precedence over those towards the state.
- Liberalism provided for a clear separation between the public and the private spheres.
- This separation let, on one hand. to romanticism and individualism, and on the other to doctrines centered around the glorification of the state.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="GH8W0S4g">
<data key="d0">Locke</data>
<data key="d1">Locke opposed both individualism and the unmitigated submission of the individual to an absolute authority. According to Russell, this eventually led to doctrines centered around the glorification of the state.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="zPySth0x">
<data key="d0">What is philosophy</data>
<data key="d1">Philosophy combines both scientific and ethical/religious points of view.
It sits between science (knowledge) and theology (dogma). On the one hand, it appeals to reason instead of authority or tradition; on the other, its speculates about things that are not know (or even knowable) with certainty.
Philosophy asks questions that science cannot answer (at least not yet). But is does not accept the (unquestionable) answers provided by theology.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="V2qxeWls">
<data key="d0">Why study philosophy?</data>
<data key="d1">Historian's perspective:
- People's behavior is at least in part determined by their notions of good and evil.
- "To understand an era or a people, one has to understand their philosophy."
- There is a two-way causality between human history and the history of philosophy; similarly, one's life situation determines one's own philosophy, and vice-versa.
Personal perspective:
- Philosophy tries to teach us how to live without being paralyzed by the absence of certainty.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="rJKUGkhR">
<data key="d0">Origins of Philosophy as a discipline</data>
<data key="d1">- Philosophy originated as a discipline independent of theology in Greece around the **6th century BC**, with Thales. In its origins, philosophy and science were not different from each other.
- With the rise of Christianity and the **end of the Roman empire**, philosophy merged back into theology
- Philosophy's second "big era" between the **11th and 14th centuries** under the rule of the catholic church, and ended with the Reformation.
- It's third era, from the **17th century to date**, is more influenced by science and secular points of view, although traditional religious influences are still present.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="SLgwJQDz">
<data key="d0">Conflict between church and state in the Middle Age</data>
<data key="d1">In the conflict between church and state that ensued between the end of the 5th century until middle of the 11th century, the former prevailed. The established philosophy of this era played a key role in this, since although the secular centers of power kept the monopoly of violence and were not bound by a notion of legality, the authority of kings and barons of germanic descent was dependent on the loyalty and support of their feudal aristocracies, while the church had the monopoly on education and, more importantly, was believed to have the keys to everyone's eternal salvation or damnation.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="bawDrRBv">
<data key="d0">Renaissance and Reformation</data>
<data key="d1">The Renaissance and the Reformation destroyed the unity of Christianity around the pope's authority.
- New knowledge about antique cultures became more widespread
- Copernicus' astronomy gave Man and the Earth a different place in philosophy
- The belief in eternal regularity was replaced by scientific inquiry, subjectivism and moral relativism
- With Machiavelli, politics was understood as the naked pursuit of power.
- The Reformation was a revolt of the Nordic kings and peoples against the pope's dominance.
- The authority of the pope was countervailed not by one secular emperor, but by a multitude of nation states (and the strengthening of social bonds within them)
- In the new protestant philosophy, there is no longer a single earthly intermediary between the soul and God
- The truth does not come from an authority, but is grasped by each individual through reason
- This lead to the advent of anarchism, mysticism.
- There is no one protestant philosophy, but as many philosophies as there are philosophers.
- Slowly, the seeds are planted for a re-emergence of individualism and pluralism.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="kSY5JM8j">
<data key="d0">Origins of modern philosophy: Descartes and subjectivism</data>
<data key="d1">Modern philosophy begins with Descartes, who attempts to derive the knowledge of the external world from the certain knowledge of the existence of one's self and one's own thoughts.
The resulting philosophical subjectivism--whose origins can be traced back to the protestant opposition to the authority of the pope--goes hand in hand with the emergence of liberalism and a more general opposition to all kinds of secular government and the gradual rise of political anarchism.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="Ov1RUbvE">
<data key="d0">Eighteenth century's sentimentalism ("Empfindsamkeit") and romanticism</data>
<data key="d1">A deed is valued not against its good consequences or its alignment with moral principles, but against the intensity and "authenticity" of the (subjective) sentiments that engender it. This leads to the romantic cult of heroism (Carlyle and Nietzsche) and passion (Byron).
The individual is no longer seen as a member of a community, but as an object of aesthetic contemplation.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">oabuUCA7</data>
<data key="d5">0</data>
</node>
<node id="ClFwmtgA">
<data key="d0">Data visualization</data>
<data key="d1">Exploring data and analytic results in visual form helps identify and communicate conclusions in ways that are easily understood, shared and acted upon.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">XN9jt6q8</data>
<data key="d5">1</data>
</node>
<node id="iJY1iH4F">
<data key="d0">Geospatial data analysis and visualization</data>
<data key="d1">Geospatial data analysis and map visualizations can help identify trends, patterns and relationships between different data sets over geographic space. The analysis and visualization of geospatially disaggregated data "enhances the ability to understand and respond to place-based factors" affecting the phenomenon under study. It also can lead to "new questions or ideas about relationships in the data that can be further explored with additional methods".</data>
<data key="d2" />
<data key="d3" />
<data key="d4">XN9jt6q8</data>
<data key="d5">1</data>
</node>
<node id="etUj8mX6">
<data key="d0">Map visualizations</data>
<data key="d1">Map visualizations allow to:
- Identify outliers in the spatial distribution of individual variables
- Identify and highlight spatial correlations across multiple datasets.
- Identify and highlight spatial patterns of inequality at the subnational level (e.g., across districts, municipalities, and communities)</data>
<data key="d2" />
<data key="d3" />
<data key="d4">UCi2QXBJ</data>
<data key="d5">1</data>
</node>
<node id="3c7dZcB6">
<data key="d0">Communicating results of data innovation projects</data>
<data key="d1">**Risk:**
- Outputs from data innovation projects do not reach their intended users, and remain unused by policy and decision makers
- Key insights and caveats of project results are not presented in formats that are easy to understand by different types of technical and non-technical users
- Potential users are not aware of project outputs and/or their value to inform policy and decision making
**Mitigation:**
- Communicate clearly and frequently any limitation of the source data and of the applicability of outputs, with a view to avoiding the building of unrealistic expectations
- Explain possible applications and demonstrate the value of resulrs at an early stage
- Develop a results communication strategy aimed to maximize the reach of the outputs and their impact. This strategy may include, among other things:
- A **social media campaign** to highlight main results and outputs, and direct user to data and resources to understand the underlying methodologies.
- **Online dissemination of results** through the official data dissemination platforms of the NSO and participating government agencies, including:
- Downloadable **datasets**
- Online **maps and visualizations**
- Data stories / **narratives** that put data outputs in context and make them easier to understand for policy and decision makers
- Production and distribution of project **reports** in multiple formats
- User outreach **events**</data>
<data key="d2" />
<data key="d3" />
<data key="d4">UCi2QXBJ</data>
<data key="d5">1</data>
</node>
<node id="qpy6M6vh">
<data key="d0">Geo-spatial disaggregation</data>
<data key="d1">The geographic scale at which data are disaggregated affects the type of information that can be derived from it.
Data collected at more granular level of geographic detail often provide more useful information about patterns of geographic variation and correlation, and can be more flexibly aggregated into broader geographic areas suitable for different types of analysis.
Examples of geographic scales:
- Administrative unit (level 0, level 1, level 2...)
- Populated place
- Point location
- Grid location
- Area/Line features
Defining a minimum level of geospatial disaggregation facilitates data integration and analysis. Such minimum level of geospatial disaggregation should be established considering factors such as:
- **Analytic objectives** (e.g., informing policies or decisions at national or local levels)
- **Country context** (e.g., how large are the different levels of administrative units)
- Expected **variability** within and across different units at each level of disaggregation (e.g., too much variability within units / too little variability between units may require more granular disaggregation)
- Type of **data collection process** (e.g., earth observation, on-site measurements, or administrative/business records).
- Potential **privacy** implications (e.g., whether combining data at a specific level of geographic disaggregation with other datasets could lead to re-identification of personal or individual-level information)
- **Resources** (e.g., expertise and technology required to collect, process, and analyze data at a specific level of geographic desaggregation).</data>
<data key="d2" />
<data key="d3" />
<data key="d4">XN9jt6q8</data>
<data key="d5">1</data>
</node>
<node id="tltgpLsL">
<data key="d0">Levels of disaggregation of administrative units</data>
<data key="d1">The hierarchy of political divisions of a country's territory is comprised by administrative units, each of which is delineated by specific geographic boundaries.
- The country is the highest-level administrative unit, and it is referred to as the "**Level 0**" administrative unit.
- The first level of subdivision of administrative units within a country is referred to as '**Level 1**".
- Administrative units at further levels of geographic disaggregation are denoted as "**Level 2**", "**Level 3**", etc.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">XN9jt6q8</data>
<data key="d5">1</data>
</node>
<node id="pXxz1MHR">
<data key="d0">Geo-referencing</data>
<data key="d1">Geo-referencing makes it relatively easy to bring together, overlay and analyze information from multiple sources based on different units of analysis.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">UCi2QXBJ</data>
<data key="d5">1</data>
</node>
<node id="6WFYziDD">
<data key="d0">Comparability across data sources</data>
<data key="d1">The comparability of variables measured across different data sources is a key data quality issue.
Changes over time that may adversely impact comparability of variables across different data sets include:
- Changes in the definition and coverage of reference geographic areas (e.g., creation or re-drawing of boundaries of new administrative units)
- Changes in statistical classifications
- Changes in sampling methodology
- Changes in definition of reference time periods (e.g., calendar vs. fiscal year)
- Changes in survey questions or measurement instruments</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">2</data>
</node>
<node id="PjMcjUgb">
<data key="d0">Team charter template</data>
<data key="d1">### Purpose
- Why does our team exist?
- What are we collectively working towards?
- What are our personal goals?
- What do we want to do in the next 15,30, 90 days?
### Measures
- What is the ultimate measure of success for the team?
- How do we track progress towards our goals?
### Roles
- What are the roles we have in our team?
- What are they responsible for?
- Who will fill those roles?
### Practices
- How do we want to work together?
- How do we communicate and meet?
- What tools do we use?
- How often do we revisit goals, retrospect, strategize?
### Guardrails
- What is safe to try?
- How do we make decisions?
- What rules do we want to put in place?
- What other commitments do we have outside the team?</data>
<data key="d2" />
<data key="d3" />
<data key="d4">gMK50Cdd</data>
<data key="d5">3</data>
</node>
<node id="1hLRzYSe">
<data key="d0">Content Production Team</data>
<data key="d1">A content production team is often an example of a cross-functional team, with members coming from different functional areas of the organization that may include:
- Content strategist
- Content manager
- Content writer(s)
- Content editor(s)
- Content analyst</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="J4RjLkh4">
<data key="d0">Ad-hoc cross functional teams</data>
<data key="d1">Ad-hoc cross functional teams seek to integrate skills across organizational boundaries in order to accomplish a specific goal over a limited period of time. They are often called during a critical juncture to deal with a specific problem or explore a new opportunity.
A critical success factor is having clearly defined, realistic outputs, timeline, and exit criteria for each phase of the project.
Ad-hoc cross functional teams are challenged by complex supervisory relationships and incentive structures, as their members formally report to different functional managers. This increases the need for **horizontal cooperation and coordination** among team members.
To avoid turf battles and organizational power politics, the different members of an ad-hoc cross-functional team must be completely **focused on creating value to customers**. Team members must therefore have adequate **incentives to collaborate** outside their own "home teams" in the organization. This means that their performance needs to be measured and rewarded based on their contributions towards achieving the objectives of the cross-functional project.
Putting together the **right mix of talents** is another key ingredient for the success of a cross-functional team. Reluctance by managers from different functional areas to get personally involved and to commit their most qualified staff to a cross functional project team often leads to poor results. On the other hand, assigning key staff members to a cross-functional project is a clear signal of the commitment by senior management to the success of the project.
Ad-hoc cross functional teams must also have a clearly defined **"sunsetting" plan** for incorporating back people and the team outputs, innovations and learnings back into the organization's functional processes and structure when the time comes to dissolve the team. In particular, it is important to identify opportunities for team members to take on new responsibilities based on the skills they developed while being part of the ad-hoc cross functional team.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">gMK50Cdd</data>
<data key="d5">3</data>
</node>
<node id="AP2e8YNz">
<data key="d0">Elements of a content strategy</data>
<data key="d1">A content strategy includes:
- A list of **clear goals**
- A method for measuring success
- A competitor analysis
- Persona development
- A brand style guide
- A list of types of content to be produced
- An initial editorial calendar</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="mmwn1oEU">
<data key="d0">Establishing a national project team</data>
<data key="d1">Each national data innovation project requires dedicated personal, both from the NSO and from other participating agencies, to carry out the work at the country level. The national data innovation project team should consist of:
- A national project coordinator (bridge between technical team at NSO and other stakeholders)
- Two statisticians (closely familiar with source data and statistical analysis prcesses)
- One econometricians (with expertise in nocasting and/or small area estimation techniques)
- One GIS expert (with expertise in GIS analysis and map visualization tools)
- One IT focal point (with admin rights and familiar with data security protocols)
- Two policy experts</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">3</data>
</node>
<node id="Lb8FlQSj">
<data key="d0">Responsibilities of the content manager</data>
<data key="d1">Responsibilities of the content manager include:
- Making day-to-day decisions about what should be pulbished, how and when
- Explaining to content creators and project owners why a piece of content should be created
- Finding topics that will perform well in various channels (blog articles, Twitter, email...)
- Staying on top of the editorial calendar - overseeing that content getes finished and published on time
- Knowing the workload of each content creator</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="MMjEeFha">
<data key="d0">Skills required in a content manager</data>
<data key="d1">- Very good understanding of the needs of users
- SEO and keyword research: Ability to identify topics and opportunities for improving organic traffic
- Strong understanding of the organization's communication goals: Ability to generate meaningful topics and organize them in the editorial calendar</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="oWg5LrNe">
<data key="d0">Responsibilities of the content analyst</data>
<data key="d1">The content analyst digs into the use analytics to measure content performance and create reports that help determine what works and what doesn't, in order to fine tune:
- Content creation strategy (what type content should we create?)
- Content promotion strategy (what content should we promote? What content promotion activities are most effective?)</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="jHpeljkZ">
<data key="d0">Content strategy goals</data>
<data key="d1">- Increase *website traffic*
- Make brand channels a destination for *organic traffic*
- Increase *brand awareness*
- Establish *brand authority*
- Bring **value to users**
- Help users identify and understand the main challenges faced by the national and global statistical systems that result from the COVID-19 pandemic
- Help global and national statistical systems overcome these challenges</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="bHaKr9ga">
<data key="d0">Types of content</data>
<data key="d1">There are many types of content:
- Blogs
- Emails
- Videos
- Infographics
- Newsletters
- Press releases
- ...</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="S1rUnyfS">
<data key="d0">Responsibilities of the content editor</data>
<data key="d1">The role of the content editor is to make a writer's good work great, offering guidance and helping authors think differently about their topic and ensuring that only high-quality content gets published.
The content editor's responsibilities include:
- Review all written materials to ensure that they:
- are free of errors
- comply with the style guide
- reflect the brand's voice
- meet the goals set in the content strategy
- Suggest revisions
- Approve publication</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="i54AuJAT">
<data key="d0">Content promotion strategy</data>
<data key="d1">Once new content is published, there is need to promote content through social media and other channels.
The effectiveness of the content promotion strategy should be monitored through content analytics.</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="xFkKBQHT">
<data key="d0">Guest blogging</data>
<data key="d1">Guest blogs where third parties promote their own content allow to strengthen partnerships while attracting visitors to our website and making it visible to broader audiences.</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="ofQx7aBs">
<data key="d0">Responsibilities of the social media manager</data>
<data key="d1">- Plan the social media calendar
- Write and schedule social media posts
- Determine the strategy for responding to and interacting with social media users</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="Tlb9tDLU">
<data key="d0">Sharing of experiences, good practices and lessons learned</data>
<data key="d1">Success in the use of new technologies and sources of data will depend on a wide variety of contextual and operational factors, as well as on the evolving severity and nature of the impact of the COVID-19 epidemic in each country. Managers of national and global statistical programmes affected by the crisis require a platform for rapidly sharing experiences and lessons learned as they navigate a new environment characterized by many uncertainties and risks. This sharing should focus on the essential aspects of planning, management and implementation of re-organization and adaptation strategies.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="4INbWGw6">
<data key="d0">COVID-19 response website types of users</data>
<data key="d1">Our content strategy needs to cater to multiple types of audiences. We need to know who are our target audiences.
- Chief statisticians from national and international statistical organizations
- Data experts/practitioners from national and international statistical organizations
- Data experts/practitioners from UN Country Teams
- Data experts/practitioners from civil society, academia and the private sector
- Students at different education levels (high school/undergraduate/graduate)
- Analysts / policy experts from national governments and international organizations
- Donors providing funding for statistical capacity building</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">6</data>
</node>
<node id="h1lCewmo">
<data key="d0">COVID-19 response website - analysis of users' goals</data>
<data key="d1">Once we know who our target audiences are, we need to know what are their own goals, and how we will be helping them attain those goals.
Our main constituency are National Statistical Offices and statistical offices of international organizations, whose main goals are to **(1) keep existing statistical programmes running**, and **(2) respond to new data requirements ** around the COVID-19 crisis from national and local governments, other institutional decision makers, and the public at large.
These goals translate into specific needs:
- **Mobilize resources** to support regular statistical activities affected by the pandemic and to launch and run new statistical activities to satisfy new data demands
- **Obtain access to methodological guidance** on how the use of new data sources, methods and technologies for the collection, processing, analysis, dissemination and communication of data and statistics
- Create opportunities for peer-to-peer **sharing of experiences**
- Provide access to relevant **training materials**
- Deliver **expert advice**
- **Identify authoritative, reliable sources of data** to monitor the day-to-day evolution of the health crisis, to assess and monitor social, economic and environmental impact of the pandemic, and to inform recovery policies over the longer term
- Identify **capacity building needs**
- **Coordinate initiatives** that respond to the needs of national statistical systems
- Understand who is doing what across the global and national statistical systems</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">6</data>
</node>
<node id="i7m8d4YQ">
<data key="d0">Information architecture for the COVID-19 response platform</data>
<data key="d1">Guidance and resources provided through UNSD's COVID-19 response platforms could be organized according to the various phases of the statistical business process:
- Data Collection
- Data Validation
- Data Processing
- Data Analysis
- Data Dissemination
They could also be organized according to the classification of statistical activities.</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">4</data>
</node>
<node id="jj13yRW9">
<data key="d0">COVID19 contingency plans in statistical organizations</data>
<data key="d1">- Determine how existing statistical activities, processes and programmes are being affected by the crisis
- Develop a plan to switch on-site and field processes to a remote/telecommuting setting:
- On-site and field ,processes that can be performed remotely by staff using existing infrastructure
- On-site and field processes that could be performed remotely after digitizing and/or migrating them to cloud environments
- On-site and field processes that would require establishing mechanisms for secure remote access to central databases and systems in order to be performed out of premises.
- Identify priority data needs of governments and other stakeholders to respond to the COVID19 crisis</data>
<data key="d2" />
<data key="d3" />
<data key="d4">Y9KlpXBF</data>
<data key="d5">5</data>
</node>
<node id="53FNlsMn">
<data key="d0">Training in statistical and econometric modeling</data>
<data key="d1">Depending on the specific objectives of a data innovation project for the production of official statistics, there is need to provide specialized statistical and econometric modeling training. For instance:
- Population density estimation
- Household consumption estimation
- Crop-yield estimation
TO DO: What are the most needed types of statistical and econometric modeling methods that project teams need to be able to apply?</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">6</data>
</node>
<node id="P43SdKCs">
<data key="d0">Training materials for national staff</data>
<data key="d1">To enable national staff to reproduce the outputs of data innovation projects and to utilize innovative data sources, technologies and methods on a sustainable basis, it is crucial to develop training materials and knowledge resources tailored to their own needs and context.
- In their own language
- Applicable in their existing technological infrastructure</data>
<data key="d2" />
<data key="d3" />
<data key="d4">UCi2QXBJ</data>
<data key="d5">6</data>
</node>
<node id="QJsx3KmY">
<data key="d0">Data innovation road map</data>
<data key="d1">A road map of consisting of country-specific activities, intermediate outputs and expected outcomes
**Pre-production:**
1. Define **scope**
1. Identify **key stakeholders**
1. Build **suport**
1. Reach out to **potential users**
1. Secure **resources**
1. Establish **project team**
1. Procure/setup/configure the necessary **hardware and software** tools
1. Secure **access to data** inputs
1. Assess **quality of source data**
1. Transform original source data into **analysis-ready datasets**
1. Set up **data inputs clearinghouse**
1. Provide **practical training**
**Production:**
1. Compute intermediate indicators to be used as (geospatial) covariates in statistical estimation models (e.g., distance to service-delivery points, distance to roads, elevation, ...)
**Post-production:**
1. Communicate project outputs to key audiences</data>
<data key="d2" />
<data key="d3" />
<data key="d4">UCi2QXBJ</data>
<data key="d5">2</data>
</node>
<node id="mRaNOol6">
<data key="d0">Complexity of census programmes</data>
<data key="d1">Population and housing census programmes are complex data collection operations comprising a series of many interrelated activities. They require contacting and collecting information on the whole population of a country within a limited period of time.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="5gf8Ujfa">
<data key="d0">Testing of new IT systems for data collection</data>
<data key="d1">It is necessary to conduct rapid but thorough testing before the introduction of new IT systems for data collection, in order to prevent further disruptions in critical statistical operations. This testing should cover:
- Functionality
- Usability
- Integration
- Accessibility
- Security
- Reliability / stress testing</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">7</data>
</node>
<node id="TsYS8WO6">
<data key="d0">Challenges of introducing new technologies</data>
<data key="d1">National Statistical Offices are being challenged to introduce telephone-based interviewing and web-based self-reporting techniques at once for many critical data collection operations--such as population and housing, agricultural, and economic censuses, as well as household, business and other types of surveys. In many cases, they need to do it without the benefit of prior experience and with very limited time to conduct detailed analysis and testing of the different alternatives.
The introduction of these new technologies is risky and can be expensive. To make an informed decision on the type of technologies best suited to mitigate disruptions to data collection programmes, National Statistical Offices need to take into account their existing infrastructure, technical capacities and resources.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">7</data>
</node>
<node id="A23mYrDu">
<data key="d0">Challenges of remote interviewing and self-reporting</data>
<data key="d1">Even National Statistical Offices that have started using electronic data collection approaches, such as computer-assessed personal interviews (CAPI), still rely heavily on personal interviews, Some of the challenges in moving away from face-to-face interviews to remote interviews and self-reporting methodologies include:
- Implementing new mechanisms to identify, contact, authenticate and communicate with respondents
- Establish mechanisms to geo-locate responses obtained via remote interviewing and self-reporting.
- Procure/develop and test IT systems to support computer-assisted telephone interviews and online self-reporting portals
- Implement mechanisms to support respondents in completing online questionnaires
- Implement mechanisms to support and oversee telephone-based interview workflows
- Ensure secure remote access to IT systems and secure data exchange.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">7</data>
</node>
<node id="MfTvaMIL">
<data key="d0">Risks and challenges of adopting cloud applications</data>
<data key="d1">Moving systems currently hosted on-premises to cloud services is a very complex task that requires:
- Vendor selection and procurement
- Data cleaning and migration
- Addressing user management and authentication issues</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">7</data>
</node>
<node id="vIDWWZjJ">
<data key="d0">Communication strategy with respondents</data>
<data key="d1">It is crucial to design and launch as quickly as possible a contact and communication strategy towards respondents in the target population, aimed to maximize high response rates in a new web-based or telephone-based data collection setting. This include communications soliciting households to complete online questionnaires or to be interviewed by telephone, sending reminders and follow-ups in case of non-response.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">7</data>
</node>
<node id="oRq6vy7w">
<data key="d0">Re-purposing CAPI infrastructure to conduct CATI data collection</data>
<data key="d1">National Statistical Offices that have in place a data collection programme based on computer-assisted personal interviews (CAPI) may consider re-purposing the existing software and hardware infrastructure to support computer-assisted telephone interviews (CATI) instead. This would allow to leverage the existing devices (tablets, personal digital assistants, smart phones or portable computers) as well as their specialized software, including their ability to instantly transmit data over mobile data networks.
However, this re-purposing is not trivial. For instance, it requires to integrate CATI operations with existing digital mapping and operational management applications built under the assumption that enumerators/interviewers would be entering the data on the same location as the respondent. As interviewers will now be entering the information from a remote location, this creates new challenges for the automatic geo-coding of questionnaire responses and for the supervision of the interview process.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="qvOtxtiK">
<data key="d0">Continuity of statistical programmes: Role of new technologies</data>
<data key="d1">It is imperative to leverage innovative technologies and approaches to ensure the continuity of censuses, household surveys, and other major statistical programmes. This includes making use, to the fullest extent possible, of mobile connectivity, cloud computing, smart mobile devises, and other technological innovations that offer alternative means to ensure that activities around the capturing, validation, processing and dissemination of census and survey data can go on in the new environment of limited mobility of staff and of the population at large.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="SGskQjpC">
<data key="d0">Contingency planning needs to be tailored to national circumstances</data>
<data key="d1">The response of each National Statistical Office to the COVID-19 crisis needs to be tailored to its own particular circumstances, including the nature and severity of the disruptions caused by the crisis, as well as its specific institutional, operational, economic, and socio-cultural contexts.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="nVgnq2cz">
<data key="d0">Impact of COVID-19 on census programmes</data>
<data key="d1">The COVID-19 crisis creates unprecedented and sudden challenges for countries conducting population and housing censuses and other major statistical operations, disrupting data collection, processing, analysis and dissemination activities carried out by National Statistical Offices, forcing them to rapidly develop and adopt alternative ways of implementing them.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="mRUJpSCa">
<data key="d0">Impact of COVID19 pandemic on national statistical offices</data>
<data key="d1">Disruption of normal statistical production workflows:
The measures to contain the spread of the epidemic in many countries include the requirement for very large parts of the population to stay at home and avoid all kinds of social contact. Moreover, there is a substantial risk that the global health emergency will continue affecting the normal operations of all sectors of society over several months. This will prevent most staff of statistical organizations from going to their offices or to the field in order to perform their regular tasks, as well as the cancellation of public activities.
The impact on statistical operations include:
- Break down of key data collection programmes
- Disruption of data processing and analysis workflows
- Delay in publication of statistical outputs
- Suspension of user engagement events and staff training activities</data>
<data key="d2" />
<data key="d3" />
<data key="d4">Y9KlpXBF</data>
<data key="d5">5</data>
</node>
<node id="87In6UYV">
<data key="d0">Selecting alternative data collection approaches - time considerations</data>
<data key="d1">Time is a key factor in selecting alternative data collection approaches to ensure the continuity of statistical operations:
- Estimated time necessary to procure/develop, test and deploy technical solutions
- Estimated time that needs to be spent in training of staff in new skills and the use of new technologies</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="xUr89DOT">
<data key="d0">Priority objectives of COVID-19 contingency plans for statistical programmes</data>
<data key="d1">Priority areas are:
- Maintain adequate coverage of the target population
- Ensure high questionnaire- and item-response
- Guarantee overall quality of data collected
- Maintain timely data collection, processing and dissemination
- Minimize response burden
- Use resources efficiently / minimize cost of statistical operations</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="URGTzbbu">
<data key="d0">Measures by WHO and public health authorities to contain COVID-19</data>
<data key="d1">WHO and public health authorities across the world are taking measures to contain the COVID19 epidemic. All sectors of society, including members of the global and national statistical systems, need to act promptly and in a coordinated manner to respond effectively to the crisis and mitigate its human and economic impacts, as well as to usher a rapid and sustainable recovery.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">A1MOeNel</data>
<data key="d5">5</data>
</node>
<node id="5dUHywzA">
<data key="d0">Need to adapt central systems of National Statistical Offices</data>
<data key="d1">The central information systems of National Statistical Offices need to be quickly adapted in order to be able to effectively manage and monitor statistical operational activities in the context of the COVID-19 crisis, such as staff recruitment, training, data collection logistics, and supervision and gathering of operational intelligence.
The integration of</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="rps4c5Jo">
<data key="d0">Impact of population mobility restrictions on data collection programmes</data>
<data key="d1">In an effort to contain the spread of the COVID-19 epidemic, many governments are imposing severe restrictions on the mobility of the population, disrupting field data collection operations and threatening the ability of National Statistical Offices to deliver high-quality, timely and cost-effective statistical outputs.
This results in the urgent need to replace current field data collection operations that rely on face-to-face interviews with alternative remote data collection methodologies, such as telephone personal interviewing or paper or web-based self-reporting methods.
To respond to this challenge, many countries need to build quickly the necessary capacity to accelerate the implementation of fully digital data collection technologies instead of traditional paper-based methods.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">vh5QhUfR</data>
<data key="d5">5</data>
</node>
<node id="BQwQetnc">
<data key="d0">Business continuity of statistical organizations</data>
<data key="d1">The current COVID-19 crisis is affecting critical operations of across the entire global statistical system, and national and international statistical organizations need to urgently develop and implement action plans to ensure the continuity of key statistical compilation activities and the continued availability of data to inform emergency mitigation actions by governments and all sectors of society.
Senior management in statistical organizations need to define guidelines, in consultation with front-line managers and IT teams, to deal with the contingency. This includes establishing new procedures and workflows on issues like:
- Management of virtual teams (task tracking and performance management)
- Secure remote data access and data exchange</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">7</data>
</node>
<node id="lh9J280B">
<data key="d0">Bandwidth requirements for telecommuting</data>
<data key="d1">Voice and video-conferencing are essential tools for effective telecommuting. However they require a minimum level of bandwidth that is not always present.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">7</data>
</node>
<node id="qEgpEYM3">
<data key="d0">Challenges related to the rapid implementation of telecommuting arrangements</data>
<data key="d1">- Procure, configure, and distribute computer equipment and software needed for remote collaboration among all staff members, including add-ons to enable secure remote data access and system administration capabilities (e.g., standardized end-point security software on all employee devises). If staff has already begun telecommuting, it is necessary to work out how to distribute equipment and software to the locations where they are based.
- Ensure voice connectivity and video-conferencing capabilities (e.g., forwarding calls to staff members' home or mobile phones; enabling soft-phone, voice-over-IP or video conference solutions). It is key to allow teams to regularly and easily talk to, and visually interact with, each other
- Ensure remote users have the necessary bandwidth. This may entail finding a way to upgrade the user's phone and/or internet access for a period of time.
- Make sure there are processes in place to cover most common IT helpdesk support requests form staff members working remotely
- Enable cloud-based backup services in all remote devices.
- Design, implement and implement new workflows</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">7</data>
</node>
<node id="smZXjmav">
<data key="d0">On-site infrastructure</data>
<data key="d1">Many statistical organizations still use server infrastructure located in their own premises to support key functions, such as collecting source data from information providers, giving staff access to data management and data analysis software, and delivering statistical outputs to users.
If staff is not able to access the software tools and data needed to perform their work, statistical organizations face major disruption in essential workflows.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">7</data>
</node>
<node id="kfu8nyho">
<data key="d0">COVID-19 - Sudden spike in need for telecommuting</data>
<data key="d1">To limit the COVID-19 epidemic, organizations are requiring all or most of their staff work from home. This has created a huge challenge of having to manage "a very large and sudden spike" in the number of remote workers, even for organizations that already support certain number of telecommuters. National Statistical Offices are facing the prospect of a protracted telecommuting crisis.
> "Until now, telecommuting has been voluntary or even a reward of sorts. Not it's mandatory..." (Rist, 2011)
Such challenges include:
- Meeting increased demand for IT help-desk support
- Enabling staff to assume additional responsibilities regarding device and data security
- Migrating on-premises workloads to cloud services
- Providing remote access and remote management solutions for applications that need to remain served form on-premises servers
- Adapting to remote performance tracking and virtual team collaboration</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">7</data>
</node>
<node id="88RTR3eB">
<data key="d0">Business continuity teams</data>
<data key="d1">The development and implementation of a business continuity plan requires the establishment of a cross-functional team, composed of:
- Senior managemers
- Front-line managers
- Information Technology department
- Legal department</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">3</data>
</node>
<node id="7dELQecN">
<data key="d0">Updating telecommuting policy</data>
<data key="d1">In many organizations, existing telecommuting policies were written under the assumption that telecommuting was offered only to certain employees under special circumstances.
In the face of the COVID-19 crisis, telecommuting will be the most common work arrangement for many organizations over the foreseeable future.
There is an urgent need to review and adapt existing telecommunication policies so organizations can nimbly adjust to the new situation.
- Telecommuting as the rule and not the exception
- Less cumbersome process for formal agreements with staff regarding use of corporate infrastructure and services</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">7</data>
</node>
<node id="ulLdtnHy">
<data key="d0">Cloud computing</data>
<data key="d1">Cloud computing refers to the delivery of hosted IT services over the internet. It includes:
- Software as a service (SaaS)
- Infrastructure as a service (IaaS)
- Platform as a service (PaaS)
Due to its reliance on hardware-independent virtualization technology, cloud computing enables organizations to quickly back up data, applications, and even operating systems to a remote data center, and to deploy them to multiple users distributed in many different locations.</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">7</data>
</node>
<node id="3ONs7aFt">
<data key="d0">Software as a Service (SaaS)</data>
<data key="d1">Model in which software applications are hosted by a third-party and made available to users over the Internet, usually through a web browser. Users do not have to install or configure anything, and the underlying cloud hardware is maintained by the service provider.
Most SaaS providers offer flexible, on-demand pricing arrangements as well as tools for user management and data migratoin.
- Examples of SaaS applications:
- Email, videoconferencing, and other basic communication tools
- File sharing and team collaboration.
- Human resource management
- Management of relationships with data providers
- Management or relationships with data users
- Specialized applications (e.g., statistical analysis software, GIS applications)
- E-Learning delivery</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">7</data>
</node>
<node id="LaFIh4fq">
<data key="d0">Remote access and remote management solutions</data>
<data key="d1">Business continuity in a situation where most staff have to telecommute requires the implementation of secure and effective mechanisms for remote access and remote management for any applications in which a cloud computing solution is not feasible, so they need to remain served from infrastructure located on-premises,
There must effective mechanisms in place to ensure that any on-site applications can be managed as much as possible from off-site. This includes the ability to run the most common application management tasks remotely, including system reboots, data backups, network and system security scans, and password resets.</data>
<data key="d2" />
<data key="d3" />
<data key="d4">ZNBpGaEL</data>
<data key="d5">7</data>
</node>
<node id="akoVqiRK">
<data key="d0">Cloud computing for business continuity and disaster recovery</data>
<data key="d1">In recent years, cloud computing has become increasingly used by statistical organizations that do not have the hardware or personnel necessary to fully deploy software applications onsite, or that need to test new software tools in the context of pilot data-innovation projects.
Today, cloud computing stands out as a key element of a business continuity and disaster recovery plan for statistical organizations, particularly in the face of the disruption national and global statistical systems caused by the COVID-19 crisis.
In order to leverage cloud computing solutions for disaster recovery and business continuity, statistical organizations require an IT architecture focused on "automating as many processes as possible in the event of disaster, ensuring that computing resources are switched over quickly to a stable backup and remain operational." (</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">7</data>
</node>
<node id="66kUhExT">
<data key="d0">Importance of CRVS Systems</data>
<data key="d1">CRVS Systems are crucially important to:
- Build a modern public administration
- Uphold human rights
- Support national development initiatives
- Improve service delivery to all people</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">8</data>
</node>
<node id="Gjve1WgL">
<data key="d0">CRVS systems and the 2030 Agenda</data>
<data key="d1">The 2030 Agenda for Sustainable Development's pleadge to leave no one behind means that no one should remain invisible. Target 16.9 reads: "By 2030, provide legal identity for all, including birth registration".
However, many developing countries still do not have a comprehensive and complete CRVS system aligned with international standards.</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">8</data>
</node>
<node id="AMu8kLNJ">
<data key="d0">How does a good CRVS system look like?</data>
<data key="d1">- Universal
- Continuing / permanent
- Compulsory
- Confidential
- Every vital event (but primarily birth and death) is registered upon occurrence
- Vital statistics are produced and used to guide policy</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">8</data>
</node>
<node id="8B67V92I">
<data key="d0">Africa's Programme on Accelerated Improvement of CRVS</data>
<data key="d1">Africa's Programme on Accelerated Improvement of Civil Registration and Vital Statistics was created under the directive of African Ministers Responsible for Civil Registration in 2010.
Its secretariat is based at UN ECA</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">8</data>
</node>
<node id="Yx0ZUlq2">
<data key="d0">Decade for repositioninig CRVS in Africa</data>
<data key="d1">2017-2026 has been designated as the "decade for repositioning CRVS in Africa" by the Executive Councl of the African Union in Kigali.</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">8</data>
</node>
<node id="1i1bh7AA">
<data key="d0">CRVS systems as a development imperative</data>
<data key="d1">There has been significant progress in recognizing CRVS systems as a development imperative</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">8</data>
</node>
<node id="yHy01yYb">
<data key="d0">Assessing quality of source data</data>
<data key="d1">- Verify quality of individual data sources
- Outlier detection
- Completeness of data / missing observations
- Sample bias / representativity
- Interoperability
- Internal consistency
- Completeness and clarity of reference metadata
- Verify comparability / consistency across data sources</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">2</data>
</node>
<node id="lEHhU8Ma">
<data key="d0">ETL - Making data analysis-ready</data>
<data key="d1">The 'extract-tranform-load' (ETL) pattern is how most data pipelines are designed to transform raw data into analysis-ready data. this includes:
1. Extracting input data from their original sources
2. Transforming them it into usable data structures through transcoding, filtering, joining, and aggregation operations
3. Uploading the transformed data onto a controlled data management environment (such as a data warehouse)
A measure of success for the intermediate goal of preparing a set of analysis-ready data inputs is the ability to combine them in exploratory data visualizations, including map visualizations,</data>
<data key="d2" />
<data key="d3" />
<data key="d4">4z5iFWrh</data>
<data key="d5">9</data>
</node>
<node id="kCnh0WC4">
<data key="d0">Scope of data innovation projects</data>
<data key="d1">Every project needs to have a specific and detailed work programme with concrete activities and expected outcomes.
The objectives and scope of every data innovation project undertaken in a country need to fit withing the regular work programme of the NSOs and the overall institutional setting of the National Statistical System.</data>
<data key="d2" />
<data key="d3" />
<data key="d4" />
<data key="d5">2</data>
</node>
<node id="5Y5WIm31">
<data key="d0">Poverty maps production: intermediate indicators</data>