-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathIntegrated-framework-household-survey.html
3915 lines (3659 loc) · 302 KB
/
Integrated-framework-household-survey.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Integrated Framework for Household Survey</title>
<script src="libs/jquery-1.11.3/jquery.min.js"></script>
<link href="include/flatly.print.css" rel="stylesheet" />
<link href="include/ifhs2.css" rel="stylesheet" />
</head>
<body>
<style type = "text/css">
/* CSS générées par knitr */
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
code {
color: inherit;
background-color: rgba(0, 0, 0, 0.04);
}
code{white-space: pre;}
table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
margin: 0; padding: 0; vertical-align: baseline; border: none; }
table.sourceCode { width: 100%; line-height: 100%; }
td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
td.sourceCode { padding-left: 5px; }
code > span.kw { color: #007020; font-weight: bold; }
code > span.dt { color: #902000; }
code > span.dv { color: #40a070; }
code > span.bn { color: #40a070; }
code > span.fl { color: #40a070; }
code > span.ch { color: #4070a0; }
code > span.st { color: #4070a0; }
code > span.co { color: #60a0b0; font-style: italic; }
code > span.ot { color: #007020; }
code > span.al { color: #ff0000; font-weight: bold; }
code > span.fu { color: #06287e; }
code > span.er { color: #ff0000; font-weight: bold; }
pre:not([class]) {
background-color: white;
}
/* Print CSS */
@media print {
math {margin: 11px auto;}
.main-container {margin:0; padding:0; max-width: 100%;}
@page {
size: A4;
margin: 2.5cm; padding: 0;
@bottom {content: "\2013\0000a0\0000a0\0000a0\0000a0" counter(page) "\0000a0\0000a0\0000a0\0000a0\2013"; font-size: 9pt; font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;}
@footnotes {
border-top: solid #999 thin;
padding-top: 8pt;
footnote-style-position: inside;
}
}
@page:first {
@bottom { content: normal;}
@top-left { content:normal;}
@top-right { content:normal;}
}
@page:left{
@top-left {content: "Integrated-framework-household-survey\0000a0\0000a0\2013\0000a0\0000a0" string(titre_doc);
font-style: italic; font-size: 9pt; font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;}
}
@page:right{
@top-right {content: string(titre_chap); font-style: italic; font-size: 9pt; font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;}
}
@page:blank{
@bottom { content: normal;}
@top-left { content:normal;}
@top-right { content:normal;}
}
article {string-set: titre_chap "";} /* éviter en-tête en début de chapitre */
h1 {string-set: titre_chap content();}
article:first-child .jumbotron h1 {string-set: titre_doc content();}
body {font-size: 10pt; color: black;}
pre {font-size: 10pt;}
h1 {font-size:24pt; margin-top: 3cm; margin-bottom: 1cm; padding:0; color: #2c3e50;}
article:first-child h1:first-child {margin-top: 0; margin-bottom: .5cm; padding:0; font-size: 48pt;}
article:first-child .jumbotron h1 {font-size: 22pt; color: #2c3e50;}
article:first-child .jumbotron {margin-bottom: 5cm;}
h2 {font-size: 20pt; margin-top: 1cm; margin-bottom: .5cm; padding:0; color: #2c3e50;}
h3 {font-size: 16pt; margin-top: 1cm; margin-bottom: .5cm; padding:0; color: #2c3e50;}
h4 {font-size: 11pt; margin-top: 1cm; margin-bottom: .5cm; padding:0; color: #2c3e50;}
blockquote p {font-size: 11pt;}
pre {font-size: 9pt;}
/* Page-break */
article, #tdm {page-break-before: right;}
#presentation {page-break-before: always;}
article:first-child {page-break-before: auto;}
h1, h2, h3, h4, heading, caption, pre.r {page-break-after: avoid;}
figcaption {page-break-before: avoid;}
figure, table, pre.r {page-break-inside: avoid;}
div.note, div.important, #licence {page-break-inside: avoid;}
/* Footnotes */
.fn {
float: footnote;
counter-increment: footnote;
font-size: 9pt;
}
article {counter-reset: footnote;}
.fn::footnote-call {font-size: 75%; vertical-align: super; line-height: none;}
/* Liens */
a[href^="#"] {color: black;}
a[href^="#"]:after { content: ", page\0000a0" target-counter(attr(href), page);}
/* Table des matières */
#tdm strong {font-size: 11pt;}
.list-group-item {padding: 2pt 0; border:none;}
a.list-group-item::after {content: leader(" . ") target-counter(attr(href), page);}
.TOC a::after {content: leader(" . ") target-counter(attr(href), page);}
.TOC a {color: black;}
.TOC ul {list-style: none; padding:0; margin:0;}
.TOC ul ul {padding-left: 0.5cm; font-size: 9pt;}
.TOC {margin-bottom: 1cm;}
/* Index des fonctions */
#index_fonctions nav, #index_extensions nav, #index_concepts nav
{display: none;}
#index_fonctions_index_fonctions, #index_extensions_index_extensions, #index_concepts_index_concepts
{column-count: 2; column-rule: thin solid #2c3e50; column-gap: 1cm;}
#index_fonctions p, #index_extensions p, #index_concepts p
{page-break-after: avoid; margin: 10px 0 0 0;}
#index_fonctions ul a[href^="#"],
#index_extensions ul a[href^="#"],
#index_concepts ul a[href^="#"]
{color: black;}
#index_fonctions ul a[href^="#"]:after,
#index_extensions ul a[href^="#"]:after,
#index_concepts ul a[href^="#"]:after
{content: leader(" . ") target-counter(attr(href), page);}
#index_fonctions ul, #index_extensions ul, #index_concepts ul
{
list-style: none;
padding: 0; margin: 0;
font-size: 8pt;
page-break-inside: avoid;
}
#index_fonctions li, #index_extensions li, #index_concepts li
{padding-left: 0.5cm;}
dfn {border-bottom: dotted .5pt #AAA;}
/* Styles des exemples de fusion de tables */
table.exemple_df td,
table.exemple_df th {
text-align: center;
padding: 3px 10px;
}
table.exemple_df th {
border-bottom: solid 1px #999;
}
table.exemple_df td + td,
table.exemple_df th + th {
border-left: solid 1px #999;
}
table.exemple_operateur td {
font-size: 3em;
padding: 20px;
}
}
</style>
<div class="container-fluid main-container">
<article><div class="fluid-row" id="header">
</div>
<div class="jumbotron">
<h1>
<img src="images/ifhs.png"> Integrated Framework for Household Survey<br>
</h1>
<h2>
IFHS: A toolkit to facilitate design, collection & analysis.
</h2>
<p>
Last update : 1 October 2019
</p>
</div>
<div id="presentation" class="section level2">
<h2>Why an “Integrated Framework”?</h2>
<p>The kit is a comprehensive set of tools to guide survey teams through every step of a multi-sectoral needs assessment done through a <strong>household survey</strong> – from overall planning, design and data collection in the field to data processing, analysis, interpretation, documentation and dissemination. Because it addresses the specific challenges related to household surveys, it fits more for protracted situations and it <strong>complements</strong> other approaches such as the <a href="http://www.unhcr.org/450e963f2.html" target="_blank">UNHCR Tool for Participatory Assessment in Operations</a>, the <a href="https://emergency.unhcr.org/entry/50209" target="_blank">Needs Assessment for Refugee Emergencies (NARE) Checklist</a> for Refugees operations and the <a href="http://www.globalprotectioncluster.org/en/tools-and-guidance/information-and-data-management.html" target="_blank">Rapid Protection Assessment Tools (RPAT)</a> for Internally Displaced Persons (IDPs) operations. The kit is also organised to ensure that all findings and recommendations will allow to inform prioritization between all potential interventions and subsequent resources allocation in terms of programme, through the following elements :</p>
<ul>
<li>Produce <strong>impact indicators</strong> that are used to assess the conditions of persons of concern (PoCs) over time and to support programme design;</li>
<li>Support the <strong>analysis of protection risk and multi-dimensional vulnerabilities</strong> and the discovery of clusters of individuals with similar profile;</li>
<li>Allow for the development of <strong>targeting models</strong> for both response (e.g. cash) and prevention activities (e.g. protection);</li>
<li>Provide basis for <strong>public advocacy</strong> on issues faced by the population group.</li>
</ul>
<p><img src="images/process.png"></p>
<p>This toolkit supports the technical implementation of already existing guidelines and guidance documents, namely the <a href="http://gbvguidelines.org/" target="_blank">Guidelines for Integrating Gender-Based Violence Interventions in Humanitarian Action</a>, the <a href="http://www.globalprotectioncluster.org/_assets/files/tools_and_guidance/info_data_management/CPRA_English-EN.pdf" target="_blank">Child Protection Rapid Assessment Toolkit</a>, the <a href="http://jet.jips.org/" target="_blank">Joint IDP Profiling Service Essential Toolkit- JET</a>, the <a href="http://unhcr.org/4aa76c279.pdf" target="_blank">Heightened Risk Identification Tool</a>, The <a href="http://www.cashlearning.org/downloads/operational-guidance-and-toolkit-for-multipurpose-cash-grants---web.pdf" target="_blank">Operational Guidance and Toolkit for Multipurpose Cash Grants</a>, etc. The proposed technical implementation approach was inspired by the <a href="http://sens.unhcr.org" target="_blank">UNHCR Standardised Expanded Nutrition Survey</a> and the <a href="http://mics.unicef.org/tools" target="_blank">UNICEF Multiple Indicator Cluster Surveys</a>.</p>
</div>
<div id="content" class="section level2">
<h2>Content</h2>
<p>On the top of the summary narrative guidelines below, the toolkit is organised around four key technical components that facilitate the easy replication and customisation of an assessment from one operation to another. Re-using tested platforms, questions and report formats, technical staff in charge will save significant amount of time.</p>
<p>These elements are:</p>
<div class="note">
<ul>
<li><p>A pre-organised <kbd><a href="http://dev.ihsn.org/qbank-sandbox/web/indicators" target="_blank">Master list of baseline Indicators Library</a></kbd> in order to leverage good practices and enforce core questions during design of the assessment form.</p></li>
<li><p>A <kbd><a href="hhtps://kobo.unhcr.org">KoboToolBox</a></kbd> secure server to be used for data collection. This server uses the <a href="http://xlsform.org">xlsform</a> developed during the design phase.</p></li>
<li><p>Multiple <kbd><a href="https://github.com/unhcr/koboloadeR" target="_blank">R statistical analysis scripts</a></kbd> to clean & analyse data, and then to generate automatically standard report and to facilitate the creation of presentation slides and infographics.</p></li>
<li>A <kbd><a href="https://github.com/unhcr/Integrated-framework-household-survey" target="_blank">Github Repositories</a></kbd> to facilitate collaborative analysis between operations and generate a knowledge base. Github is also used for the maintenance of the toolkit itself. Suggestions for this toolkit can be <a href="https://github.com/unhcr/Integrated-framework-household-survey/issues" target="_blank">posted here</a>.</li>
</ul>
</div>
</div>
<div id="for-whom" class="section level2">
<h2>For whom?</h2>
<p>The targeted audience of the toolkit is <em>technical staff tasked to work on multi-sectoral needs assessments</em>: assessment focal points, information management officers and data scientists. The toolkit is intended for protracted situations, <strong>after</strong> emergency assessments and secondary data review have been conducted. With a bit of configuration at the beginning of the process, the toolkit will ensure that minimum data quality standards are enforced and l allow for quick generation of results. . In addition, because of the standard data format presented through the toolkit, it will be possible to obtain comparable results from different operations.</p>
<div class="alert alert-warning" style="font-weight: bold;">
<h2 id="disclaimer">Disclaimer</h2>
<p>
The toolkit is a <em>collaborative effort</em>: if you have suggestions, please share them <a href="https://github.com/unhcr/Integrated-framework-household-survey/issues" style="color: white;">through this link</a>.
</p>
<p>
The Toolkit is a <em>work in progress</em>: if you identify issues, please share them <a href="https://github.com/unhcr/Integrated-framework-household-survey/issues" style="color: white;">through this link</a>.
</p>
</div>
</div>
<div id="tdm" class="section level2">
<h2>Table of Contents</h2>
<div id="assessment-methodology-form-design" class="section level3">
<h3>Assessment methodology & form design</h3>
<div class="row">
<div class="col-md-4">
<p>
<strong>Planning</strong>
</p>
<div class="list-group">
<p><a href="#Assessment-Project-Document" class="list-group-item">Assessment Project Document</a> <a href="#Memorandum-of-Understanding" class="list-group-item">Memorandum of Understanding</a> <a href="#Terms-of-Reference-for-Assessment-Focal-Point" class="list-group-item">Terms of Reference for Assessment Focal Point</a></p>
</div>
</div>
<div class="col-md-4">
<p>
<strong>Methodology</strong>
</p>
<div class="list-group">
<p><a href="#Sampling" class="list-group-item">Sampling</a> <a href="#Interview" class="list-group-item">Interview approach</a> <a href="#Pre-Assessment" class="list-group-item">Pre-Assessment</a></p>
</div>
</div>
<div class="col-md-4">
<p>
<strong>Form</strong>
</p>
<div class="list-group">
<p><a href="#protection-Topics" class="list-group-item">Protection Topics</a> <a href="#Module-questions" class="list-group-item">Questions Modules</a> <a href="#Guidelines-for-Customisation" class="list-group-item">Guidelines for Customisation</a></p>
</div>
</div>
</div>
</div>
<div id="data-collection" class="section level3">
<h3>Data collection</h3>
<div class="row">
<div class="col-md-4">
<p>
<strong>Preparing for fieldwork</strong>
</p>
<div class="list-group">
<p><a href="#Configure-forms" class="list-group-item">Configure forms</a> <a href="#Pre-test-Phase" class="list-group-item">Pre-test Phase</a> <a href="#Fieldwork-Training-Agenda" class="list-group-item">Fieldwork Training and Agenda</a></p>
</div>
</div>
<div class="col-md-4">
<p>
<strong>Using KoboToolBox</strong>
</p>
<div class="list-group">
<p><a href="#Data-Protection-Impact-Assessment" class="list-group-item">Data Protection Impact Assessment</a> <a href="#Server-Configuration" class="list-group-item">Server Configuration</a> <a href="#Data-Entry" class="list-group-item">Data Entry</a></p>
</div>
</div>
<div class="col-md-4">
<p>
<strong>Fieldwork manual</strong>
</p>
<div class="list-group">
<p><a href="#Instructions-for-Interviewers" class="list-group-item">Instructions for Interviewers</a> <a href="#Instructions-for-Supervisors-Editors" class="list-group-item">Instructions for Supervisors and Editors</a> <a href="#Instructions-for-Managers" class="list-group-item">Instructions for Managers</a></p>
</div>
</div>
</div>
</div>
<div id="analysis-dissemination" class="section level3">
<h3>Analysis & dissemination</h3>
<div class="row">
<div class="col-md-4">
<p>
<strong>Analytics Steps</strong>
</p>
<div class="list-group">
<p><a href="#Clean-Anonymize" class="list-group-item">Clean & Anonymize</a> <a href="#Describe" class="list-group-item">Describe</a> <a href="#Discover" class="list-group-item">Discover</a> <a href="#Predict" class="list-group-item">Predict</a> <a href="#Advise" class="list-group-item">Advise</a></p>
</div>
</div>
<div class="col-md-4">
<p>
<strong>Analysis Process</strong>
</p>
<div class="list-group">
<p><a href="#Data-Crunching" class="list-group-item">Data Crunching</a> <a href="#Analysis-Workshop" class="list-group-item">Analysis Workshop</a> <a href="#Model-for-Final-Report" class="list-group-item">Model for Final Report</a></p>
</div>
</div>
<div class="col-md-4">
<p>
<strong>Communication</strong>
</p>
<div class="list-group">
<p><a href="#Slides-Infographics" class="list-group-item">Slides & Infographics</a> <a href="#Microdata" class="list-group-item">Sharing microdata for social scientist</a> <a href="#Open-Data" class="list-group-item">Open Data</a></p>
</div>
</div>
</div>
</div>
<div id="credits" class="section level3">
<h3>Credits</h3>
<p>Large parts of the toolkit are extracted from other existing guidelines referenced above.</p>
</div>
</div>
</article>
<article id="Assessment-Project-Document"><div class="fluid-row" id="Assessment-Project-Document_header">
<h1 class="title toc-ignore">Assessment Project Document</h1>
</div>
<div class="TOC">
<ul>
<li><a href="#Assessment-Project-Document_background-and-objective">Background and Objective</a></li>
<li><a href="#Assessment-Project-Document_governance-structure">Governance Structure</a></li>
<li>
<a href="#Assessment-Project-Document_methodology">Methodology</a><ul>
<li><a href="#Assessment-Project-Document_data-analysis-plan">Data analysis plan</a></li>
<li><a href="#Assessment-Project-Document_tool">Tool</a></li>
<li><a href="#Assessment-Project-Document_sample-design">Sample Design</a></li>
<li><a href="#Assessment-Project-Document_staffing-needs">Staffing needs</a></li>
<li><a href="#Assessment-Project-Document_fieldwork">Fieldwork</a></li>
<li><a href="#Assessment-Project-Document_budget">Budget</a></li>
<li><a href="#Assessment-Project-Document_timeline-for-tasks">Timeline for Tasks</a></li>
</ul>
</li>
</ul>
</div>
<div class="note">
<p>A multi-sectoral needs assessment must be carefully planned to maximize efficiency and ensure actionable results. The first – and perhaps most important – step of this plan is to ensure all elements of the process are documented. Keeping this in mind from the beginning will prevent a frantic dash later on, when reporting to donors or answering evaluations.</p>
</div>
<p>The project document should: * clearly state the assessment objectives; * outline the governance structure, including roles and responsibilities; * define the methodology to be employed (population sample, tools, etc.) * provide an overview of staffing needs, budget, and timeline.</p>
<p>The document can be updated throughout the exercise.</p>
<div id="Assessment-Project-Document_background-and-objective" class="section level2">
<h2>Background and Objective</h2>
<p>In UNHCR’s work around the world, multi-sectoral needs assessments are designed to collect statistically sound, internationally comparable estimates of key indicators and analysis that are used to assess overall situation of PoCs, and to shape and prioritize appropriate interventions. Data should always be collected for a clear purpose, and only when necessary.</p>
</div>
<div id="Assessment-Project-Document_governance-structure" class="section level2">
<h2>Governance Structure</h2>
<p>From the outset, it’s important to define roles and responsibilities. This is true of single-agency and joint assessments. In recent years, joint assessments have become more of a reality, and they are an important element of the Grand Bargain commitment to coordinated needs assessments. Despite a number of benefits, joint assessments can at times be challenging. It is important to establish a strong governance structure from the beginning, often outlined in a Terms of Reference (ToR). Even single-agency assessments are often conducted in collaboration with other parties, such as the government, external contractors, etc. A ToR document for any assessment should:</p>
<ul>
<li><p>Give the name and type (government agency or other agency) of implementing agency.</p></li>
<li><p>Provide overview of Memorandum of Understanding (MoU) (Parties, critical components affecting survey planning, etc.)</p></li>
<li><p>Give the names and affiliations of those who will be responsible for the management, technical work, and coordination activities. Include the survey coordinator, the sampling expert, and data processing expert assigned from the implementing agency, as well as others, if applicable. If applicable, regional experts/consultants together with their respective responsibilities should also be included.</p></li>
<li><p>Describe the roles and contributions of national and international stakeholders and funding agencies.</p></li>
<li><p>Describe the status, composition and roles and responsibilities of the Steering and Technical committees.</p></li>
<li><p>Provide other details on the governance structure and human resources as needed.</p></li>
</ul>
</div>
<div id="Assessment-Project-Document_methodology" class="section level1">
<h1>Methodology</h1>
<div id="Assessment-Project-Document_data-analysis-plan" class="section level2">
<h2>Data analysis plan</h2>
<p>A data analysis plan should be devised in the early stages of assessment planning. Rather than deciding on questions first, indicators must be determined in line with the information needs. Starting with the data analysis plan will avoid unpleasant surprises at the end of data collection, when you realise a certain important question might have been left out! Additionally, if the data analysis plan is linked to the tool from the outset, this will save time in data processing and analysis.</p>
</div>
<div id="Assessment-Project-Document_tool" class="section level2">
<h2>Tool</h2>
<p>While UNHCR does not have a standardized tool for multi-sectoral needs assessments, many questionnaires used in different countries are similar to each other, primarily due to cross-pollination of staff and regional experts. Tools can be easily adapted according to operational needs. Once your indicators are defined, questions can be chosen, preferably from the IHSN.</p>
<p>UNHCR’s corporate tool for data collection is Kobo. The assessment focal point and other relevant staff should create an account on <a href="https://kobo.unhcr.org/accounts/register/#/">kobo.unhcr.org</a></p>
<p>Provide information on the plans for the translation and back-translation of the questionnaires into local languages and plans for pre-testing the questionnaires. Indicate that the pre-test results will be compiled in a report, and that the results of the pre-test will be used to further modify, customize, and finalize the questionnaires.</p>
</div>
<div id="Assessment-Project-Document_sample-design" class="section level2">
<h2>Sample Design</h2>
<p>Sample design is crucial for usability of results. A badly designed or implemented sample can result in the findings not being applicable in the way that was originally intended, be it at geographical, demographic or any other level. Support for sample design can be requested from regional offices, and HQ (more specifically FICCS). Do not hesitate to reach out for support!</p>
<p>UNHCR has also created a <a href="https://unhcr-sampling-assistant.firebaseapp.com/#/home">Sampling Decision Assistant</a> to help in getting a general idea of how many households should be surveyed in your assessment:</p>
<p>Any sampling strategy, however, should still be validated by technical experts prior to implementation.</p>
<p>Documenting the sampling strategy is also very important for posterior use of the dataset in other studies. In this section, under separate sub-headings, as appropriate, describe: * The Type of sampling design (Rationale for sampling design explained) * Definition of unit (case/household) used in the assessment * Sample size, including the expected numbers of households, women, men and other demographic characteristics as appropriate. * How the sample size was calculated, including the indicators used for the calculation of the sample size * The level of disaggregation sought for reporting * What sample frame will be used and if the sample frame needs to be updated, plans for mapping, listing and household selection</p>
</div>
<div id="Assessment-Project-Document_staffing-needs" class="section level2">
<h2>Staffing needs</h2>
<p>UNHCR commonly relies on partners/third parties for large data collection exercises. This section of the document can be completed jointly, with each party submitting inputs as appropriate.</p>
<p>In this section, under separate sub-headings as appropriate, describe:</p>
<ul>
<li>Plans for recruitment of fieldwork staff, including details of the type of personnel (interviewers, data entry, supervisors, measurers, data entry clerks), their education/background, sex, numbers etc.</li>
<li>Timing of training</li>
<li>Length of training</li>
<li>Methodology and content of training</li>
<li>Profiles of trainers</li>
<li>How training will be organized – central location, in separate districts, including how standardization will be ensured if not central location</li>
</ul>
</div>
<div id="Assessment-Project-Document_fieldwork" class="section level2">
<h2>Fieldwork</h2>
<p>In this section, under separate sub-headings as appropriate, describe:</p>
<ul>
<li>Timing of fieldwork, constraints on timing of fieldwork</li>
<li>Team composition, including numbers</li>
<li>Expected duration of fieldwork and how the duration was calculated</li>
<li>Plans for monitoring data collection and fieldwork supervision as well as plans for handling questionnaires for data entry</li>
<li>Fieldwork logistics</li>
</ul>
</div>
<div id="Assessment-Project-Document_budget" class="section level2">
<h2>Budget</h2>
<p>In this section, under separate sub-headings as appropriate, describe:</p>
<ul>
<li>Expected total cost of the survey</li>
<li>Breakdown of total cost by budget line items</li>
<li>Amount of funding secured and funding source(s)</li>
<li>Amount of extra funding needed, including plans, if any, on how the funding shortfall will be secured</li>
</ul>
</div>
<div id="Assessment-Project-Document_timeline-for-tasks" class="section level2">
<h2>Timeline for Tasks</h2>
<ul>
<li>Identify survey coordinator, survey personnel, and plan survey; establish steering and technical committees</li>
<li>Adapt and pre-test questionnaires; translate questionnaires and manuals</li>
<li>Carry out sampling and household listing; order scales, boards, salt test kits, and GPS equipment</li>
<li>Complete logistical arrangements</li>
<li>Select and train fieldwork personnel (interviewers, editors, measurers, and supervisors)</li>
<li>Conduct pilot study and collect data</li>
<li>Complete data processing, including secondary editing</li>
<li>Prepare summary findings report and final report, and disseminate widely; prepare survey archive</li>
</ul>
</div>
</div>
</article>
<article id="Memorandum-of-Understanding"><div class="fluid-row" id="Memorandum-of-Understanding_header">
<h1 class="title toc-ignore">Memorandum of Understanding</h1>
</div>
<div class="TOC">
<ul>
<li><a href="#Memorandum-of-Understanding_implementation-model">Implementation Model</a></li>
<li><a href="#Memorandum-of-Understanding_field-level-memorandum-of-understanding">Field Level Memorandum of Understanding</a></li>
</ul>
</div>
<div class="important">
<p>Whether it is for the data collection or the analysis, protection assessment are often done in partnership. To avoid confusion and misunderstanding within the process, it is recommended to establish a clear Memorandum of Understanding.</p>
</div>
<div id="Memorandum-of-Understanding_implementation-model" class="section level2">
<h2>Implementation Model</h2>
<p>According to the particular context, the assessment might be implemented using one of the following models:</p>
<ul>
<li><p>Assigning full data collection responsibility to different agencies in different geographic areas.</p></li>
<li><p>Pooling human and logistical resources centrally.</p></li>
<li><p>Delegating data collection responsibilities to one or more NGO partners, ideally local NGOs, through a project agreement.</p></li>
</ul>
<p>Regardless of the model chosen, it is important to observe four principles:</p>
<ul>
<li><p>The objectives and methodology of the assessment need to be decided by consensus among participants. Agencies who assume particular data collection responsibilities do not acquire a privileged say in choosing indicators, sites or data collection methods.</p></li>
<li><p>Participants contribute resources to the implementation of the asessment, to the measure of their capacities and possibilities.</p></li>
<li><p>Common standards and understanding of assessment questions need to be agreed and maintained.</p></li>
<li><p>Clear focal points need to be appointed for each participating organisations with operational responsibility for data collection.</p></li>
</ul>
</div>
<div id="Memorandum-of-Understanding_field-level-memorandum-of-understanding" class="section level2">
<h2>Field Level Memorandum of Understanding</h2>
<p>The following is an outdated example that might provide some inspiration for the initial drafting of the memorandum. Any memorandum needs to be cleared by the Bureau before signature.</p>
<div id="Memorandum-of-Understanding_scope-of-works" class="section level4">
<h4>Scope of Works</h4>
<p>The following is an example of MoU.</p>
<blockquote>
<ul>
<li><p>The following Memorandum of Understanding between the United Nations High Commissioner for Refugees and <kbd>Partner Name</kbd> is not attempt to repeat the basic principles of already existing global MOU, including descriptions of the agency responsibilities towards various populations, but will instead highlight the specific areas where close cooperation will be taking place.</p></li>
<li><p>This MoU covers the geographic Coverage for <kbd>population group</kbd>. All areas will be covered based on <kbd>sampling methodology</kbd></p></li>
<li><p>UNHCR and <kbd>Partner Name</kbd> will agree on a joint questionnaire subsequently used for all data collection related to the profiling exercise, through mobile data collection devices and a <kbd>methodlogy</kbd> (for instance: combination data collection methodologies: direct observation, key informant interviews and as means of triangulation in areas with a high concentration of <kbd>population group</kbd>, carry out Focus Group Discussions).</p></li>
<li><p>All data collectors will be selected jointly and need to sign the code of conduct. They will receive a ½ day training on the principles and objectives of the code of conduct. In addition, data collectors will be trained at a minimum in: interviewing techniques, protection principles, data protection (confidentiality, informed consent etc.), referral mechanism, usage of mobile devices, the questionnaire, and basic security principles. This introductory training will be conducted before any data collection takes place and will last 3 to 4 days. One day of field testing with the data collectors is foreseen at the beginning of the roll-out. Technical documentation of the profiling exercise will include: data collectors manual, team leader manual, data analysis plan, data entry manual and the respective Standard Operating Procedures for the project.</p></li>
<li><p>The role of the Government from the beginning of this exercise is crucial to ensure a responsible handover at the end of the project and overall ownership by the Government. To this end, the Government will be included in the project through training and in particular Line Ministries in the localities to contribute to data collection.</p></li>
<li><p>The questionnaire will be presented to and feedback sought from partners (UN, NGOs and Government) to achieve buy-in and ensure that the questionnaire meets the information needs of partners providing protection and assistance to <kbd>population group</kbd>; however, given the need for timely information delivery, contributions from partners are expected to be provided within a week from the day they receive the draft questionnaire.</p></li>
<li><p>UNHCR and <kbd>Partner Name</kbd> will have joint data ownership. The data will be stored on a UNHCR server, while UNHCR and <kbd>Partner Name</kbd> will have both administrative rights to access the data base. UNHCR and <kbd>Partner Name</kbd> will disseminate and/or publish the data collected jointly. None of them will be producing the data alone to publish products /reports /websites etc. under its own logo or other branding.. The design and layout of all information products of this project will be agreed jointly. Data collection will be an ongoing exercise to ensure that information is updated, relevant and timely. At the end of the project the data will be handed over to the Government.</p></li>
<li><p>UNHCR and <kbd>Partner Name</kbd> will establish a joint budget and enter into a cost-sharing arrangement to finance this project.</p></li>
<li><p>In line with UNHCR’s mandate for refugees, UNHCR will be collecting data on refugees residing outside camps which is not part of this MoU.</p></li>
<li><p>Nothing in this MOU shall affect the relations of either signatory to its Governing Body, nor the contractual relationship and administrative supervision of UNHCR and <kbd>Partner Name</kbd> to their operational partners.</p></li>
<li><p>The implementation of the MOU will be in compliance with the respective administrative and financial rules and procedures of UNHCR and <kbd>Partner Name</kbd> and be subject to the availability of funds.</p></li>
<li><p>This MOU will enter into force upon signature and shall be of indefinite duration.</p></li>
<li><p>This MOU may be terminated by either party upon 90 days written notice.</p></li>
<li><p>This MOU may be modified at any time by mutual consent of the parties.</p></li>
<li><p>The Representatives of both organizations will meet when necessary to discuss policy issues and will nominate officers to meet regularly to review strategic and implementation issues of particular interest to both organizations and to propose possible courses of action to address them.</p></li>
</ul>
</blockquote>
</div>
</div>
</article>
<article id="Terms-of-Reference-for-Assessment-Focal-Point"><div class="fluid-row" id="Terms-of-Reference-for-Assessment-Focal-Point_header">
<h1 class="title toc-ignore">Terms of Reference for Assessment Focal Point</h1>
</div>
<div class="TOC">
<ul>
<li><a href="#Terms-of-Reference-for-Assessment-Focal-Point_background">Background</a></li>
<li><a href="#Terms-of-Reference-for-Assessment-Focal-Point_methodology">Methodology</a></li>
<li><a href="#Terms-of-Reference-for-Assessment-Focal-Point_objectives">Objectives</a></li>
<li><a href="#Terms-of-Reference-for-Assessment-Focal-Point_deliverables">Deliverables</a></li>
<li><a href="#Terms-of-Reference-for-Assessment-Focal-Point_reporting">Reporting</a></li>
<li><a href="#Terms-of-Reference-for-Assessment-Focal-Point_time-frame">Time frame</a></li>
<li><a href="#Terms-of-Reference-for-Assessment-Focal-Point_qualification-experience-required">Qualification & Experience required</a></li>
</ul>
</div>
<div id="Terms-of-Reference-for-Assessment-Focal-Point_background" class="section level2">
<h2>Background</h2>
<p>Insert</p>
<ul>
<li>background on current protection situation,</li>
<li>details on previous assessment or what is known of the protection situation.</li>
</ul>
<p>Explain why the current assessment is planned and if there is a specific trigger that would indicate a situation change.</p>
<p>Insert any other relevant detail.</p>
</div>
<div id="Terms-of-Reference-for-Assessment-Focal-Point_methodology" class="section level2">
<h2>Methodology</h2>
<p>Survey methodology should be reviewed by UNHCR regional or HQ Infornmatiuon Management Officer <strong>prior to data collection</strong>.</p>
</div>
<div id="Terms-of-Reference-for-Assessment-Focal-Point_objectives" class="section level2">
<h2>Objectives</h2>
<p>The Assessment Focal Point will oversee the multi-sectoral needs assessment for:</p>
<ul>
<li><p><kbd>Operation</kbd></p></li>
<li><p><kbd>Population Group</kbd></p></li>
<li><p><kbd>Geographic Coverage</kbd></p></li>
<li><p><kbd>Timeframe</kbd></p></li>
</ul>
</div>
<div id="Terms-of-Reference-for-Assessment-Focal-Point_deliverables" class="section level2">
<h2>Deliverables</h2>
<ul>
<li><p>A final assessment report including recommendations on actions to address the situation is to be submitted at the end of the mission. Results of standardisation tests, details of data cleaning and plausibility checks should be presented in the final report.</p></li>
<li><p>Standardised tables as presented in the multi-sectoral needs assessment Toolkit.</p></li>
<li><p>The findings and major recommendations are to be presented to partners at the mission level (oral presentation and slides).</p></li>
<li><p>The final analysis script.</p></li>
</ul>
</div>
<div id="Terms-of-Reference-for-Assessment-Focal-Point_reporting" class="section level2">
<h2>Reporting</h2>
<p>The consultant will report on regular basis to the UNHCR [insert title of UNHCR person responsible], who will have the overall responsibility of the survey.</p>
</div>
<div id="Terms-of-Reference-for-Assessment-Focal-Point_time-frame" class="section level2">
<h2>Time frame</h2>
<p>The consultancy will last approximately [insert number of months], starting from [Insert start date].</p>
</div>
<div id="Terms-of-Reference-for-Assessment-Focal-Point_qualification-experience-required" class="section level2">
<h2>Qualification & Experience required</h2>
<p>The successful candidate will:</p>
<ul>
<li>Have a university degree or the equivalent in social science, with a specific competency in humanitarian emergencies.</li>
<li>Have significant experience in undertaking surveys (design and methodologies, staff recruitment and training, field supervision and data analysis/write up).</li>
<li>Be familiar with the survey methodology and R statistical language.</li>
<li>Be fluent in English with excellent writing and presentation skills [insert any other language requirements].</li>
</ul>
</div>
</article>
<article id="Sampling"><div class="fluid-row" id="Sampling_header">
<h1 class="title toc-ignore">Sampling</h1>
</div>
<div class="TOC">
<ul>
<li>
<a href="#Sampling_sampling-strategy">Sampling strategy</a><ul>
<li><a href="#Sampling_non-probabilistic-approaches">Non-probabilistic approaches</a></li>
<li><a href="#Sampling_probabilistic-approaches">Probabilistic approaches</a></li>
</ul>
</li>
<li>
<a href="#Sampling_sample-weight">Sample Weight</a><ul>
<li><a href="#Sampling_how-are-the-oversampled-undersampled-areas-corrected-in-data-analysis">How are the oversampled/ undersampled areas corrected in data analysis?</a></li>
<li><a href="#Sampling_what-does-it-mean-to-normalize-the-weights">What does it mean to normalize the weights?</a></li>
</ul>
</li>
<li><a href="#Sampling_pilot-sampling">Pilot Sampling</a></li>
</ul>
</div>
<div class="important">
<p>Sampling strategies are constrained by available budget, field accessibility and time.</p>
<p>hus, the chosen approach for a defined context often reflects a trade-off between representativity of the results, rapid delivery and cost effectiveness.</p>
</div>
<p><img src="images/sampling_bowl.jpeg"></p>
<div id="Sampling_sampling-strategy" class="section level2">
<h2>Sampling strategy</h2>
<p>Sampling strategy can be either probabilistic or non-probabilistic. A good introduction can be found <a href="http://www.fao.org/docrep/W3241E/w3241e08.htm">here</a></p>
<div id="Sampling_non-probabilistic-approaches" class="section level3">
<h3>Non-probabilistic approaches</h3>
<p>Non-probabilistic approaches are usually <strong>favored during the emergency phase</strong> where both time and field access represent the main challenge.</p>
<div id="Sampling_convenience-sampling" class="section level4">
<h4>Convenience sampling</h4>
<p>A frequently used method in emergency situations, it relies on sampling those respondents who are easiest to access.</p>
<p>Practically speaking those couldd be either: * Key Informants willing to be interviewed.</p>
<ul>
<li><p>Individuals or household among those who have settled along roadsides, or who present themselves to administrative center of the returnee settlement or the assistance desk, etc.</p></li>
<li><p><strong>Advantages</strong>: Easy and quick to implement, especially when time and access are the main constraints.</p></li>
<li><p><strong>Disadvantage</strong>: The danger with this type of data collection approach is that it will often lead to biased results as the sample may not be representative of the majority, i.e. those with the most resources or power are often the ones who settle in the most easily accessible areas.</p></li>
</ul>
</div>
<div id="Sampling_snowball-sampling" class="section level4">
<h4>Snowball sampling</h4>
<p>Snowball sampling (or <a href="https://en.wikipedia.org/wiki/Snowball_sampling">chain sampling, chain-referral sampling, referral sampling</a>) is a non-probability sampling technique where existing study subjects recruit future subjects from among their acquaintances. This technique is subject to numerous biases. For example, people who have many friends are more likely to be recruited into the sample.</p>
<ul>
<li><p><strong>Advantages</strong>: Useful when targeting specific groups that might be difficult to reach (hidden population).</p></li>
<li><p><strong>Disadvantage</strong>: This approach might underweight the most vulnerable individuals.</p></li>
</ul>
</div>
<div id="Sampling_purposive-sampling" class="section level4">
<h4>Purposive sampling</h4>
<p>It is based on previous knowledge about who might be able to provide valuable or specific information. It uses the judgement of community representatives, project staff or assessors to select typical locations and/or informants. The sampling of children or women, for example, is a type of purposive sampling.</p>
<p>Purposive sampling can also be done through Key Informant.</p>
<ul>
<li><p><strong>Advantages</strong>: Moderately rigorous if well and clear criteria for sampling are followed. Useful when targeting specific groups of affected population or specific affected areas. Less time consuming and less expensive than representative sampling.</p></li>
<li><p><strong>Disadvantage</strong>: Generalisations are biased and not recommended. Samples are not representative of population due to subjectivity of respondents.</p></li>
</ul>
<p>The risk of losing certain componnent of the population can be addressed by defining strata within the purposive sample.</p>
<p>In the case of Desk interview or key Informant, the more observations the better. Some kind of <a href="http://iomiraqdtm.info/Downloads/00-%20DTM%20Methodology%20Documents/DTM_LA_Credibility_Scoring_Methodology.pdf">credibility scoring</a> can be obtained for each locations based on a review of the key informant.</p>
</div>
<div id="Sampling_quota-sample" class="section level4">
<h4>Quota sample</h4>
<p>A quota sample might be representative of the population (if quotas actually do work, which is not always the case). But a quota sample will never satisfy the strict randomness requirements that statistics require. Only if we are working with a random sample can we make inferences from the sample to the population. In quota samples, there is not sufficient randomness, as the interviewer selects the interviewees actively. Therefore, quota samples cannot be used to reason about the general population.</p>
</div>
</div>
<div id="Sampling_probabilistic-approaches" class="section level3">
<h3>Probabilistic approaches</h3>
<p>Whenever the situation is becoming more <strong>protracted</strong>, probabilistic approaches should be favored. They will allow to generate more reliable results.</p>
<div id="Sampling_respondent-driven-sampling--rds" class="section level4">
<h4>Respondent-driven sampling -RDS</h4>
<p>A declination of snowball sampling is the <a href="http://www.respondentdrivensampling.org/">Respondent-driven sampling -RDS</a> approach. It combines “snowball sampling” with a mathematical model that weights the sample to compensate for the fact that the sample was collected in a non-random way. As such it can be classified as probabilistic approach. The advantage is that seeds selection is specific and does not require sample frame.</p>
<p>While data requirements for RDS analysis are minimal, there are three pieces of information which are essential for analysis (RDS analysis CANNOT BE PERFORMED without these fields for each respondent):</p>
<ul>
<li><p>Personal Network Size (Degree) - Number of people the respondent knows within the target population.</p></li>
<li><p>Respondent’s Serial Number - Serial number of the coupon the respondent was recruited with.</p></li>
<li><p>Respondent’s Recruiting Serial Numbers - Serial numbers from the coupons the respondent is given to recruit others.</p></li>
</ul>
<p>A good introduction to the organisation of RDS is in <a href="https://9f6e4747-a-62cb3a1a-s-sites.googlegroups.com/site/lsjohnstonglobal/respondent-driven-sampling/presentations-rds/RDS%20Essentials.pdf">this presentation</a>.</p>
</div>
<div id="Sampling_time-location-sampling" class="section level4">
<h4>Time-Location Sampling</h4>
<p>The Time-Location Sampling (TLS) approach can be used when the goal is to have a representation of population in movement. The idea and the assumption is to sample persons at locations and at time at which they may be found.</p>
<p>Time-location sampling is used to sample a population for which a sampling frame cannot be constructed but locations are known at which the population of interest can be found, or for which it is more efficient to sample at these locations. As such the approach is likely appropriate when the survey is taking place at a <strong>border</strong>.</p>
<p>More practical guidelines for TLS are available in a dedicated <a href="http://globalhealthsciences.ucsf.edu/sites/default/files/content/pphg/surveillance/modules/global-trainings/tls-res-guide-2nd-edition.pdf">Resource Guide TLS</a> and some application on Border Monitoring for <a href="http://meetings.sis-statistica.org/index.php/sm/sm2012/paper/viewFile/2180/149">tourism</a> or <a href="https://books.google.jo/books?id=Gz9eAgAAQBAJ&pg=PA53&lpg=PA53&dq=Border+surveys+and+Time+Location+Sampling&source=bl&ots=6i5IgC-2Mb&sig=P3CdG8-LvC0Y_LCK-MZ047gAJNQ&hl=en&sa=X&redir_esc=y#v=onepage&q=Border%20surveys%20and%20Time%20Location%20Sampling&f=false">illegal migrants</a>.</p>
</div>
<div id="Sampling_random-sampling" class="section level4">
<h4>Random sampling</h4>
<p>If you need a purely random sample, the size of the sample is a calculation that takes 3 variables:</p>
<ul>
<li><p>Size of the full population. In refugee Context, Data is coming from proGres while in IDP context, data is coming from a Displacement Tracking System.</p></li>
<li><p>Confidence level: for what proportion of the population you want to get the right estimation (usually either 90%, 95% or 99%)</p></li>
<li><p>Error Margin (or confidence interval): How much error are you willing to tolerate for each questions? i.e. + or – your estimated ratio for each questions on the top of the confidence interval (usually either 5%, 2% or 1%)</p></li>
</ul>
<p>There are <a href="https://www.surveymonkey.com/mp/sample-size-calculator/">online calculator</a> for this. Alternatively one can use the excel formula from this <a href="http://archive.snh.gov.uk/vmm/Resources/R38%20SAMPLE%20SIZE%20CALCULATOR.xls">example</a></p>
<table>
<thead><tr class="header">
<th>For 400,000 Syrians</th>
<th>5% error margin</th>
<th>2% error margin</th>
<th>1% error margin</th>
</tr></thead>
<tbody>
<tr class="odd">
<td>90% Confidence level</td>
<td>272</td>
<td>1694</td>
<td>6692</td>
</tr>
<tr class="even">
<td>95% Confidence level</td>
<td>384</td>
<td>2387</td>
<td>9379</td>
</tr>
<tr class="odd">
<td>99% Confidence level</td>
<td>662</td>
<td>4105</td>
<td>15929</td>
</tr>
</tbody>
</table>
<table>
<thead><tr class="header">
<th>For 150,000 Afghans</th>
<th>5% error margin</th>
<th>2% error margin</th>
<th>1% error margin</th>
</tr></thead>
<tbody>
<tr class="odd">
<td>90% Confidence level</td>
<td>272</td>
<td>1682</td>
<td>6511</td>
</tr>
<tr class="even">
<td>95% Confidence level</td>
<td>383</td>
<td>2363</td>
<td>9026</td>
</tr>
<tr class="odd">
<td>99% Confidence level</td>
<td>661</td>
<td>4036</td>
<td>14937</td>
</tr>
</tbody>
</table>
<p>Usually the decision on the right confidence level and error margin to be selected is also influenced by cost implication and the final usage of the figures that is looked for.</p>
</div>
<div id="Sampling_stratified-sampling" class="section level4">
<h4>Stratified sampling</h4>
<p>You can refer to this <a href="https://www.youtube.com/watch?v=WakK8Wzmw6o&list=PLyLpEs0x9BnmPTE2RRRJW058Nf7R_2xQa&index=5">Introduction video</a> or this <a href="http://ocw.jhsph.edu/courses/StatMethodsForSampleSurveys/PDFs/Lecture4.pdf">presentation</a> and this <a href="https://resources.vam.wfp.org/sites/default/files/mVAM_Generic%20training%20for%20live%20call%20operators.pptx">one frorm the WFP VAM</a>.</p>
<p>A stratified random sample can only be carried out if a complete list of the population is available. In stratified sampling the population is partitioned into groups, called strata, and sampling is performed separately within each stratum.</p>
<p>This can be done for the following reasons:</p>
<ul>
<li><p>Population groups may have different values for the responses of interest.</p></li>
<li><p>If we want to improve our estimation for each group separately.</p></li>
<li><p>To ensure adequate sample size for each group.</p></li>
</ul>
<p>In stratified sampling designs, it is assumed that:</p>
<ul>
<li><p>stratum variables are mutually exclusive (non-over lapping), e.g., urban/rural areas, economic categories, geographic regions, race, sex, etc.</p></li>
<li><p>the population (elements) should be homogenous within-stratum, and</p></li>
<li><p>the population (elements) should be heterogenous between the strata.</p></li>
</ul>
<p>The major task of stratified sampling design is the appropriate allocation of samples to different strata. The different types of allocation methods includes:</p>
<ul>
<li><p><strong>Equal allocation</strong>: Divide the number of sample units n equally among the k strata. This implies to use “weighted analysis” (disproportionate selection).</p></li>
<li><p><strong>Proportional to stratum size</strong>: Make the proportion of each stratum sample is identical to the proportion of the population. A major disadvantage of proportional allocation is that sample size in a stratum may be low and provide unreliable stratum-specific results. In terms of analysis, data will be Self-weighted (equal proportion from each stratum).</p></li>
<li><p>Allocation based on <strong>variance differences among the strata</strong> (called Optimal allocation). Optimal allocation minimizes the overall variance for a specified cost, or equivalently minimizes the overall cost for a specified variance. In situations where the standard deviations of the strata are known it may be advantageous to make a disproportionate allocation. Suppose that, we had stratum A and stratum B, but we know that the individuals assigned to stratum A were more varied with respect to their opinions than those assigned to stratum B. Optimum allocation minimises the standard error of the estimated mean by ensuring that more respondents are assigned to the stratum within which there is greatest variation. Stratum variances are usually defined by previous surveys. This approach also implies to use “weighted analysis” (disproportionate selection).</p></li>
<li><p>Allocation based on the <strong>relative cost of each survey record</strong> (called Neyman Allocation). Neyman allocation is a special case of optimal allocation where the costs per unit are the same for all strata. In this case, the ideal sample allocation allow to maximize precision, given a Stratified Sample With a fixed Sample Size. The ideal sample allocation plan would provide the most precision for the least cost. This implies to sample more heavily from a stratum when the cost to sample an element from the stratum is low, the population size of the stratum is large or the variability within the stratum is large. This approach also implies to use “weighted analysis” (disproportionate selection).</p></li>
</ul>
<p>Typically, when developing the stata definition, in case of optimal or Neyman allocation, i.e. when stratea variance are already known through a previous survey, the following objectives can be looked at:</p>
<ul>
<li><p>Find minimum sample size, given a fixed error</p></li>
<li><p>Find minimum error, given a fixed sample size</p></li>
<li><p>Find minimum error, given a fixed budget</p></li>
<li><p>Find minimum cost to achieve a fixed error</p></li>
</ul>
<p>Typical workflow to define sample size in case of stratified sampling:</p>
<ol style="list-style-type: decimal">
<li>Choose the stratification (e.g.regions, district…)</li>
<li>Define the population (N) of each strata</li>
<li>Decide on key indicator(s)</li>
<li>Estimate mean & variance or prevalence of key indicator</li>
<li>Decide on precision and confidence level</li>
<li>Calculate the initial total sample size (n) according to the budget/time</li>
<li>Use simple random sample per strata to select your representative sample</li>
</ol>
<p>To estimate sample size, you need to know:</p>
<ul>
<li>Estimate of the prevalence or mean & STDev of the key indicator (e.g. 30% return intention). Prevalence is the total number of cases for a variable of interest that is <strong>typically binary</strong> within a population divided by its total population. Mean is the expected value of a variable of interest that is <strong>typically continuous</strong> within a prescribed range for a given population (e.g. expenditure per case)</li>
<li>Precision desired (for example: ± 5%). Precision is the variability of the estimate.</li>
<li>Level of confidence (for example: 95%). It represents the probability of the same result if you re-sampled, all other things equal.</li>
<li>Population (only if below 10,000, otherwise it will not influence the required sample size)</li>
<li>Expected response rate (for example: 90%)</li>
<li>Number of eligible individuals per household (if applicable)</li>
</ul>
<p>Stratified sampling can be performed with R. <a href="https://github.com/unhcr-mena/stratified-sampling">Tutorial scripts are available here</a>.</p>
</div>
<div id="Sampling_post-stratification" class="section level4">
<h4>Post stratification</h4>
<p>One can also use weights, computed through a <a href="https://www.r-bloggers.com/survey-computing-your-own-post-stratification-weights-in-r/">post-stratification process</a>, to get potentially biased surveys, like online surveys, to better fit the underlying population. The only thing that weights can do, is ensure that your sample composition better mimics the general population’s characteristics. Weights will never help you if the process governing non-response is part of the puzzle you want to solve.</p>
<p>In a random sample, we define a population, draw from that population at random and then compute and apply weights to align the sample with the population. This weighting is necessary because some people originally sampled might be e.g. harder to reach than others, thereby biasing the sample. Once the post-stratification weights have been applied, the random sample is representative of the population it was drawn from. Statistics gives us a method to tell just how accurately the findings from the sample can be generalized.</p>
</div>
<div id="Sampling_cluster-sampling" class="section level4">
<h4>Cluster sampling</h4>
<p>Cluster sampling is a technique that allows to reduce the surveying budget when <strong>travel cost are important</strong>. Instead of covering a whole territory, the cluster sampling implies to divide the population into separate groups, called clusters. Then, a simple random sample of clusters is selected from the population.</p>
<p>Cluster sampling are therefore not relevant when techniques such as phone interview are used as there’s no marginal surveying cost involved with location of interview.</p>
<p>Given equal sample sizes, cluster sampling usually provides less precision than either simple random sampling or stratified sampling.</p>
<p>Different approaches can be used for cluster sampling</p>
<ul>
<li>One-stage sampling. All of the elements within selected clusters are included in the sample.</li>
<li>Two-stage sampling. A subset of elements within each selected cluster is randomly selected for inclusion in the sample.</li>
</ul>
</div>
<div id="Sampling_sampling-with-replacement-and-sampling-without-replacement" class="section level4">
<h4>Sampling with Replacement and Sampling without Replacement</h4>
<div id="Sampling_what-is-replacement" class="section level5">
<h5>What is replacement?</h5>
<p>When a population element can be selected more than one time, we are sampling with replacement. When a population element can be selected only one time, we are sampling without replacement. When we sample with replacement, the two sample values are independent. Practically, this means that what we get on the first one doesn’t affect what we get on the second. Mathematically, this means that the covariance between the two is zero. In sampling without replacement, the two sample values aren’t independent. Practically, this means that what we got for the first one affects what we can get for the second one. Mathematically, this means that the covariance between the two isn’t zero.</p>
</div>
<div id="Sampling_with-or-without" class="section level5">
<h5>With or without?</h5>
<p>In small populations and often in large ones, sampling is typically done “without replacement”, i.e. , one deliberately avoids choosing any member of the population more than once.</p>
<p>Less commonly, sampling can also be conducted with replacement. This allows to address low response rate.</p>
<p>For a small sample from a large population, sampling without replacement is approximately the same as sampling with replacement, since the odds of choosing the same individual twice is low. This can be measure by calculating the covariance: how much two items’ probabilities are linked together. The higher the covariance, the more the results can be influenced. A covariance of zero would mean there’s no difference between sampling with replacement or sampling without.</p>
</div>
<div id="Sampling_the-specific-case-of-phone-surveys" class="section level5">
<h5>The specific case of phone surveys</h5>
<p>As explained in this <a href="http://www.statcan.gc.ca/pub/12-001-x/2001002/article/6089-eng.pdf">paper</a>, bias may be introduced into population estimates through telephone surveys, however, by the exclusion of non-telephone households from these surveys. The bias introduced can be significant since “non-telephone households” may differ from telephone households in ways that are not adequately handled by poststratification. Many households, called “transients”, move in and out of the telephone population during the year, sometimes due to economic reasons or relocation. The transient telephone population may be representative of the non-telephone population in general since its members have recently been in the non-telephone population.</p>
</div>
</div>
</div>
</div>
<div id="Sampling_sample-weight" class="section level2">
<h2>Sample Weight</h2>
<p>Over-sampling in regions with small populations ensures that they have a large enough sample to be representative. Under-sampling is done in regions with large populations to save costs. Sample weights are mathematical adjustments applied to the data to correct for over-sampling, under-sampling, and different response rates to the survey in different regions.</p>
<div id="Sampling_how-are-the-oversampled-undersampled-areas-corrected-in-data-analysis" class="section level3">
<h3>How are the oversampled/ undersampled areas corrected in data analysis?</h3>
<p>The samples are designed to permit data analysis of regional subsets within the sample population. When the expected number of cases for some of these regions is too small for analysis, it is necessary to oversample those areas. When the expected number of cases for some of these regions is unnecessarily large, those areas may be undersampled to accommodate logistical or budgetary constraints.</p>
<p>During analysis, it is then necessary to “weight down” the oversampled areas and “weight up” the undersampled areas. The developing of the sampling weights has taken this factor into account. Always use the weight variable found in the DHS data set. Even in surveys that come from a self-weighting sample, it is still necessary to use the sampling weights in analysis because the response behavior may differ by response groups.</p>
</div>
<div id="Sampling_what-does-it-mean-to-normalize-the-weights" class="section level3">
<h3>What does it mean to normalize the weights?</h3>
<p>After the weights are initially calculated, they are normalized, or standardized, by dividing each weight by the average of the initial weights (equal to the sum of the initial weight divided by the sum of the number of cases) so that the sum of the normalized/standardized weights equals the sum of the cases over the entire sample. The standardization is done separately for each weight for the entire sample.</p>
<p>The entire set of household sample weights is multiplied by a constant, thus, the total weighted number of households equals the total unweighted number of households at the national level.</p>
<p>Individual sample weights are normalized separately for women and men. Thus, the total weighted number of women equals the total unweighted number of women, and the total weighted number of men equals the total unweighted number of men. Women and men are normalized separately because all non-HIV calculations are performed on women and men separately. We do not provide survey estimates on the joint population of women and men combined for anything other than HIV prevalence.</p>
</div>
</div>
<div id="Sampling_pilot-sampling" class="section level2">
<h2>Pilot Sampling</h2>
<p>In the desing phase of questionnaires it is recommended that a pilot study should be undertaken for the purpose of testing the reliability and validity of the tool.</p>
<p>The sampling phase should consist of the following steps:</p>
<p>1- Sample size calculation: to apply the statistical tests with enough statistical power, sufficient sample size should be calculated for the piloting. There are no formulas or standard mathematical equations to determine the sample size. However, as a rule of thumb, it is recommended statistically to have the following criteria:</p>
<pre><code>a) Each question and dimension in the questionnaire should have at least 3-5 observations, meaning each question must be answered by at least three participants. For example, if the questionnaire consists of 10 questions and 2 dimensions the minimum sample size = (10 + 2) × 3 = 12 × 3 = 36 participants.
b) A margin of at least 10% should be added to allow for missingness, errors, attrition, etc. So, using the previous example, four additional participants should be added, bringing the sample size to 40
c) The minimum recommended sample size, regardless of the number of questions and dimensions, is 30. A sample smaller than this would make the statistical tests lose considerable power.
d) If you are implementing more than one version, each version is a different questionnaire. In other words, for example, English and Arabic versions are different from each other, and the samples should not be added together. Also, you cannot use the sample from the English or Arabic version to validate the other. If you want to test both the English and Arabic versions, each questionnaire requires its sample of at least 30 participants, or the recommended sample size described in (a) and (b). Also, the participants should not answer more than one version of the questionnaire.</code></pre>
<p>2- Sampling methods: there are several ways for sampling methods. Each method has its advantages and disadvantages. The following are the most commonly used methods in pilot studies:</p>
<pre><code>a) Purposive sample: a non-probability sample that is selected based on characteristics of a population and the objective of the study. Purposive sampling is also known as judgmental, selective, or subjective sampling. It is used when we want to target specific profiles and characteristics to ensure that we have selected what serves the objective of the study. Using proGres, a sample of participants can be selected based on certain criteria. For example, to cover the study’s aim, it is required to have participants from every GCC country, only Syrians, with and without jobs, do have household members, etc. Then the sample can be selected by the researcher(s) from the eligible list.
b) Random sampling: a random sample of participants selected from the list of participants available. Like the purposive sample in assigning inclusion and exclusion criteria. However, the sample is chosen randomly out of eligible participants.
c) Convenient sampling: this method used to save time and resources. Convenient sampling is done by collecting those who are directly available to us without being concerned too much about their profiles.</code></pre>
<p><strong>Recommendation: The methods in (a) and (b) are recommended for the best results.</strong></p>
</div>
</article>
<article id="Interview"><div class="fluid-row" id="Interview_header">
<h1 class="title toc-ignore">Interview</h1>
</div>
<div class="TOC">
<ul>
<li>
<a href="#Interview_definition-of-household-and-relations-with-unhr-registration-case">Definition of household and relations with UNHR Registration case</a><ul>
<li><a href="#Interview_definition-of-households-and-relations-with-unhcr-registration-case">Definition of households and relations with UNHCR Registration case</a></li>
<li><a href="#Interview_relations-with-unhcr-cases-as-per-registration">Relations with UNHCR cases as per Registration</a></li>
</ul>
</li>
<li>
<a href="#Interview_comparison-of-interview-approaches">Comparison of interview approaches</a><ul>
<li><a href="#Interview_face-to-face-interview">Face to Face interview</a></li>
<li><a href="#Interview_telephone-interview-through-call-center">Telephone interview through Call Center</a></li>
<li><a href="#Interview_self-administered-with-online-quota-survey">Self administered with online quota survey</a></li>
<li><a href="#Interview_interactive-voice-response-short-text-message-sms-pools">Interactive Voice Response & Short text Message (SMS) Pools</a></li>
</ul>
</li>
<li><a href="#Interview_interview-incentives">Interview incentives</a></li>
<li><a href="#Interview_interview-length">Interview length</a></li>
<li><a href="#Interview_who-to-interview">Who to interview?</a></li>
<li><a href="#Interview_how-to-deal-with-sensitive-questions">How to deal with Sensitive questions?</a></li>
</ul>
</div>
<div class="important">
<p>Several aspects come into play in the data collection process. The three most crucial aspects include: the cost of the selected data collection method; the accuracy of data collected; and the efficiency of data collection.</p>
<p>In regard to behavioural characteristics, it is generally recognised that face-to-face data deliver the best results, followed by telephone interviews and finally online quota survey. Interactive Voice Response & Short text Message (SMS) Pools are adequate only in very specific cases.</p>
<p>Interview incentives can be very effective to ensure a good response ratio.</p>
</div>
<p>Many guidelines are available such as:</p>
<ul>
<li><a href="http://unstats.un.org/unsd/demographic/sources/surveys/Series_F98en.pdf">Designing Household Survey Samples: Practical Guidelines</a></li>
<li><a href="https://openknowledge.worldbank.org/bitstream/handle/10986/6975/350340The0Powe1n0REV01OFFICIAL0USE1.pdf?sequence=1">The Power of Survey Design</a></li>
</ul>
<div id="Interview_definition-of-household-and-relations-with-unhr-registration-case" class="section level2">
<h2>Definition of household and relations with UNHR Registration case</h2>
<div id="Interview_definition-of-households-and-relations-with-unhcr-registration-case" class="section level3">
<h3>Definition of households and relations with UNHCR Registration case</h3>
<p>This concept is explained in details in the (Principles and Recommendations for <a href="http://unstats.un.org/unsd/publication/seriesM/Series_M67rev3en.pdf">Population and Housing Censuses</a>.</p>
<p>The concept of household include those persons who live together and have communal arrangements concerning subsistence and other necessities of life, such as eating together. This implies therefore two important arrangements:</p>
<ul>
<li><p>The <strong>household dwelling</strong> concept regards all persons living in a housing unit as belonging to the same household. According to this concept, there is one household per occupied housing unit. Therefore, the number of occupied housing units and the number of households occupying them are equal and the locations of the housing units and households are identical.</p></li>
<li><p>The <strong>housekeeping concept</strong>, that is to say, a person or a group of two or more persons living together who make common provision for food or other essentials for living, with or without combining with any other person to form part of a multi-person household. The persons in the group may pool their resources and have a common budget; they may be related or unrelated persons or a combination of persons both related and unrelated.</p></li>
</ul>
<div id="Interview_household-types" class="section level4">
<h4>Household types</h4>
<p>Three types of households can be distinguished:</p>
<p><strong>Nuclear household</strong>: defined as a household consisting entirely of a single family nucleus. It may be classified into:</p>
<ul>
<li>Married-couple family: With child(ren) or Without child(ren);</li>
<li>Partner in consensual union (cohabiting partner): With child(ren) or Without child(ren);</li>
<li>Father with child(ren);</li>
<li>Mother with child(ren);</li>
</ul>
<p><strong>Extended household</strong>: defined as a household consisting of any one of the following:</p>
<ul>
<li>A single family nucleus and other persons related to the nucleus, for example, a father with child(ren) and other relative(s) or a married couple with other relative(s) only;</li>
<li>Two or more family nuclei related to each other without any other persons, for example, two or more married couples with child(ren) only;</li>
<li>Two or more family nuclei related to each other plus other persons related to at least one of the nuclei, for example, two or more married couples with other relative(s) only;</li>
<li>Two or more persons related to each other, none of whom constitute a family nucleus;</li>
</ul>
<p><strong>Composite household</strong>: like an extended household with the difference of :</p>
<ul>
<li>A single family nucleus plus other persons, some of whom are related to the nucleus and some of whom are not, for example, mother with child(ren) and other relatives and non-relatives;</li>
<li>A single family nucleus plus other persons, none of whom is related to the nucleus, for example, father with child(ren) and non-relatives);</li>
<li>Two or more family nuclei related to each other plus other persons, some of whom are related to at least one of the nuclei and some of whom are not related to any of the nuclei, for example, two or more couples with other relatives and non-relatives only;</li>
<li>Two or more family nuclei related to each other plus other persons, none of whom is related to any of the nuclei, for example, two or more married couples one or more of which with child(ren) and non-relatives;</li>
<li>Two or more family nuclei not related to each other, with or without any other persons;</li>
<li>Two or more persons related to each other but none of whom constitute a family nucleus, plus other unrelated persons;</li>
<li>Non-related persons only;</li>
</ul>
</div>
</div>
<div id="Interview_relations-with-unhcr-cases-as-per-registration" class="section level3">
<h3>Relations with UNHCR cases as per Registration</h3>
<p>The UNHCR case is the equivalent of the nuclear household. UNHCR case number (or ID/Identifiers) are used a basis for large part of the assistance delivery.</p>
<p>When surveying Households, it is important to make connection between the households and the cases:</p>
<ul>
<li>Case 1: One single family nucleus which then equals a UNHCR case. In this case both dwelling & housekeeping are de facto shared.</li>
<li>Case 2: An extended household with two or more than two UNHCR cases. In this case, the surveyor will record if dwelling & housekeeping are effectively shared between cases.</li>
<li>Case 3: A composite household with two or more than two UNHCR cases, as well as additional members, such as host communities individuals. In this case, the surveyor will record if dwelling & housekeeping are effectively shared between cases, as well as with the members that are not part of the cases.</li>
</ul>
<p>The main point is to allow for understanding the allocation of expenses (housekeeping & dwelling) between cases that would be grouped together in the same extended or composite household. The allocation could be based for instance on:</p>
<ul>
<li>One case covering for all other cases;</li>
<li>One case covering for non-UNHCR case members;</li>
<li>Allocation based on number of individuals in each case;</li>
<li>Allocation based on number of adult individuals in each case;</li>
<li>Allocation based on number of individuals earning an income in each case, etc.</li>
</ul>
</div>
</div>
<div id="Interview_comparison-of-interview-approaches" class="section level2">
<h2>Comparison of interview approaches</h2>
<p>The following is based on Literature review from <a href="http://www.electionstudies.org/resources/papers/documents/nes010871.pdf">here</a> and <a href="http://academyofwinebusiness.com/wp-content/uploads/2013/04/Szolnoki-Hoffmann.pdf">here</a>.</p>
<div id="Interview_face-to-face-interview" class="section level3">
<h3>Face to Face interview</h3>
<p><strong>Advantages:</strong></p>
<ul>
<li><p>Accurate screening. Face-to-face interviews help with more accurate screening. The individual being interviewed is unable to provide false information during screening questions such as gender, age, or race.</p></li>
<li><p>Keep focus. The interviewer is the one that has control over the interview and can keep the interviewee focused and on track to completion.</p></li>
<li><p>Capture emotions and behaviors. Face-to-face interviews can no doubt capture an interviewee’s emotions and behaviors. Interviewer opinion can be a very good predictor of vulnerability for instance</p></li>
</ul>
<p><strong>Disadvantages:</strong></p>
<ul>
<li><p>Cost. Cost is a major disadvantage for face-to-face interviews. They require a staff of people to conduct the interviews, which means there will be personnel costs.</p></li>
<li><p>Quality of data by interviewer. The likelihood of the entire interviewing staff having those skills is low. Some interviewers may also have their own biases that could impact the way they input responses.</p></li>
<li><p>Reluctance: Women and the elderly may feel more physically vulnerable than men and younger people. So the first of these groups may be more reluctant to allow a stranger into their homes for an interview, whereas they may be willing to talk with an interviewer over the telephone.</p></li>
<li><p>Limit sample size. The size of the sample is limited to the size of your interviewing staff, the area in which the interviews are conducted, and the number of qualified respondents within that area.</p></li>
<li><p>Higher level of “unknown” response are observed and were demonstrated by <a href="http://egap.org/content/brief-36-face-face-interviews-cognitive-skill-and-non-response">studies</a>: “There is more item non-response in in-person interviews and that non-response is being driven by people with low levels of cognitive skills. The fact that there was an increased rate of correct responses to fact-based questions in the in-person interviews compared to the self-completed ones – with the concomitant decrease in “don’t knows” – suggests that it is not the case that people are randomly guessing in the self-completed modes. The in-person interview seems to keep people from answering even when they know the correct response".</p></li>
</ul>
</div>
<div id="Interview_telephone-interview-through-call-center" class="section level3">
<h3>Telephone interview through Call Center</h3>
<p>Telephone surveys may provide a good alternative, but we would advise use of a larger sample.</p>