-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tex
2031 lines (1596 loc) · 74.2 KB
/
index.tex
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
% Options for packages loaded elsewhere
\PassOptionsToPackage{unicode}{hyperref}
\PassOptionsToPackage{hyphens}{url}
%
\documentclass[
a4paper,
onecolumn,
oneside]{book}
\usepackage{amsmath,amssymb}
\usepackage{lmodern}
\usepackage{iftex}
\ifPDFTeX
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % provide euro and other symbols
\else % if luatex or xetex
\usepackage{unicode-math}
\defaultfontfeatures{Scale=MatchLowercase}
\defaultfontfeatures[\rmfamily]{Ligatures=TeX,Scale=1}
\fi
% Use upquote if available, for straight quotes in verbatim environments
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\IfFileExists{microtype.sty}{% use microtype if available
\usepackage[]{microtype}
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
}{}
\makeatletter
\@ifundefined{KOMAClassName}{% if non-KOMA class
\IfFileExists{parskip.sty}{%
\usepackage{parskip}
}{% else
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}}
}{% if KOMA class
\KOMAoptions{parskip=half}}
\makeatother
\usepackage{xcolor}
\setlength{\emergencystretch}{3em} % prevent overfull lines
\setcounter{secnumdepth}{5}
% Make \paragraph and \subparagraph free-standing
\ifx\paragraph\undefined\else
\let\oldparagraph\paragraph
\renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}}
\fi
\ifx\subparagraph\undefined\else
\let\oldsubparagraph\subparagraph
\renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}}
\fi
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}\usepackage{longtable,booktabs,array}
\usepackage{calc} % for calculating minipage widths
% Correct order of tables after \paragraph or \subparagraph
\usepackage{etoolbox}
\makeatletter
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
\makeatother
% Allow footnotes in longtable head/foot
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
\makesavenoteenv{longtable}
\usepackage{graphicx}
\makeatletter
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
\makeatother
% Scale images if necessary, so that they will not overflow the page
% margins by default, and it is still possible to overwrite the defaults
% using explicit options in \includegraphics[width, height, ...]{}
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
% Set default figure placement to htbp
\makeatletter
\def\fps@figure{htbp}
\makeatother
\makeatletter
\@ifpackageloaded{tcolorbox}{}{\usepackage[many]{tcolorbox}}
\@ifpackageloaded{fontawesome5}{}{\usepackage{fontawesome5}}
\definecolor{quarto-callout-color}{HTML}{909090}
\definecolor{quarto-callout-note-color}{HTML}{0758E5}
\definecolor{quarto-callout-important-color}{HTML}{CC1914}
\definecolor{quarto-callout-warning-color}{HTML}{EB9113}
\definecolor{quarto-callout-tip-color}{HTML}{00A047}
\definecolor{quarto-callout-caution-color}{HTML}{FC5300}
\definecolor{quarto-callout-color-frame}{HTML}{acacac}
\definecolor{quarto-callout-note-color-frame}{HTML}{4582ec}
\definecolor{quarto-callout-important-color-frame}{HTML}{d9534f}
\definecolor{quarto-callout-warning-color-frame}{HTML}{f0ad4e}
\definecolor{quarto-callout-tip-color-frame}{HTML}{02b875}
\definecolor{quarto-callout-caution-color-frame}{HTML}{fd7e14}
\makeatother
\makeatletter
\makeatother
\makeatletter
\@ifpackageloaded{bookmark}{}{\usepackage{bookmark}}
\makeatother
\makeatletter
\@ifpackageloaded{caption}{}{\usepackage{caption}}
\AtBeginDocument{%
\ifdefined\contentsname
\renewcommand*\contentsname{Table of contents}
\else
\newcommand\contentsname{Table of contents}
\fi
\ifdefined\listfigurename
\renewcommand*\listfigurename{List of Figures}
\else
\newcommand\listfigurename{List of Figures}
\fi
\ifdefined\listtablename
\renewcommand*\listtablename{List of Tables}
\else
\newcommand\listtablename{List of Tables}
\fi
\ifdefined\figurename
\renewcommand*\figurename{Figure}
\else
\newcommand\figurename{Figure}
\fi
\ifdefined\tablename
\renewcommand*\tablename{Table}
\else
\newcommand\tablename{Table}
\fi
}
\@ifpackageloaded{float}{}{\usepackage{float}}
\floatstyle{ruled}
\@ifundefined{c@chapter}{\newfloat{codelisting}{h}{lop}}{\newfloat{codelisting}{h}{lop}[chapter]}
\floatname{codelisting}{Listing}
\newcommand*\listoflistings{\listof{codelisting}{List of Listings}}
\makeatother
\makeatletter
\@ifpackageloaded{caption}{}{\usepackage{caption}}
\@ifpackageloaded{subcaption}{}{\usepackage{subcaption}}
\makeatother
\makeatletter
\@ifpackageloaded{tcolorbox}{}{\usepackage[many]{tcolorbox}}
\makeatother
\makeatletter
\@ifundefined{shadecolor}{\definecolor{shadecolor}{rgb}{.97, .97, .97}}
\makeatother
\makeatletter
\@ifpackageloaded{sidenotes}{}{\usepackage{sidenotes}}
\@ifpackageloaded{marginnote}{}{\usepackage{marginnote}}
\makeatother
\makeatletter
\makeatother
\ifLuaTeX
\usepackage{selnolig} % disable illegal ligatures
\fi
\IfFileExists{bookmark.sty}{\usepackage{bookmark}}{\usepackage{hyperref}}
\IfFileExists{xurl.sty}{\usepackage{xurl}}{} % add URL line breaks if available
\urlstyle{same} % disable monospaced font for URLs
\hypersetup{
pdftitle={CCCM IM Handbook},
pdfauthor={CCCM Cluster},
hidelinks,
pdfcreator={LaTeX via pandoc}}
\title{CCCM IM Handbook}
\author{CCCM Cluster}
\date{}
\begin{document}
\frontmatter
\maketitle
\ifdefined\Shaded\renewenvironment{Shaded}{\begin{tcolorbox}[enhanced, frame hidden, sharp corners, borderline west={3pt}{0pt}{shadecolor}, breakable, interior hidden, boxrule=0pt]}{\end{tcolorbox}}\fi
\renewcommand*\contentsname{Table of contents}
{
\setcounter{tocdepth}{2}
\tableofcontents
}
\listoffigures
\mainmatter
\bookmarksetup{startatroot}
\hypertarget{introduction}{%
\chapter*{Introduction}\label{introduction}}
\addcontentsline{toc}{chapter}{Introduction}
\markboth{Introduction}{Introduction}
\begin{tcolorbox}[enhanced jigsaw, left=2mm, rightrule=.15mm, arc=.35mm, coltitle=black, opacityback=0, colframe=quarto-callout-warning-color-frame, breakable, toprule=.15mm, titlerule=0mm, leftrule=.75mm, opacitybacktitle=0.6, title=\textcolor{quarto-callout-warning-color}{\faExclamationTriangle}\hspace{0.5em}{Warning}, bottomtitle=1mm, toptitle=1mm, bottomrule=.15mm, colbacktitle=quarto-callout-warning-color!10!white, colback=white]
The handbook is in an early draft stage. Most sections are incomplete
and structure of the handbook may be subject to change.
\end{tcolorbox}
\begin{tcolorbox}[enhanced jigsaw, left=2mm, rightrule=.15mm, arc=.35mm, coltitle=black, opacityback=0, colframe=quarto-callout-note-color-frame, breakable, toprule=.15mm, titlerule=0mm, leftrule=.75mm, opacitybacktitle=0.6, title=\textcolor{quarto-callout-note-color}{\faInfo}\hspace{0.5em}{Note}, bottomtitle=1mm, toptitle=1mm, bottomrule=.15mm, colbacktitle=quarto-callout-note-color!10!white, colback=white]
This handbook is also available to download in pdf and epub formats (see
top left). To use the handbook as an offline mobile app, click ``Add to
home screen'' on Chrome and visit the pages you wish to cache/save.
\end{tcolorbox}
This handbook was developed with the aim of providing a consolidated
guidance document covering the key aspects of Information Management
(IM) for Camp Coordination and Camp Management (CCCM). It was created to
fill the gaps in guidance specific to information management in CCCM and
to document, consolidate and streamline existing IM practices within the
sector.\footnote{Development of the handbook started in late 2021, with
the first draft planned for February 2022.}
The primary audience for this handbook are information management staff
of all levels, who are involved, or plan to be involved in IM for CCCM
in either a programmes or cluster capacity. The handbook is also
relevant to non IM personnel especially coordinators, acknowledging the
importance of understanding both data literacy and CCCM analytical norms
outside of the IM function.
The handbook is presented in three parts, broadly reflecting the
differing use-cases and audiences.
\begin{itemize}
\item
\textbf{Part 1} provides an overview of the key concepts related to
humanitarian information management, which can be applied to all
sectors and technical areas in a humanitarian response.
\item
\textbf{Part 2} builds upon the knowledge from part 1, applying it to
the role of information management within CCCM programmes.
\item
\textbf{Part 3} focuses on the role of CCCM IM within cluster
coordination, with the key responsibilities for each stage of the
Humanitarian Programme Cycle (HPC).
\end{itemize}
The handbook is available as a website (viewable on desktop or phone) or
can be download as a pdf or kindle format for offline viewing. While
viewing the web version, the left margin shows the three parts of the
handbook, containing each chapter. Some of the larger chapters are split
into sections (denoted by a downward-facing arrow). The right margin of
the screen are for easy navigation through the content ofe ach
chapter/section.
Humanitarian approaches and tools grow and change over time, which is
particularly evident in the field of information management. This
handbook aims to be a \emph{living document} whose contents will be
continually updated to reflect our growing knowledge and best practices,
and evolution in our approaches and tools in both IM and CCCM.
\begin{figure}
{\centering \includegraphics[width=0.7\textwidth,height=\textheight]{./part1/images/spirits.jpg}
}
\caption{Towards evidence-based decision making}
\end{figure}
\hypertarget{feedback}{%
\section*{Feedback}\label{feedback}}
\addcontentsline{toc}{section}{Feedback}
\markright{Feedback}
If you have any questions, wish to correct any technical or textual
mistakes, or wish to suggest improvements to this handbook, plese get in
touch with the Global CCCM Cluster Information Management Officers (IMO)
Brian Mc Donald -
\href{mailto:[email protected]}{\nolinkurl{[email protected]}} or Alisa
Ananbeh - \href{mailto:[email protected]}{\nolinkurl{[email protected]}}
\begin{quote}
We would like to thank everybody for their support in developing this
handbook and hope that you find it accessible and useful
\begin{itemize}
\tightlist
\item
the CCCM Cluster team
\end{itemize}
\end{quote}
\hypertarget{acknowledgements}{%
\section*{Acknowledgements}\label{acknowledgements}}
\addcontentsline{toc}{section}{Acknowledgements}
\markright{Acknowledgements}
The content in this handbook are drawn from three main sources:
\begin{itemize}
\item
The experience, advice and materials from our CCCM colleagues in the
field.
\item
Guidance materials developed at the global-level from inter-agency
platforms including the Global Information Management Working Group
and from other Clusters.
\item
Many excellent information management trainings including: OCHA's
\href{https://www.humanitarianresponse.info/en/operations/simulation-training/caim}{Coordinated
Assessment and Information Management training (CAIM)}; and
\href{https://www.acaps.org/humanitarian-analysis-programme-hap}{ACAPS's
Humanitarian Analysis Program}.
\end{itemize}
\part{Humanitarian IM}
\hypertarget{data-literacy}{%
\chapter{Data Literacy}\label{data-literacy}}
\begin{tcolorbox}[enhanced jigsaw, left=2mm, rightrule=.15mm, arc=.35mm, coltitle=black, opacityback=0, colframe=quarto-callout-warning-color-frame, breakable, toprule=.15mm, titlerule=0mm, leftrule=.75mm, opacitybacktitle=0.6, title=\textcolor{quarto-callout-warning-color}{\faExclamationTriangle}\hspace{0.5em}{Warning}, bottomtitle=1mm, toptitle=1mm, bottomrule=.15mm, colbacktitle=quarto-callout-warning-color!10!white, colback=white]
This chapter is in draft stage.
\end{tcolorbox}
The purpose of this chapter is to introduce the reader to the concept of
data, what it is, how it used in humanitarian response and its relevance
in the role of information management. This chapter forms an important
basis for subsequent chapters as it aims to clearly describe key
concepts around data to ensure their clear and shared understanding.
This shared vocabulary is vital for the collaboration needed at the
various stages of the data's lifecycle. This chapter is primarily aimed
at IM's but is also relevant to any humanitarian involved to any degree
in evidence-based decision making.\footnote{From the
\href{files/Reference\%20Module\%20for\%20Cluster\%20Coordination\%20at\%20Country\%20Level.pdf}{IASC
Reference Module for Cluster Coordination at Country Level, revised
July 2015}}
\begin{figure}
{\centering \includegraphics[width=0.7\textwidth,height=\textheight]{part1/./images/idontthinkitmeanswhatyouthinkitmeans.jpg}
}
\caption{A shared understanding of terms is important for engagement
around data}
\end{figure}
\hypertarget{what-is-data}{%
\section{What is data?}\label{what-is-data}}
Data is the physical representation of information in a manner suitable
for communication, interpretation, or processing by human beings or by
automatic means.\footnote{More details on
\href{https://www.humanitarianresponse.info/en/programme-cycle/space}{HumanitarianResponse.info}}
It can be structured or unstructured, can come in many different forms
(human-readable or machine-readable) and can come from any number of
sources, using any number of methods. While the terms \emph{data},
\emph{information} and \emph{knowledge} are quite often used
interchangeably it is helpful to think of information as data integrated
into context, and knowledge as a collection of information, processed in
a way that provides learning.
\hypertarget{what-does-it-look-like}{%
\section{What does it look like?}\label{what-does-it-look-like}}
Data is all around us but is usually messy and unstructured. Processing
this information into a structure that can provide sense is at the core
of IM. This `sense-making' can use different approaches - an experienced
camp manager may decide to walk into a new camp, walk around it
observing it, deciding on what actions they need to prioritize. Another
may prefer to set up a list of indicators to measure specific needs in
the camp. The approaches are different (and quite often complimentary)
but the goal and process are to a large extent the same.
:::\{admonition\} Exercise Take a look at your desk and choose an
object. Describe the attributes of that item. Perhaps you can describe
the items colour, its length, its width, its texture, the materials its
constructed from or how effective it is for your work. A surprising
amount of data can be gathered from even the simplest of objects. :::
To get from messy data to structured that that can be used - by itself,
or more commonly in conjunction with other datasets - a degree of
organizing, tagging or categorizing must take place. If a survey is
used, those categories are determined by the questions asked the type of
questions and the response options. When setting these categories it is
very important that each person involved with the data - from the person
giving the response, the enumerator right up to those whose programmatic
decisions it informs - has a clear and common understanding of what and
how a concept is captured in these categories.
\hypertarget{formats}{%
\subsection{Formats}\label{formats}}
Valuable humanitarian data can often start out as paper survey
responses, hand written notes (ie. distribution details) or as
handwritten notes (such as from Focus Group Discussions). To aid the
cleaning, processing and management of this data, digitization may be
required. Digital data can be stored in a number of the following
formats and is closely linked to the tools used to gather and/or store
the data:
\begin{itemize}
\item
\textbf{Tabular data:} By far the most common format for humanitarian
data, Excel or Comma Separated Value (CSV) files show data as a table
where each column represent as variable in your data and each row
ideally represents an observation. \footnote{For a detailed
explanation of RGB and CMYK and how they differ, see
\href{https://en.99designs.ch/blog/tips/correct-file-formats-rgb-and-cmyk/}{here}}
\item
\textbf{Relational databases:} Data cant always be represented in a
single table. Quite often there is a need to present the data across
multiple tables, showing the linkages(relationships) between variables
in different table. Relational databases provide an underlying data
model for most modern websites and software. An example use for a
relational database could be in the recording of trainings, where one
table contains rows, each representing a single training while a
second table contains the list of participants. The relationships
between these two tables could be defined as \emph{each training can
contain multiple participants} and \emph{each participant can attend
multiple trainings}
\item
\textbf{APIs} To aid the access and transfer of data, it is very
common for modern software systems to have an API, in which other
websites (or data analysis tools) can request data from the underlying
data store. The most common file format for these is called JSON, a
semi-human readable format with the advantage over tabular formats in
that is can represent messy semi-structured data or complex
relationships that would otherwise require a database. \footnote{ACAPS
have a great guide on the
\href{https://www.acaps.org/use-colour-data-display}{Use of Colour
in Data Display}}
\item
\textbf{Spatial:} Spatial data formats such as .shp, .gpg, .geojson
.geotiff or .dem are used to store 2d or 3d spatial data. Most of
these formats can display or export to tabular formats.
\end{itemize}
\begin{figure*}
{\centering \includegraphics[width=0.7\textwidth,height=\textheight]{part1/./images/formats.png}
}
\caption{Examples of data as tables, a relational database, and as JSON
from an travel distance API}
\end{figure*}
\hypertarget{sources}{%
\subsection{Sources}\label{sources}}
\begin{itemize}
\tightlist
\item
Common Operating Datasets (CODs)
\item
HDX
\item
Internal systems
\item
Others
\item
Non traditional sources
\end{itemize}
\hypertarget{data-concepts}{%
\section{Data concepts}\label{data-concepts}}
\hypertarget{values}{%
\subsection{Values}\label{values}}
Simple data values can be numeric; such as an integer (whole number) or
float; boolean, such as a yes/no or true/false; or a string, a sequence
of symbols such as a text answer. Compound values are combinations of
simple values. Examples include dates, time, or list of values (such as
a list of answers to a multiple choice question) \footnote{For a deeper
dive into technical writing, this free
\href{https://developers.google.com/tech-writing/overview}{Google
course} is highly recommended}
\hypertarget{types-of-data}{%
\subsection{Types of data}\label{types-of-data}}
Variables (items of data) can spilt into two groups, quantitative
(numeric) or categoric (no inherent order). Quantitative variables can
either be discrete, meaning they have a finite number of values (eg
household size) or continuous, meaning an infinite number of values are
possible (eg. a persons height or distance to a health facility)
\hypertarget{scales}{%
\subsection{Scales}\label{scales}}
Data can be classified under the following 4 scales of measurement:
\begin{itemize}
\item
\textbf{Nominal scales}: Nominal values/variables, sometimes called
\emph{categorical values} don't have a numeric value so cannot be
added, subtracted or multiplied. They do not have an order. For
example, the name of a district that an IDP is from.
\item
\textbf{Ordinal scale}: Contains values that can be put in order. For
example, the levels of satisfaction with a training.
\item
\textbf{Interval scale}: Contains ordinal numbers with meaningful
divisions. For example, temperature or time.
\item
\textbf{Ratio scale}: Ratio scales have all of the characteristics of
interval scales as well as a true zero. For example, a persons height.
\end{itemize}
\begin{figure*}
{\centering \includegraphics[width=0.7\textwidth,height=\textheight]{part1/./images/typesofdata.png}
}
\caption{Types of data and how they relate}
\end{figure*}
\hypertarget{goalstrategic-objective}{%
\subsection{Goal/Strategic Objective}\label{goalstrategic-objective}}
A specific end result desired or expected to occur as a consequence, at
least in part, of an intervention or activity. It is the higher order
objective that will assure national capacity building to which a
development intervention is intended to contribute.
\hypertarget{impact}{%
\subsection{Impact}\label{impact}}
Impact implies changes in people's lives. This might include changes in
knowledge, skill, behaviour, health or living conditions for children,
adults, families or communities. Such changes are positive or negative
longterm effects on identifiable population groups produced by a
development intervention, directly or indirectly, intended or
unintended.
\hypertarget{outcome}{%
\subsection{Outcome}\label{outcome}}
Outcomes represent changes in the institutional and behavioral
capacities for development conditions that occur between the completion
of outputs and the achievement of goals.
\hypertarget{outputs}{%
\subsection{Outputs}\label{outputs}}
Outputs are changes in skills or abilities and capacities of individuals
or institutions, or the availability of new products and services that
result from the completion of activities within a development
intervention within the control of the organization. They are achieved
with the resources provided and within the time period specified.
\hypertarget{activities}{%
\subsection{Activities}\label{activities}}
Actions taken or work performed through which inputs, such as funds,
technical assistance and other types of resources, are mobilized to
produce specific outputs.
\hypertarget{inputs}{%
\subsection{Inputs}\label{inputs}}
The financial, human, material, technological and information resources
used for development interventions.
\hypertarget{indicators}{%
\subsection{Indicators}\label{indicators}}
Usually separated into two categories: - Need indicators: a quantitative
or qualitative unit of measurement of need which when monitored
periodically can be used as a measure of impact. - Response/performance
indicators: used to measure outputs or outcomes.
\hypertarget{target}{%
\subsection{Target}\label{target}}
Specifies a particular value that an indicator should reach by to meet
agreed standard of service or programme goals. Setting target values for
most indicators requires a level of contextualization and can be
influences by external factors such as resources available.
\hypertarget{standard}{%
\subsection{Standard}\label{standard}}
\ldots{}
\hypertarget{benchmark}{%
\subsection{Benchmark}\label{benchmark}}
Reference point or standard, including norms, against which progress or
achievements can be assessed. A benchmark refers to the performance that
has been achieved in the recent past by other comparable organizations,
or what can be reasonably expected to have been achieved in similar
circumstances.
\hypertarget{primary-data-vs-secondary-data}{%
\subsection{Primary data vs secondary
data}\label{primary-data-vs-secondary-data}}
\ldots{}
\begin{center}\rule{0.5\linewidth}{0.5pt}\end{center}
\hypertarget{information-management-tips}{%
\section{Information Management
tips}\label{information-management-tips}}
The following tips are a collection of commonly encountered issues in
humanitarian IM and how to avoid them. The tips are a shortened from
their usual form to avoid overlap with other chapters where many of the
issues are expanded in more detail.\footnote{Adapted from The Chicago
Guide to Writing about Numbers, by Jane E. Miller}
\hypertarget{use-excel-for-numerical-data}{%
\subsection{Use Excel for numerical
data}\label{use-excel-for-numerical-data}}
\begin{figure*}
{\centering \includegraphics[width=0.7\textwidth,height=\textheight]{part1/./images/paintingwithexcel.jpg}
}
\caption{Tatsuo Horiuchi uses Excel to paint beautiful Japanese
lanscapes. Don't follow Tatsuo}
\end{figure*}
Don't use software such as Word for gathering and analysing numerical
data. Likewise, be careful not to use Excel to over visualise how your
data is represented. Simple, well structured data is best for analysis
and sharing with others.
\hypertarget{save-often-use-versioning-and-name-files-sensibly}{%
\subsection{Save often, use versioning, and name files
sensibly}\label{save-often-use-versioning-and-name-files-sensibly}}
\begin{figure*}
{\centering \includegraphics[width=0.7\textwidth,height=\textheight]{part1/./images/saveoften.png}
}
\caption{Click save!}
\end{figure*}
You don't want to work all day on an analysis to suddenly find that the
fil crashed before you had a chance to save it. In Excel, there is an
option to have your files autosave at a specified interval.
If saving to OneDrive or Sharepoint, you will see a small downward arrow
which allows youto view the file's \emph{Version History}. to view or
roll back to previous version of a document. Alternatively you can save
multiple versions of the file following certain milestones or use a
software versioning software such as Git.
Try have you and your team use a consistent, welll understood naming
convention for files. The format I use is as follows:
\emph{{[}year{]}{[}month(2digists){]}{[}date{]}-{[}initials{]}-{[}version{]}}.
For example 20182307-IMtips-BMD-v1.xlsx \emph{File} \textgreater{}
\emph{Options} to get Excel to save more regularly
\hypertarget{backup-your-data}{%
\subsection{Backup your data}\label{backup-your-data}}
What if your computer crashes or is stolen?\\
What if you need to collaborate on a file?\\
Make use of Onedrive/Sharepoint. Onedrive is ideal for working documents
(you can right-click on a file and share it collaboratively).
\hypertarget{check-for-existing-data-communicate}{%
\subsection{Check for existing data,
communicate}\label{check-for-existing-data-communicate}}
Networking and communication are important but sometimes overlooked
skills for IM. It's important to know what other agencies and clusters
are planning in terms of data collection and what challenges they are
facing that may be better addressed with a collective approach. Checking
for pre-existing data or planning assessments can help avoid duplication
of efforts and unnecessarily \emph{reinventing the wheel}.
\hypertarget{use-mobile-data-collection}{%
\subsection{Use mobile data
collection}\label{use-mobile-data-collection}}
The use of mobile data collection tools such as
\href{https://kobo.humanitarianresponse.info/}{Kobo Toolbox} support
faster and more robust data collection. By enforcing checks on data
inputs it reduces input errors, while also removing time consuming and
error-prone tasks of manual data entry of paper forms.
While ideal for surveys/assessments, be careful not to over-fit such
tools into scenarios that require \emph{case management} type
functionality.
\hypertarget{consistent-variable-naming}{%
\subsection{Consistent variable
naming}\label{consistent-variable-naming}}
\emph{Are we talking about the same thing?} The terms/concepts describe
in your surveys and data - does everyone have a clear and shared
understanding of what they mean? Are you reusing well known and tested
terms or are you inventing new ones. \footnote{Data journalism put
increasing emphasis on the need for a good annotation layer, as can be
seen by this article from the
\href{https://www.ft.com/content/4743ce96-e4bf-11e7-97e2-916d4fbac0da}{Financial
Times}}
\hypertarget{understand-meta-data}{%
\subsection{Understand meta-data}\label{understand-meta-data}}
\includegraphics{part1/./images/metadata.png}\\
\ldots and why it is important. Meta-data is data that described data.
For example, your survey data files should contain information
describing where the data was collected, on which dates, the methodology
used and relevant focal point. Including metadata in your datasets is an
important habit for IMs, as it encourages reuse of the data and
signifies a robust approach to analysis.
\hypertarget{spreadsheets---only-one-piece-of-information-per-cell}{%
\subsection{Spreadsheets - only one piece of information per
cell}\label{spreadsheets---only-one-piece-of-information-per-cell}}
\includegraphics{part1/./images/onepercell.png}\\
Storing multiple points of data in a single cell makes many types of
analysis very difficult. Where possible try to expand these values onto
their own rows (sometimes called ``exploding'' or ``melting''.)
\hypertarget{record-data-at-a-granular-level-and-aggregate-up}{%
\subsection{Record data at a granular level and aggregate
up}\label{record-data-at-a-granular-level-and-aggregate-up}}
When you have data at a low unit of measurement, for example, the number
of people using a specific Complaints and Feedback (CFM) desk, it is
straightforward to aggregate that data to a higher unit, for example,
the number of people using CFMs in a district. However, be careful of
receiving data already aggregated as it is usually not possible to
disaggregate it into its component parts. If your analysis depends on
having data at a certain unit-level, make sure to have it collected or
sent to you in at least the same or lower level of disaggregation.
Aggregation may hide or disregard useful data useful for your analysis
or quality control.
\hypertarget{learn-pivot-tables}{%
\subsection{Learn pivot tables}\label{learn-pivot-tables}}
\includegraphics{part1/./images/pivot.png} Pivot tables are a powerful
tool for aggregating data in Excel. (also called ``groupby'' in other
software)
\hypertarget{learn-vlookup-and-index-match}{%
\subsection{Learn VLOOKUP and Index
Match}\label{learn-vlookup-and-index-match}}
\begin{figure}
{\centering \includegraphics{part1/./images/vlookup.png}
}
\caption{vlookup}
\end{figure}
\hypertarget{dont-merge-cells-in-a-spreadsheet}{%
\subsection{Don't merge cells in a
spreadsheet}\label{dont-merge-cells-in-a-spreadsheet}}
\includegraphics{part1/./images/merge.png}\\
Don't merge cells in a spreadsheet. Tables should contain an equal
number of rows and columns. Merging cells breaks pivoting and filtering
and goes against rule number 1 (when done for reasons of aesthetics).
\hypertarget{keep-data-types-and-names-consistent-in-columns}{%
\subsection{Keep data types and names consistent in
columns}\label{keep-data-types-and-names-consistent-in-columns}}
\includegraphics{part1/./images/names.png}\\
Make sure that the spelling (including case) and format of values remain
consistent for all values in a column.
\hypertarget{keep-all-similar-data-in-one-sheet}{%
\subsection{Keep all similar data in one
sheet}\label{keep-all-similar-data-in-one-sheet}}
\includegraphics{part1/./images/1sheet.png}\\
Resist the temptation to split large datasets across tabs, using a tab
for each region etc. This makes analysis and consolidated storage and
management of the data harder. Instead add a column to capture the
category names.
\hypertarget{check-data-relationships}{%
\subsection{Check data relationships}\label{check-data-relationships}}
\begin{figure}
{\centering \includegraphics{part1/./images/checkrelationships.png}
}
\caption{check relationaships}
\end{figure}
\hypertarget{get-coordinates-for-point-data}{%
\subsection{Get coordinates for point
data}\label{get-coordinates-for-point-data}}
\includegraphics{part1/./images/pointdata.png}\\
If you have data that represents a point such as a hospital or a camp,
instead of just naming it or giving its address you could also collect
coordinates for it. There are many possible ways of doing this:
\begin{itemize}
\item
Using any app on your phone that records GPS
\item
In a mobile data collection tool such as Kobo Toolbox
\item
Using a geocoder, which outputs coordinates for given addresses or
locations. \href{http://nominatim.openstreetmap.org/}{Nominatim} is a
free service using Open Street Map data.
\item
The low tech approach of drawing on paper maps, digitizing later.
\href{is\%20a\%20good\%20tool\%20for\%20this}{Fieldpapers}
\end{itemize}
\hypertarget{what-is-information-management}{%
\chapter{What is Information
Management?}\label{what-is-information-management}}
\begin{tcolorbox}[enhanced jigsaw, left=2mm, rightrule=.15mm, arc=.35mm, coltitle=black, opacityback=0, colframe=quarto-callout-warning-color-frame, breakable, toprule=.15mm, titlerule=0mm, leftrule=.75mm, opacitybacktitle=0.6, title=\textcolor{quarto-callout-warning-color}{\faExclamationTriangle}\hspace{0.5em}{Warning}, bottomtitle=1mm, toptitle=1mm, bottomrule=.15mm, colbacktitle=quarto-callout-warning-color!10!white, colback=white]
This chapter is in draft stage.
\end{tcolorbox}
..
\hypertarget{profiles}{%
\section{Profiles}\label{profiles}}
..
\hypertarget{skills-and-attitudes}{%
\section{Skills and attitudes}\label{skills-and-attitudes}}
.
\begin{figure}
{\centering \includegraphics{part1/./images/dataskillsframework.png}
}
\caption{A Data Skills Framework by the
\href{https://theodi.org/article/data-skills-framework/}{ODI}}
\end{figure}
\hypertarget{responsibilities}{%
\section{Responsibilities}\label{responsibilities}}
\begin{itemize}
\tightlist
\item
The core cluster functions and how they relate to IM.
\end{itemize}
\hypertarget{im-workflow}{%
\section{IM workflow}\label{im-workflow}}
.
\hypertarget{collection}{%
\subsection{Collection}\label{collection}}
This section discusses: - Secondary data review - Primary data
collection
\hypertarget{processing}{%
\subsection{Processing}\label{processing}}
.
\hypertarget{analysis}{%
\subsection{Analysis}\label{analysis}}
.
\hypertarget{dissemination}{%
\subsection{Dissemination}\label{dissemination}}
.
\hypertarget{design-acquire}{%
\chapter{Design \& Acquire}\label{design-acquire}}
This chapter is in draft stage.
Any information that doesn't not inform or change an decision is
worthless.
-- Sam L. Savage
\begin{itemize}
\tightlist
\item
many illustrations start with ``data collection'' but this should not
be the first step
\item
secondary data review vs primary data
\item
formulating the questions that need answering.
\item
create a data analysis plan
\item
common data sources
\item
CODs
\item
methods - KI. FGD
\item
sampling
\item
minimal viable information
\end{itemize}
\hypertarget{before-you-start-collecting-data.}{%
\section{Before you start collecting
data.}\label{before-you-start-collecting-data.}}
.stop and think. IM guidances sometimes present IM task in a linear
fashion that starts with \emph{data collection}. This is problematic.
Good analysis requires us to first start with an articulation of what
are the overarching questions that need answering and what decisions
will be informed by this evidence.
The next step is to take stock of existing data and to develop an
analysis plan linking your information needs to you existing data and/or
any potential future data collection exercises.
Collection of data has costs - it costs time, it has HR costs, it has
financial costs. It is important to understand these costs and viewing
them in relation to the value it provides to your decision making.
Similarly, when developing surveys, adding questions are no without
cost, as for each question that is added, there is a cognitive cost(more
questions = higher likelihood of mistakes), a time cost (longer surveys
take longer to do) and a quality cost (cleaning and data checks are more
difficult on larger datasets). Understand that 80\% of the value of your
survey will come from 20\% of your survey. As you add additional
questions to your survey, the value they add to your decision-making
diminishes. \footnote{From the
\href{files/Reference\%20Module\%20for\%20Cluster\%20Coordination\%20at\%20Country\%20Level.pdf}{IASC
Reference Module for Cluster Coordination at Country Level, revised
July 2015}}
\begin{figure*}
{\centering \includegraphics[width=0.7\textwidth,height=\textheight]{part1/./images/minimalviableinformation.png}
}
\caption{As your number of survey questions increase, the return on
effort gradually diminishes.}
\end{figure*}
\hypertarget{methodologies}{%
\section{Methodologies}\label{methodologies}}
\begin{itemize}
\tightlist
\item
KI
\item
FGD
\item
Observations
\item
Non traditional sources
\item
Representativeness
\end{itemize}
\hypertarget{sampling}{%
\subsection{Sampling}\label{sampling}}
.
\hypertarget{analysis-1}{%
\chapter{Analysis}\label{analysis-1}}
This chapter is in draft stage.
.
\hypertarget{the-analysis-spectrum}{%
\section{The Analysis Spectrum}\label{the-analysis-spectrum}}
.
\includegraphics[width=0.7\textwidth,height=\textheight]{part1/./images/analysisspectrum.png}
\hypertarget{understanding-bias}{%