-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliberiaCoverageFinalReport.tex
1002 lines (711 loc) · 82.5 KB
/
liberiaCoverageFinalReport.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
\PassOptionsToPackage{unicode=true}{hyperref} % options for packages loaded elsewhere
\PassOptionsToPackage{hyphens}{url}
\PassOptionsToPackage{dvipsnames,svgnames*,x11names*}{xcolor}
%
\documentclass[12pt,a4paper]{article}
\usepackage{lmodern}
\usepackage{amssymb,amsmath}
\usepackage{ifxetex,ifluatex}
\usepackage{fixltx2e} % provides \textsubscript
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % provides euro and other symbols
\else % if luatex or xelatex
\usepackage{unicode-math}
\defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase}
\fi
% use upquote if available, for straight quotes in verbatim environments
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
% use microtype if available
\IfFileExists{microtype.sty}{%
\usepackage[]{microtype}
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
}{}
\IfFileExists{parskip.sty}{%
\usepackage{parskip}
}{% else
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}
}
\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{
pdftitle={Report on Coverage Assessment of Direct Nutrition Interventions in Liberia},
colorlinks=true,
linkcolor=blue,
filecolor=Maroon,
citecolor=blue,
urlcolor=blue,
breaklinks=true}
\urlstyle{same} % don't use monospace font for urls
\usepackage[margin=2cm]{geometry}
\usepackage{longtable,booktabs}
% Fix footnotes in tables (requires footnote package)
\IfFileExists{footnote.sty}{\usepackage{footnote}\makesavenoteenv{longtable}}{}
\usepackage{graphicx,grffile}
\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}
\setlength{\emergencystretch}{3em} % prevent overfull lines
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\setcounter{secnumdepth}{5}
% Redefines (sub)paragraphs to behave more like sections
\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
% set default figure placement to htbp
\makeatletter
\def\fps@figure{htbp}
\makeatother
\usepackage{booktabs}
\usepackage{array}
\usepackage{multirow}
\usepackage{wrapfig}
\usepackage{colortbl}
\usepackage{pdflscape}
\usepackage{tabu}
\usepackage{threeparttable}
\usepackage{threeparttablex}
\usepackage[normalem]{ulem}
\usepackage{makecell}
\usepackage{float}
\usepackage{setspace}
\usepackage{longtable}
\usepackage{ebgaramond}
\onehalfspacing
\graphicspath{ {figures/} }
\pagenumbering{gobble}
\usepackage{titling}
\pretitle{
\begin{center}
\large
\includegraphics{figures/frontCoverLogos.png}\\[\bigskipamount]
}
\posttitle{\end{center}}
\pagebreak
\usepackage{booktabs}
\usepackage{longtable}
\usepackage{array}
\usepackage{multirow}
\usepackage{wrapfig}
\usepackage{float}
\usepackage{colortbl}
\usepackage{pdflscape}
\usepackage{tabu}
\usepackage{threeparttable}
\usepackage{threeparttablex}
\usepackage[normalem]{ulem}
\usepackage{makecell}
\usepackage{xcolor}
\usepackage[]{natbib}
\bibliographystyle{plainnat}
\title{Report on Coverage Assessment of Direct Nutrition Interventions in Liberia}
\author{}
\date{\vspace{-2.5em}24 January 2020}
\begin{document}
\maketitle
\pagebreak
\pagenumbering{arabic}
{
\hypersetup{linkcolor=}
\setcounter{tocdepth}{3}
\tableofcontents
}
\listoftables
\listoffigures
\newpage
\hypertarget{acknowledgements}{%
\section*{Acknowledgements}\label{acknowledgements}}
\addcontentsline{toc}{section}{Acknowledgements}
We are indebted to all the data collection teams who made this assessment possible, including data collectors, supervisors, and management teams from Ministry of Health, Liberia Institute of Statistics and Geo-Information Services and UNICEF Liberia. We are thankful for all the study participants - the mothers and children - who participated in the survey for their time and patience in providing information needed for this study. Without them, this study would not have been possible.
\newpage
\hypertarget{acronyms-and-abbreviations}{%
\section*{Acronyms and abbreviations}\label{acronyms-and-abbreviations}}
\addcontentsline{toc}{section}{Acronyms and abbreviations}
\begin{longtable}{ll}
\toprule
\textbf{Acronyms/Abbreviations} & \textbf{Definition}\\
\midrule
ANC & Antenatal care\\
CMAM & Community-based management of acute malnutrition\\
DHS & Demographic and health surveys\\
GAM & Global acute malnutrition\\
IDW & Inverse distance weighting\\
\addlinespace
IFA & Iron-folic acid\\
IU & International units\\
IYCF & Infant and young child feeding\\
MAM & Moderate acute malnutrition\\
MICS & Multiple indicator cluster survey\\
\addlinespace
MNP & Micronutrient powder\\
MUAC & Middle upper arm circumference\\
ODK & Open data kit\\
PoN & Power of Nutrition\\
PSU & Primary sampling unit\\
\addlinespace
SAM & Severe acute malnutrition\\
SMART & Standardized Monitoring and Assessment of Relief and Transitions\\
UNICEF & United Nations Children's Fund\\
\bottomrule
\end{longtable}
\newpage
\hypertarget{executive-summary}{%
\section*{Executive Summary}\label{executive-summary}}
\addcontentsline{toc}{section}{Executive Summary}
A three-year nutrition programme has been implemented in Liberia by UNICEF aimed at tackling child undernutrition in the country. Funded by \href{http://www.powerofnutrition.org}{Power of Nutrition} and \href{https://www.unicef.org.uk}{UNICEF UK}, the programme has been implemented across 15 counties in Liberia starting from January 2017 up to December 2019. The overall aim of the programme is to improve the coverage of direct nutrition interventions or what is commonly termed nutrition-specific interventions, i.e.~interventions or programmes that address the immediate determinants of foetal and child nutrition and development --- adequate food and nutrient intake, feeding, caregiving and parenting practices, and low burden of infectious diseases \citep{Bhutta:2013ks, Ruel:2013kr}. The current programme supports the following specific key interventions: 1) \emph{treatment of severe acute malnutrition (SAM) for children 6-59 months}; 2) \emph{vitamin A supplementation for children 6-59 months}; 3) \emph{promotion of appropriate infant and young child feeding (IYCF) practices among pregnant or lactating women}; 4) \emph{multiple micronutrient powder (MNP) supplementation for children 6-23 months}; and, 5) \emph{iron and folic acid (IFA) supplementation for pregnant women}.
The coverage assessment was implemented as a two-stage spatial sample survey with \(m = 30\) primary sampling units per programme area. A complete enumeration of children 6-59 months old from \(m = 30\) primary sampling units (PSUs) per programme area was performed in order to find all children who are severe acute malnourished (SAM) using standard case definitions for the community-based management of acute malnutrition (CMAM) programme coverage assessment. Within this cohort of children 6-59 months, a systematic sample of children and their mothers were selected for the coverage assessment of the other four nutrition-specific interventions. A total of at least \(n = 192\) children 6-23 months old for the micronutrient powder (MNP) supplementation coverage, children 6-59 months for vitamin A supplementation coverage and mothers of children 6-59 months for the infant and young child feeding (IYCF) counselling coverage and iron and folic acid (IFA) coverage were systematically selected. A set of hierarchical coverage indicators was used to assess coverage of each of the five nutrition-specific programmes. Data was collected using a specifically-designed Open Data Kit (ODK) data collection system. Data was analysed using R language for statistical computing. A blocked-weighted bootstrapping approach was used to estimate the various coverage indicators and to report the corresponding 95\% confidence interval. Indicators were also mapped using spatial interpolation using inverse distance weighting.
The results of the coverage assessment of direct nutrition interventions in Liberia specifically in Greater Monrovia and Grand Bassa indicate various levels of disparity in coverage both between the programme areas and within the programme areas assessed. Long-standing programmes such as IFA supplementation, IYCF counselling and vitamin A supplementation have performed fairly well in terms of coverage. The majority of women and children targeted by these programmes are knowledgeable of the programme and are beneficiaries of the programme. Years of implementation complemented by the level of support and investment by the government and its partners seem to have paid dividends in allowing for these programmes to reach almost all of their targeted beneficiaries. However, there is still room for improvement and the current coverage levels can still be increased to at least the 90\% level recommended for maximum health and nutrition impact.
Programmes such as MNP and CMAM, on the other hand, show how new and recently scaled-up programmes are still in the process of achieving the highest levels of coverage possible. MNP supplementation which is the newest programme of those assessed is understandably still struggling with coverage even at endline. Knowledge of the programme and knowledge of how the programme works and its importance for children's health and nutrition is the key falter point which is typical of a programme at this stage of its evolution. However, available evidence on similar programmes providing complementary feeding supplements show a much higher awareness and contact coverage at a minimum 1 year after start of programme implementation and typically falters at the effectiveness coverage level. This difference in coverage to other similar programmes elsewhere can be linked to the way the programme in Liberia is being implemented. The programme is mainly anchored to the health centre and therefore knowledge and access to it is primarily influenced by mothers' behaviours and attitudes towards seeking care and treatment at the health facility. Given that MNP is aimed at children who are otherwise healthy (not acute malnourished), the current MNP coverage estimates indicate that health-seeking behaviour leading to a visit to a health facility is mainly influenced by whether their children are sick rather than as a way to seek information or participate in promotive and preventive services such as MNP supplementation. Other factors include physical access to health centres. A more community-based approach to MNP supplementation that is integrated with other community-based programmes such as vaccinations and CMAM should be considered as a potential delivery mechanism. Screening of children using MUAC can be integrated into vaccination campaigns and children under 2 years old identified as not being acutely malnourished are informed about MNP supplementation programme and ideally provided with the MNP supplements at point of contact. These efforts should be coupled with clear behavioural change communication messages on the importance of complementary feeding and how the MNP supplement contributes to the increased quality of complementary feeding with the aim of creating demand for MNP amongst the programme's target beneficiary. Finally, information on access to the programme providing MNP including eligibility criteria and locations where they can receive the MNP should be explained clearly to the potential beneficiaries.
Finally, for CMAM the coverage estimates at baseline and endline indicate 1) disparity between Greater Monrovia and Grand Bassa in terms of the level and intensity of the community aspects of the programme; 2) significant drop in coverage of CMAM in Greater Monrovia given that at baseline its coverage was exemplary for an urban CMAM programme; and, 3) no significant change in coverage of CMAM in Grand Bassa with coverage still remaining unacceptably low. At baseline, screening and case-finding in Greater Monrovia is better than in Grand Bassa and this can partly explain the difference in treatment coverage between the two areas at baseline. At endline, no improvement in screening has happened and the levels of coverage for CMAM has significantly plummeted. Given that screening has remained extremely low at endline compared to baseline in both survey areas, other factors should be looked into for the cause of this significant decline in coverage in Greater Monrovia and the stagnant coverage in Grand Bassa. Review of previous CMAM coverage assessment conducted in Greater Monrovia in 2011 reveal that despite the reported 48.6\% period coverage, a relatively high figure for most CMAM programmes particularly for a programme that is being implemented in an urban area, several barriers to coverage were identified the most common of which was lack of awareness of the programme, its services and intended beneficiaries. This was the same key factor elicited in the baseline (where treatment coverage was at 55\%) and endline (where treatment coverage dropped to 27\%) of the Liberia coverage assessment. With all these factors of screening and awareness being constant since the early stages of the CMAM programme in Liberia, a more basic reason for the significant decrease in coverage in Greater Monrovia is likely. Based on feedback by stakeholders, the CMAM programme in Greater Monrovia has been mainly implemented by government in the past year without the usual support from other stakeholders. The possible effect of this on coverage is more on the day-to-day implementation of the programme particularly with case admission and management. It is recommended that a more nuanced investigation into the CMAM implementation be done in both Greater Monrovia and Grand Bassa to identify issues and for appropriate remedial action be undertaken.
\newpage
\hypertarget{intro}{%
\section{Introduction}\label{intro}}
A three-year nutrition programme has been implemented in Liberia by UNICEF aimed at tackling child undernutrition in the country. Funded by \href{http://www.powerofnutrition.org}{Power of Nutrition} and \href{https://www.unicef.org.uk}{UNICEF UK}, the programme has been implemented across 15 counties in Liberia starting from January 2017 up to December 2019. The overall aim of the programme is to improve the coverage of direct nutrition interventions or what is commonly termed nutrition-specific interventions, i.e.~interventions or programmes that address the immediate determinants of foetal and child nutrition and development --- adequate food and nutrient intake, feeding, caregiving and parenting practices, and low burden of infectious diseases \citep{Bhutta:2013ks, Ruel:2013kr}. The current programme supports the following specific key interventions: 1) \emph{treatment of severe acute malnutrition (SAM) within the community-based management of acute malnutrition (CMAM) programme for children 6-59 months}; 2) \emph{vitamin A supplementation for children 6-59 months}; 3) \emph{promotion of appropriate infant and young child feeding (IYCF) practices among pregnant or lactating women}; 4) \emph{multiple micronutrient powder (MNP) supplementation for children 6-23 months}; and, 5) \emph{iron and folic acid (IFA) supplementation for pregnant women}.
To assess the programme's progress towards its overall aim, two coverage assessments have been implemented - the first at the halfway point of the programme and the second at the end. Only two programme areas were selected for the assessments: \emph{Urban Montserrado (Greater Monrovia)} district and \emph{Grand Bassa} county. This report presents the results of these assessments.
\hypertarget{methods}{%
\section{Methods}\label{methods}}
\hypertarget{sample-design}{%
\subsection{Survey and sampling design}\label{sample-design}}
The coverage assessment was designed to be spatially representative of each of the two programme areas using a two-stage spatial sampling survey approach. An even spatial distribution of primary sampling units (PSUs) (i.e., villages/enumeration areas/city blocks) was selected from across each enumeration area. This approach was used in order to assess coverage and its spatial distribution in order to detect and map heterogeneity of coverage \citep{Elliott:2004cg, Diggle:2014tk}. PSUs were selected based on their proximity to centroids of a hexagonal grid laid over the two selected programme areas resulting in a triangular irregular network \citep{Isaaks:1989uk, Elliot:2000vs}. A complete enumeration of children 6-59 months old from \(m = 30\) PSUs per programme area was performed in order to find all children who are SAM based on specified case definitions\footnote{Initial design used both weight-for-height z-score (WHZ) and MUAC and oedema criteria for SAM. However, for the first round of coverage assessments in 2018, the survey technical team decided to use MUAC and oedema only for SAM case-finding during the survey given the length of time it took to perform complete enumeration using WHZ. For the second round of coverage assessments in 2019, WHZ, MUAC and oedema case definitions for SAM were used.} for the CMAM programme coverage assessment. Within this cohort of children 6-59 months, a systematic sample of children and their mothers were selected for the coverage assessment of the other four nutrition-specific interventions. A total of at least \(n = 192\) children 6-23 months old for the MNP supplementation coverage, children 6-59 months for vitamin A supplementation coverage and mothers of children 6-59 months for the IYCF counselling coverage and IFA coverage were systematically selected. A detailed description of the sampling design can be found \href{https://validmeasures.org/liberiaS3M/}{here}.
\hypertarget{indicators}{%
\subsection{Indicators}\label{indicators}}
The coverage assessment evaluated the following indicators.
\hypertarget{cmam-coverage}{%
\subsubsection{CMAM coverage}\label{cmam-coverage}}
CMAM coverage usually pertains to coverage of SAM treatment. Historically, there have been two coverage estimators in common use: \textbf{point} and \textbf{period} coverage.
Point coverage is the number of current SAM cases in a treatment programme divided by the total number of current SAM cases.
\textbf{Point coverage} uses data for current cases only. It is calculated using the following formula:
\$nbsp;
\[\begin{aligned}
\text{Point coverage} & ~ = ~ \frac{C_{in}}{C_{in} ~ + ~ C_{out}} \\
\\
where: & \\
\\
C_{in} & ~ = ~ \text{current SAM cases in the programme} \\
C_{out} & ~ = ~ \text{current SAM cases out of the programme}
\end{aligned}\]
~
\textbf{Point coverage} provides a snapshot of programme performance, putting a strong emphasis on the effectiveness and timeliness of case-finding and recruitment \citep{Myatt:2012tt}.
\textbf{Period coverage}, on the other hand, uses data for both current and recovering cases. It is calculated using the following formula:
~
\[\begin{aligned}
\text{Period coverage} & ~ = ~ \frac{C_{in} ~ + ~ R_{in}}{C_{in} ~ + ~ C_{out} ~ + ~ R_{in}} \\
\\
where: & \\
\\
R_{in} & ~ = ~ \text{recovering SAM cases in the programme}
\end{aligned}\]
~
\textbf{Period coverage} is the number of current and recovering cases in a treatment programme divided by all current SAM cases and recovering cases. It approximates treatment coverage much better (albeit with limitations) as it accounts for children who are no longer cases but are in the programme.
However, given the known limitations of point and period coverage \citep{Myatt:2012tt}, the single coverage estimator proposed and recommended by \citet{Balegamire:2015ud} was used as the CMAM programme coverage estimators. Also, given the single coverage estimator, we adopted a shift in terminology that is more descriptive and specific with regard to what the estimator is actually measuring, allowing both measures to be reported together without confusion. \textbf{Point coverage} was termed \emph{case-finding effectiveness} to more precisely reflect it as a measure of the programme's ability to find and recruit current cases. This indicator assesses how good the treatment programme is in finding cases of SAM and then getting them to treatment. \textbf{Period coverage} that has been improved into the single coverage metric was named \emph{treatment coverage} as this is the estimator that approximates this coverage indicator the closest.
\hypertarget{vitamin-a-supplementation}{%
\subsubsection{Vitamin A supplementation}\label{vitamin-a-supplementation}}
The standard estimator for vitamin A supplementation is the proportion of children aged 6-59 months who received two age-appropriate doses of vitamin A in the past 12 months.
In standard surveys such as the Demographic and Health Surveys (DHS) and the Multiple Indicator Cluster Surveys (MICS), this indicator is adjusted to a recall of 6 months for a single age-appropriate dose of vitamin A. This was the indicator used for this assessment.
Age appropriate vitamin A supplementation was assessed mainly through mother's recall of which gel capsule the child received recently. The blue vitamin A gel capsule containing 100,000 IU of vitamin A is given to children 6-11 months. The red vitamin A gel capsule containing 200,000 IU of vitamin A is given to children 12 - 59 months. A photo of the blue and the red gel capsule was used to aid the mother/caregiver in answering this question.
\hypertarget{iron-folic-acid-ifa-supplementation-for-pregnant-women}{%
\subsubsection{Iron-folic acid (IFA) supplementation for pregnant women}\label{iron-folic-acid-ifa-supplementation-for-pregnant-women}}
Population-based surveys typically report the percentage of women with a live birth in the two to five years before the survey who received and took IFA supplementation during their most recent pregnancy. Because antenatal care (ANC) is the main platform for IFA supplement distribution for pregnant women, survey questions on antenatal care attendance was used to provide information on the use of this platform to deliver IFA supplementation. \citet{Sununtnasuk:2015kb} proposed a falter point framework\footnote{Similar to a bottleneck framework and consistent with \citet{Tanahashi:1978we} hierarchical model of coverage.} that utilises four indicators that proxy the five critical points at which the ANC approach to IFA distribution might falter in IFA supplementation coverage to pregnant women. These indicators are:
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
At least one ANC visit during most recent pregnancy
\item
Knowledge of IFA tablet/s
\item
Receipt or purchase of IFA tablet/s
\item
IFA consumption
\item
Adherence to at least 90 days of supplementation
\end{enumerate}
\hypertarget{micronutrient-powder-supplementation}{%
\subsubsection{Micronutrient powder supplementation}\label{micronutrient-powder-supplementation}}
The indicator for coverage of micronutrient powder supplementation is the proportion of children aged 6-23 months who consume micronutrient powder supplements. An indicator set on MNP supplementation was devised similar to the IFA supplementation falter point or bottleneck framework that first assessed knowledge and awareness of MNP supplementation, then the receipt/purchase of MNP and finally consumption of MNP.
\hypertarget{iycf-counselling}{%
\subsubsection{IYCF counselling}\label{iycf-counselling}}
There are no standard indicators for IYCF counselling hence indicators were devised based on how this intervention was being delivered to pregnant or lactating women. In terms of mechanism, these sessions are delivered via the health clinic/health post and that the target beneficiaries are pregnant or lactating women. Given this, similar approach to the IFA supplementation coverage of falter points/bottle necks was used with the following indicators:
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
At least one ANC visit during most recent pregnancy
\item
Awareness of IYCF counselling
\item
Attendance at IYCF counselling
\end{enumerate}
\hypertarget{survey-instrument}{%
\subsection{Survey instrument}\label{survey-instrument}}
Two sets of survey instruments were produced for the survey. The first is for the CMAM coverage component and the second one is for the survey for children 6-59 months and their mothers. The sample/template questionnaires used can be found in Annex A.
\hypertarget{using-open-data-kit}{%
\subsubsection{Using Open Data Kit}\label{using-open-data-kit}}
Based on the template forms described above, a digital data collection system using Open Data Kit (ODK) was developed. These forms are available as a \href{https://github.com/validmeasures/liberiaS3Mforms}{Github repository}. The system is composed of two forms.
\hypertarget{village-form}{%
\paragraph{Village form}\label{village-form}}
This form (\texttt{liberiaCoverageVillageForm.xlsx} and \texttt{liberiaCoverageVillageForm.xml}) collected information on the villages or primary sampling units (PSU) selected for the Liberia Coverage Survey. This information includes:
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
County name (and identifier)
\item
Village name (and identifier)
\item
Village population size
\item
Village geocoordinates
\end{enumerate}
\hypertarget{coverage-form}{%
\paragraph{Coverage form}\label{coverage-form}}
This form (\texttt{liberiaCoverage.xlsx} and \texttt{liberiaCoverage.xml}) collected information on the various coverage indicators assessed in the Liberia Coverage Survey:
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
CMAM coverage
\item
Iron-folic acid supplementation coverage
\item
IYCF counselling coverage
\item
Micronutrient powder supplementation coverage
\item
Vitamin A supplementation coverage
\end{enumerate}
The coverage form was developed in such a way that it implements the survey as per survey design such that the modules for IFA coverage, IYCF counselling coverage, MNP supplementation coverage and vitamin A supplementation coverage are only shown based on the sampling interval for a particular primary sampling unit (PSU) and based on the different eligibility requirements for each coverage survey module.
\hypertarget{data-analyses}{%
\subsection{Data analyses}\label{data-analyses}}
Data analysis was performed using R language for statistical computing \citep{R:2019rr}. An R package called \texttt{liberiaData} containing specific functions for data processing and analysis of the Liberia coverage survey was produced to ensure open availability of data and reproducibility of analysis\footnote{See package site at \url{https://validmeasures.org/liberiaData/} for more information and for instructions on installation and usage}. An auxiliary R package called \texttt{liberia} containing additional secondary data including maps used for the sampling and survey process was also produced\footnote{See package site at \url{https://validmeasures.org/liberia/} for more information and for instructions on installation and usage}.
\hypertarget{analytical-approach-for-estimating-coverage-indicators}{%
\subsubsection{Analytical approach for estimating coverage indicators}\label{analytical-approach-for-estimating-coverage-indicators}}
Data analysis procedures accounted for the sample design.
\begin{itemize}
\item
This survey is a two-stage sample. Subjects are sampled from a small number of PSUs.
\item
This survey is \textbf{not} prior weighted. This means that per-PSU sampling weights will be needed. These are usually the populations of the PSU.
\end{itemize}
For this survey, the \emph{blocked weighted bootstrap} estimation approach was used:
\begin{itemize}
\item
\textbf{Blocked} : The block corresponds to the PSU or cluster.
\item
\textbf{Weighted} : The sampling procedure for this survey does not use population proportional sampling (PPS) to weight the sample prior to data collection as is done with SMART type surveys. This means that a posterior weighting procedure is required. The ``roulette wheel'' algorithm to weight (i.e.~by population) the selection probability of PSUs in bootstrap replicates will be utilised.
\end{itemize}
A total of \texttt{m} PSUs are sampled \emph{with-replacement} from the survey dataset where \texttt{m} is the number of PSUs in the survey sample. Individual records within each PSU are then sampled \emph{with-replacement}. A total of n' records are sampled \emph{with-replacement} from each of the selected PSUs where \texttt{n} is the number of individual records in a selected PSU. The resulting collection of records replicates the original survey in terms of both sample design and sample size. A large number of replicate surveys are taken (minimum of \(r = 399\) replicate surveys but this can be changed). The required statistic (e.g.~the mean of an indicator value) is applied to each replicate survey. The reported estimate consists of the 50th (point estimate), 2.5th (lower 95\% confidence limit), and the 97.5th (upper 95\% confidence limit) percentiles of the distribution of the statistic observed across all replicate surveys. The blocked weighted bootstrap procedure is outlined in Figure \ref{fig:indicators31}.
The principal advantages of using a bootstrap estimator are:
\begin{itemize}
\item
Bootstrap estimators work well with small sample sizes.
\item
The method is \emph{non-parametric} and uses empirical rather than theoretical distributions. There are no assumptions of things like normality to worry about.
\item
The method allows estimation of the sampling distribution of almost any statistic using only simple computational methods.
\end{itemize}
\newpage
\begin{figure}[H]
{\centering \includegraphics[width=9.76in,height=0.95\textheight]{figures/bbw}
}
\caption{The blocked weighted bootstrap}\label{fig:indicators31}
\end{figure}
\hypertarget{analytical-approach-for-mapping-coverage-indicators}{%
\subsubsection{Analytical approach for mapping coverage indicators}\label{analytical-approach-for-mapping-coverage-indicators}}
The indicator mapping approach for this survey created a surface map of indicator values using spatial interpolation. There are various approaches and methods of spatial interpolation, the main differences are determined by the weights applied to the point dataset to estimate values at each of the unknown points of the surface map. For the Liberia coverage survey, spatial interpolation was performed using the inverse distance weighting (IDW) method. As the name implies, the IDW method uses weights that are inversely proportional to the distance of a point being estimated from the sampling point locations \citep{Isaaks:1989uk, diggle2007mbg, diggle2013statistical}. This can be mathematically demonstrated as follows:
\[\begin{aligned}
\hat{v} & ~ = ~ \frac{\displaystyle \sum\limits_{i ~ = ~ 1} ^ {n} \frac{1}{d_{i}^{p}}v_{i}}{\displaystyle \sum\limits_{i ~ = ~ 1}^{n}\frac{1}{d_{i}^{p}}} \\
\\
where: & \\
\\
d_1 \ldots d_n & ~ = ~ \text{distances from each } n \text{ sampling points to estimation point} \\
p & ~ = ~ \text{power of the distance} \\
v_1 \ldots v_n & ~ = ~ \text{sample values}
\end{aligned}\]
The power of the distance \texttt{p} is an important aspect of the IDW method for point estimation. The influence of \texttt{p} to the weights applied to the point estimation is such that as \texttt{p} approaches 0, the weights become more similar, thereby giving more weight to the nearest sample values. As \texttt{p} approaches \(\infty\), the weights become more different from each other, thereby giving more weight to the closest sample. The power of the distance \texttt{p} has been traditionally set at 2 for convenience and ease of calculations. For the Liberia Coverage Survey, \texttt{p} was initially set at 2 and then cross-validation (see below) was applied to optimise \texttt{p} to a value that minimises the estimation errors at each of the sampling point locations.
Cross-validation is a technique applied to validate predictive models. It assesses how accurately the predictive model performs in practice. IDW is one of the simplest model-based interpolation methods available, but ideally would still require a form of cross-validation to determine the optimal value of the distance power \texttt{p} (described above).
A two-fold cross validation \citep{bivand2008applied} was applied to the Liberia coverage data wherein data points were randomly split into two sets of equal size, with one set assigned as the validation data for testing the model, and the other set as the training data. The validation data was then interpolated using the IDW method with an initial \texttt{p} of 2 and the resulting predictions were compared with the training data. Comparison was made using the sum of the squared residuals between the predicted values and the observed values to report errors. Optimisation was then performed by replicating the two-fold cross validation process 100 times using randomly generated values for \texttt{p}. Out of these replicates, the value of \texttt{p} that provided prediction results with the minimum errors was selected as the distance power for the eventual interpolation performed.
\hypertarget{results-and-discussion}{%
\section{Results and Discussion}\label{results-and-discussion}}
\hypertarget{iron-folic-acid-supplementation-coverage}{%
\subsection{Iron-Folic Acid Supplementation Coverage}\label{iron-folic-acid-supplementation-coverage}}
Figure \ref{fig:ifa1plot} and Table \ref{tab:ifa1table} presents a summary of the IFA supplementation coverage indicators for Greater Monrovia and Grand Bassa at baseline and endline. The majority of mothers surveyed at baseline and endline from Greater Monrovia and Grand Bassa have attended ANC during their last pregnancy, are aware of IFA tablets, have received IFA tablets and have consumed IFA tablets. Knowledge, receipt and consumption of IFA have all increased at endline compared to baseline with the increase being statistically significant in Greater Monrovia.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/ifa1plot-1}
}
\caption{IFA supplementation coverage}\label{fig:ifa1plot}
\end{figure}
\begin{table}[H]
\caption{\label{tab:ifa1table}Iron-folic acid supplementation coverage}
\centering
\fontsize{9}{11}\selectfont
\begin{tabular}[t]{l>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r}
\toprule
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{6}{c}{\textbf{Greater Monrovia}} & \multicolumn{6}{c}{\textbf{Grand Bassa}} \\
\cmidrule(l{3pt}r{3pt}){2-7} \cmidrule(l{3pt}r{3pt}){8-13}
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} \\
\cmidrule(l{3pt}r{3pt}){2-4} \cmidrule(l{3pt}r{3pt}){5-7} \cmidrule(l{3pt}r{3pt}){8-10} \cmidrule(l{3pt}r{3pt}){11-13}
\multicolumn{1}{c}{\textbf{Indicator}} & \multicolumn{1}{c}{\textbf{\makecell[c]{Est\\(\%)}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\LCL}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\UCL}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{Est\\(\%)}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\LCL}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\UCL}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{Est\\(\%)}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\LCL}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\UCL}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{Est\\(\%)}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\LCL}}} & \multicolumn{1}{c}{\textbf{\makecell[c]{95\%\\UCL}}}\\
\midrule
\rowcolor{gray!6} At least one ANC visit & 85.8 & 79.7 & 91.4 & 93.3 & 90.3 & 96.5 & 87.1 & 82.7 & 91.2 & 86.9 & 80.6 & 92.3\\
Know/heard about IFA & 81.1 & 73.2 & 87.0 & 94.1 & 91.0 & 97.1 & 84.9 & 80.0 & 89.0 & 86.9 & 81.3 & 91.8\\
\rowcolor{gray!6} Received/purchased IFA & 80.7 & 73.7 & 86.8 & 94.2 & 91.1 & 97.1 & 85.0 & 79.4 & 89.4 & 87.3 & 81.4 & 92.6\\
Consumed IFA & 80.3 & 73.1 & 87.1 & 94.2 & 91.1 & 97.1 & 85.2 & 79.1 & 89.5 & 87.3 & 81.4 & 92.6\\
\rowcolor{gray!6} Consumed IFA for 90 days or more & 32.6 & 20.8 & 43.0 & 30.3 & 24.1 & 36.8 & 43.2 & 33.6 & 52.0 & 38.2 & 27.5 & 50.0\\
\bottomrule
\end{tabular}
\end{table}
\newpage
However, coverage of IFA faltered significantly in both areas when length (in days) of IFA tablet consumption was assessed with no improvement at endline compared to baseline (see Figure \ref{fig:ifaTanahashiPlot}).
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/ifaTanahashiPlot-1}
}
\caption{Tanahashi plot for IFA supplementation coverage}\label{fig:ifaTanahashiPlot}
\end{figure}
Of the few who have not received IFA tablets in Greater Monrovia and Grand Bassa despite attending ANC during their last pregnancy, the main reasons for not getting IFA tablets are shown in Figure \ref{fig:ifa2plot}. At baseline, access to health facility from which to obtain IFA was the main reason for non-coverage in both areas. At endline, availability of IFA tablets at the clinics or hospital were the main reasons for non-coverage.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/ifa2plot-1}
}
\caption{Reasons for not receiving/purchasing IFA supplementation}\label{fig:ifa2plot}
\end{figure}
The spatial distribution of IFA supplementation coverage in Greater Monrovia and Grand Bassa is shown in Figure \ref{fig:ifa1map} and \ref{fig:ifa2map}. At baseline, IFA supplementation coverage was lowest in the eastern section of Monrovia. At endline, these areas have increased coverage. For Grand Bassa, IFA supplementation coverage was lowest in the southern and eastern parts of the county. At endline, these areas have increased coverage but with new but much smaller hot spots of low coverage in different parts of the county. The maps for both Greater Monrovia and Grand Bassa show the significant faltering in IFA coverage once adequate consumption of IFA is considered consistent with the aggregated point estimates presented above.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/ifa1map-1}
}
\caption{Spatial distribution of IFA supplementation coverage in Greater Monrovia}\label{fig:ifa1map}
\end{figure}
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/ifa2map-1}
}
\caption{Spatial distribution of IFA supplementation coverage in Grand Bassa}\label{fig:ifa2map}
\end{figure}
\newpage
\hypertarget{iycf-counselling-coverage}{%
\subsection{IYCF Counselling Coverage}\label{iycf-counselling-coverage}}
Knowledge of and attendance to IYCF counselling is both close to 80\% in Greater Monrovia and Grand Bassa at baseline. At endline, these indicators increase to close to 90\% for Greater Monrovia and close to 85\% in Grand Bassa (see Figure \ref{fig:icf1plot} and Table \ref{tab:icf1table}). No faltering between knowledge of and attendance to IYCF counselling is noted in either areas.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/icf1plot-1}
}
\caption{IYCF counselling coverage}\label{fig:icf1plot}
\end{figure}
\begin{table}[H]
\caption{\label{tab:icf1table}IYCF counselling coverage}
\centering
\fontsize{9}{11}\selectfont
\begin{tabular}[t]{l>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r}
\toprule
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{6}{c}{\textbf{Greater Monrovia}} & \multicolumn{6}{c}{\textbf{Grand Bassa}} \\
\cmidrule(l{3pt}r{3pt}){2-7} \cmidrule(l{3pt}r{3pt}){8-13}
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} \\
\cmidrule(l{3pt}r{3pt}){2-4} \cmidrule(l{3pt}r{3pt}){5-7} \cmidrule(l{3pt}r{3pt}){8-10} \cmidrule(l{3pt}r{3pt}){11-13}
\textbf{Indicator} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}}\\
\midrule
\rowcolor{gray!6} Know/heard about IYCF counselling & 77.6 & 69.2 & 85.4 & 88.9 & 84.7 & 92.5 & 77.5 & 72.1 & 83.7 & 83.9 & 76.4 & 89.2\\
Attended IYCF counselling & 76.5 & 66.3 & 83.4 & 87.0 & 81.5 & 91.4 & 78.1 & 71.3 & 83.3 & 82.4 & 74.9 & 87.9\\
\bottomrule
\end{tabular}
\end{table}
\newpage
Of the few who did not attend IYCF counselling, their main reasons for not attending are presented in Figure \ref{fig:icf2table}. At baseline, mothers not covered by IYCF counselling reported not having information about IYCF counselling and how to access it as the main reasons for non-coverage. At endline, timing of IYCF counselling and lack of interest in IYCF counselling was reported the most.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/icf2table-1}
}
\caption{Reasons for not attending IYCF counselling}\label{fig:icf2table}
\end{figure}
Spatial distribution of IYCF counselling coverage in Greater Monrovia is shown in Figure \ref{fig:icf1map}. IYCF counselling coverage was at its lowest in eastern sections of Greater Monrovia at baseline. These areas have improved coverage at endline. Spatial distribution of IYCF counselling coverage in Grand Bassa is shown in Figure \ref{fig:icf2map}. IYCF counselling coverage was at its lowest in southern sections of Grand Bassa at baseline. These areas have improved coverage at endline but with newer focused areas of low coverage spread throughout the county.
\begin{figure}[H]
{\centering \includegraphics[width=0.65\linewidth]{liberiaCoverageFinalReport_files/figure-latex/icf1map-1}
}
\caption{Spatial distribution of IYCF counselling coverage in Greater Monrovia}\label{fig:icf1map}
\end{figure}
\begin{figure}[H]
{\centering \includegraphics[width=0.65\linewidth]{liberiaCoverageFinalReport_files/figure-latex/icf2map-1}
}
\caption{Spatial distribution of IYCF counselling coverage in Grand Bassa}\label{fig:icf2map}
\end{figure}
\newpage
\hypertarget{micronutrient-powder-supplementation-coverage}{%
\subsection{Micronutrient powder supplementation coverage}\label{micronutrient-powder-supplementation-coverage}}
Figure \ref{fig:mnp1plot} and Table \ref{tab:mnp1table} summarises the hierarchical MNP supplementation coverage indicators in Greater Monrovia and Grand Bassa. MNP supplementation coverage was extremely low at baseline in each area. This was expected given that programme was at its early implementation phase. At endline, the MNP supplementation coverage indicators have increased significantly compared to baseline with estimates approaching 50\% in both areas. However, it should be noted that these MNP coverage results are still considerably low. From a hierarchical coverage perspective, these results still indicate that knowledge and information about MNP is the key faltering point of the programme.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/mnp1plot-1}
}
\caption{Micronutrient powder supplementation coverage}\label{fig:mnp1plot}
\end{figure}
\begin{table}[H]
\caption{\label{tab:mnp1table}MNP supplementation coverage}
\centering
\fontsize{9}{11}\selectfont
\begin{tabular}[t]{l>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r}
\toprule
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{6}{c}{\textbf{Greater Monrovia}} & \multicolumn{6}{c}{\textbf{Grand Bassa}} \\
\cmidrule(l{3pt}r{3pt}){2-7} \cmidrule(l{3pt}r{3pt}){8-13}
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} \\
\cmidrule(l{3pt}r{3pt}){2-4} \cmidrule(l{3pt}r{3pt}){5-7} \cmidrule(l{3pt}r{3pt}){8-10} \cmidrule(l{3pt}r{3pt}){11-13}
\textbf{Indicator} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}}\\
\midrule
\rowcolor{gray!6} Heard about micronutrient powder & 17.9 & 10.5 & 26.5 & 49.3 & 38.4 & 59.9 & 4.2 & 0.8 & 9.0 & 43.1 & 29.8 & 55.0\\
Received/purchased micronutrient powder & 12.5 & 5.7 & 20.8 & 42.8 & 31.1 & 54.2 & 0.7 & 0.0 & 3.4 & 37.1 & 25.9 & 48.4\\
\rowcolor{gray!6} Child consumed micronutrient powder & 11.1 & 3.9 & 19.4 & 41.2 & 29.4 & 52.4 & 0.7 & 0.0 & 3.0 & 35.2 & 24.9 & 47.2\\
\bottomrule
\end{tabular}
\end{table}
The main reasons for not receiving MNP supplements are presented in Figure \ref{fig:mnp2plot}. At baseline, lack of information about MNP supplementation programme was the main reason for non-coverage. At endline, reasons have shifted more to personal preferences by parents not to have children take the MNP supplement mainly because they think their child doesn't need the supplement. This seem to signify a shift from just not being aware of the MNP programme at baseline to being aware but then not knowing what the MNP is for and why it is important to receive and consume MNP for all children eligible.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/mnp2plot-1}
}
\caption{Reasons for not receiving micronutrient powder}\label{fig:mnp2plot}
\end{figure}
Spatial distribution of MNP supplementation coverage was all throughout low in Greater Monrovia and Grand Bassa at baseline. By endline, improved coverage was concentrated in the north and central areas of Greater Monrovia (see Figure \ref{fig:mnp1map}) and at north and central areas of Grand Bassa (see Figure \ref{fig:mnp2map}). The spatial distribution of coverage for both areas emphasise the point that despite increased aggregated coverage shown above, a still greater number of children and areas are uncovered by the MNP supplementation programme.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/mnp1map-1}
}
\caption{Spatial distribution of MNP supplementation coverage in Greater Monrovia}\label{fig:mnp1map}
\end{figure}
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/mnp2map-1}
}
\caption{Spatial distribution of MNP supplementation coverage in Grand Bassa}\label{fig:mnp2map}
\end{figure}
\newpage
\hypertarget{vitamin-a-supplementation-coverage}{%
\subsection{Vitamin A Supplementation Coverage}\label{vitamin-a-supplementation-coverage}}
Vitamin A supplementation coverage in Greater Monrovia and Grand Bassa is shown in Figure \ref{fig:vit1plot}. There were 82\% of children 6-59 months in Greater Monrovia who received vitamin A supplementation in the past 6 months at baseline. This rate dropped slightly at endline to 78\% though this difference is not statistically significant. In Grand Bassa, about 84\% of children 6-59 months received vitamin A supplementation in the past 6 months at baseline. This dropped slightly to about 82\% at endline though the difference is not statistically significant.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/vit1plot-1}
}
\caption{Vitamin A supplementation coverage}\label{fig:vit1plot}
\end{figure}
Spatial distribution of vitamin A supplementation in Greater Monrovia is shown in Figure \ref{fig:vit1map}. The south and eastern areas of Greater Monrovia have the lowest vitamin A supplementation coverage which have shown improvement at endline though other areas in the northeast and southwest of Greater Monrovia have decreased vitamin A supplementation. Spatial distribution of vitamin A supplementation in Grand Bassa is shown in Figure \ref{fig:vit2map}. The south, central and northern areas of Grand Bassa have the lowest vitamin A supplementation coverage which have shown improvement at endline though other areas in the southeast and northeast of Grand Bassa have decreased vitamin A supplementation.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/vit1map-1}
}
\caption{Spatial distribution of vitamin A coverage in Greater Monrovia}\label{fig:vit1map}
\end{figure}
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/vit2map-1}
}
\caption{Spatial distribution of vitamin A coverage in Grand Bassa}\label{fig:vit2map}
\end{figure}
The main reasons for not receiving vitamin A are presented in Figure \ref{fig:vit2plot}. At baseline, the main reasons for non-coverage was access and availability of the supplement. At endline, these reasons are still the most common in Grand Bassa but for Greater Monrovia, there is a factor of mothers choosing not to have their children receive the supplement as they perceive their child not needing it.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/vit2plot-1}
}
\caption{Reasons for not receiving vitamin A}\label{fig:vit2plot}
\end{figure}
\newpage
\hypertarget{stuntingstuntedness-prevalence}{%
\subsection{Stunting/stuntedness prevalence}\label{stuntingstuntedness-prevalence}}
At endline, weight and height measurements were also measured. This allowed for prevalence of stunting/stuntedness to be assessed as presented in Figure \ref{fig:stunt1plot} and Table \ref{tab:stunt1table}. Global stunting/stuntedness is at 22\% in Greater Monrovia of which about 15\% are children with moderate stunting/stuntedness and about 8\% severe. In Grand Bassa, global stunting/stuntedness is significantly higher at a little over 44\%, 24\% of which are children with moderate stunting/stuntedness and about 20\% severe.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/stunt1plot-1}
}
\caption{Stunting/stuntedness prevalence}\label{fig:stunt1plot}
\end{figure}
\begin{table}[H]
\caption{\label{tab:stunt1table}Stunting/stuntedness prevalence}
\centering
\fontsize{9}{11}\selectfont
\begin{tabular}[t]{l>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r}
\toprule
\multicolumn{1}{c}{ } & \multicolumn{3}{c}{Greater Monrovia} & \multicolumn{3}{c}{Grand Bassa} \\
\cmidrule(l{3pt}r{3pt}){2-4} \cmidrule(l{3pt}r{3pt}){5-7}
\textbf{Indicator} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}}\\
\midrule
\rowcolor{gray!6} Global stunting/stuntedness & 22.2 & 20.3 & 24.4 & 44.3 & 41.6 & 47.5\\
Moderate stunting/stuntedness & 14.6 & 12.8 & 16.6 & 24.4 & 21.8 & 27.1\\
\rowcolor{gray!6} Severe stunting/stuntedness & 7.6 & 6.4 & 9.0 & 19.8 & 17.9 & 22.2\\
\bottomrule
\end{tabular}
\end{table}
\newpage
\hypertarget{acute-undernutrition-prevalence-by-muac}{%
\subsection{Acute undernutrition prevalence by MUAC}\label{acute-undernutrition-prevalence-by-muac}}
Prevalence of acute undernutrition is presented in Figure \ref{fig:nut1plot} and Table \ref{tab:nut1table}. Acute undernutrition rates were highest in Grand Bassa reaching up to 4\% GAM and close to 2\% GAM in Greater Monrovia at baseline. These estimates are relatively low but are the generally expected values for these areas in Liberia. At endline, the rates for Greater Monrovia increased slightly while for Grand Bassa they decreased slightly. These changes are not statistically significant.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/nut1plot-1}
}
\caption{Acute undernutrition prevalence}\label{fig:nut1plot}
\end{figure}
\begin{table}[H]
\caption{\label{tab:nut1table}Acute undernutrition by MUAC prevalence}
\centering
\fontsize{9}{11}\selectfont
\begin{tabular}[t]{l>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r}
\toprule
\multicolumn{1}{c}{ } & \multicolumn{6}{c}{Greater Monrovia} & \multicolumn{6}{c}{Grand Bassa} \\
\cmidrule(l{3pt}r{3pt}){2-7} \cmidrule(l{3pt}r{3pt}){8-13}
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} \\
\cmidrule(l{3pt}r{3pt}){2-4} \cmidrule(l{3pt}r{3pt}){5-7} \cmidrule(l{3pt}r{3pt}){8-10} \cmidrule(l{3pt}r{3pt}){11-13}
\textbf{Indicator} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}}\\
\midrule
\rowcolor{gray!6} Global acute malnutrition & 1.91 & 1.29 & 2.73 & 2.5 & 1.8 & 3.3 & 4.19 & 3.45 & 5.04 & 3.4 & 2.4 & 4.4\\
Moderate acute malnutrition & 1.21 & 0.78 & 1.72 & 1.7 & 1.1 & 2.5 & 2.54 & 2.02 & 3.22 & 2.3 & 1.5 & 3.1\\
\rowcolor{gray!6} Severe acute malnutrition & 0.71 & 0.32 & 1.14 & 0.7 & 0.4 & 1.1 & 1.58 & 1.07 & 2.14 & 1.0 & 0.6 & 1.7\\
\bottomrule
\end{tabular}
\end{table}
\newpage
\hypertarget{acute-undernutrition-screening-coverage}{%
\subsection{Acute undernutrition screening coverage}\label{acute-undernutrition-screening-coverage}}
Screening coverage is very low for both Greater Monrovia and Grand Bassa as shown in Figure \ref{fig:screen1} and Table \ref{tab:screen2} and spatial distribution is low across both programme areas as shown in the maps in Figure \ref{fig:screen1map} and Figure \ref{fig:screen2map}.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/screen1-1}
}
\caption{Acute undernutrition screening coverage}\label{fig:screen1}
\end{figure}
\begin{table}[H]
\caption{\label{tab:screen2}Acute undernutrition screening coverage}
\centering
\fontsize{9}{11}\selectfont
\begin{tabular}[t]{l>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r}
\toprule
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{6}{c}{\textbf{Greater Monrovia}} & \multicolumn{6}{c}{\textbf{Grand Bassa}} \\
\cmidrule(l{3pt}r{3pt}){2-7} \cmidrule(l{3pt}r{3pt}){8-13}
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} \\
\cmidrule(l{3pt}r{3pt}){2-4} \cmidrule(l{3pt}r{3pt}){5-7} \cmidrule(l{3pt}r{3pt}){8-10} \cmidrule(l{3pt}r{3pt}){11-13}
\textbf{Indicator} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}}\\
\midrule
\rowcolor{gray!6} Child MUAC measured in the past month & 3.79 & 1.37 & 7.73 & 2.8 & 1.90 & 3.83 & 1.26 & 0.81 & 1.92 & 3.03 & 1.34 & 5.45\\
Child checked for oedema in the past month & 2.65 & 0.52 & 6.63 & 1.8 & 1.07 & 2.54 & 0.07 & 0.00 & 0.21 & 2.08 & 0.89 & 4.10\\
\bottomrule
\end{tabular}
\end{table}
\begin{figure}[H]
{\centering \includegraphics[width=0.65\linewidth]{liberiaCoverageFinalReport_files/figure-latex/screen1map-1}
}
\caption{Spatial distribution of acute undernutrition screening coverage in Greater Monrovia}\label{fig:screen1map}
\end{figure}
\begin{figure}[H]
{\centering \includegraphics[width=0.65\linewidth]{liberiaCoverageFinalReport_files/figure-latex/screen2map-1}
}
\caption{Spatial distribution of acute undernutrition screening coverage in Grand Bassa}\label{fig:screen2map}
\end{figure}
\newpage
\hypertarget{cmam-coverage-1}{%
\subsection{CMAM Coverage}\label{cmam-coverage-1}}
Case-finding effectiveness in both Greater Monrovia and Grand Bassa are low at baseline (see Figure \ref{fig:cmam1plot} and Table \ref{tab:cmam1table}) with Greater Monrovia having a higher rate at about 31\% compared to 6\% in Grand Bassa. At endline, Greater Monrovia's case-finding effectiveness dropped significantly to just about 15\% while Grand Bassa's case-finding effectiveness stayed about the same.
Treatment coverage is at 55\% in Greater Monrovia at baseline which is an improvement from previous coverage estimates for the area but Grand Bassa only managed to get 18\% treatment coverage. At endline, treatment coverage in Greater Monrovia dropped to less than 30\% while treatment coverage in Grand Bassa decreased slightly to about 13\%. The drop in coverage of CMAM for Greater Monrovia is statistically significant.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/cmam1plot-1}
}
\caption{CMAM coverage}\label{fig:cmam1plot}
\end{figure}
\begin{table}[H]
\caption{\label{tab:cmam1table}CMAM coverage}
\centering
\fontsize{9}{11}\selectfont
\begin{tabular}[t]{l>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r>{\ttfamily}r}
\toprule
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{6}{c}{\textbf{Monrovia}} & \multicolumn{6}{c}{\textbf{Grand Bassa}} \\
\cmidrule(l{3pt}r{3pt}){2-7} \cmidrule(l{3pt}r{3pt}){8-13}
\multicolumn{1}{c}{\textbf{ }} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} & \multicolumn{3}{c}{\textbf{Baseline}} & \multicolumn{3}{c}{\textbf{Endline}} \\
\cmidrule(l{3pt}r{3pt}){2-4} \cmidrule(l{3pt}r{3pt}){5-7} \cmidrule(l{3pt}r{3pt}){8-10} \cmidrule(l{3pt}r{3pt}){11-13}
\textbf{Indicator} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}} & \textbf{\makecell[c]{Est\\(\%)}} & \textbf{\makecell[c]{95\%\\LCL}} & \textbf{\makecell[c]{95\%\\UCL}}\\
\midrule
\rowcolor{gray!6} Case-finding effectiveness & 30.77 & 27.29 & 34.25 & 14.29 & 12.89 & 15.69 & 6.45 & 4.90 & 8.00 & 6.38 & 5.36 & 7.40\\
Treatment coverage & 54.68 & 53.97 & 55.38 & 27.35 & 26.60 & 28.10 & 17.65 & 16.77 & 18.53 & 13.48 & 12.73 & 14.24\\
\bottomrule
\end{tabular}
\end{table}
The spatial distribution of CMAM coverage in Greater Monrovia is shown in Figure \ref{fig:cmamMap1}. It shows high levels of coverage at baseline throughout most of Greater Monrovia but with significant areas of low coverage in the western and southeastern sections. At endline, case-finding effectiveness and treatment coverage is low throughout the whole of Greater Monrovia with very little spatial variation.
\begin{figure}[H]
{\centering \includegraphics[width=0.65\linewidth]{liberiaCoverageFinalReport_files/figure-latex/cmamMap1-1}
}
\caption{Spatial distribution of CMAM coverage in Greater Monrovia}\label{fig:cmamMap1}
\end{figure}
The spatial distribution of CMAM coverage in Grand Bassa is shown in Figure \ref{fig:cmamMap2}. Coverage at baseline in Grand Bassa is low throughout but with pockets of high coverage in the western area of the county. At endline, the case-finding effectiveness and treatment coverage of CMAM in Grand Bassa is still generally low but with lighter hotspots than baseline. Areas of high coverage in the west of the county has increased.
\begin{figure}[H]
{\centering \includegraphics[width=0.65\linewidth]{liberiaCoverageFinalReport_files/figure-latex/cmamMap2-1}
}
\caption{Spatial distribution of CMAM coverage in Grand Bassa}\label{fig:cmamMap2}
\end{figure}
For SAM cases not covered by the programme, Figure \ref{fig:cmam2plot} summarises the reasons for non-coverage. No knowledge of the treatment modality for acute undernutrition was consistently the reason reported by non-covered cases at baseline and endline in both areas.
\begin{figure}[H]
{\centering \includegraphics{liberiaCoverageFinalReport_files/figure-latex/cmam2plot-1}
}
\caption{Reasons for not being in CMAM programme}\label{fig:cmam2plot}
\end{figure}
\newpage
\hypertarget{discussion}{%
\section{Discussion}\label{discussion}}
The aim and priority in public health and nutrition services is to reach as many of those affected and/or needing the services. Achieving these goals will maximise impact and the capacity of the service to meet need. Good coverage is a key determinant in meeting need. It is important therefore to evaluate coverage, not just to assess the degree to which need is being met, but also to understand what factors affect access to and uptake of services, in order to initiate action to ensure the greatest number of people needing treatment are able to benefit from it.
Coverage can be simply defined as the proportion of all people needing or eligible to receive a service who actually receive that service. Tanahashi's paper, ``Health service coverage and its evaluation,'' \citep{Tanahashi:1978we} presents a more nuanced conception of coverage that focuses on key stages of coverage to identify where failures of service provision occur.
The stages that Tanahashi identifies are as follows:
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
Availability coverage - people for whom the service is available
\item
Accessibility coverage - people who can use the service
\item
Acceptability coverage - people who are willing to use the service
\item
Contact coverage - people who use the service; and,
\item
Effectiveness coverage - people who receive effective care or service
\end{enumerate}
These levels of coverage identified by Tanahashi are related hierarchically as illustrated in Figure \ref{fig:tanahashi}.
\begin{figure}[H]
{\centering \includegraphics[width=10.31in]{figures/coverageTanahashi}
}
\caption{Tanahashi's hierarchical model of health service coverage}\label{fig:tanahashi}
\end{figure}
Timely, appropriate and high-quality monitoring of coverage is essential in planning, implementing and tracking the progress of programmes such as those for maternal, newborn and child health and nutrition \citep{Bryce:2013dd}. However, large gaps still exist with regard to coverage data and assessment of these programmes \citep{Bryce:2008kf, Bryce:2013dd, InternationalFoodPolicyResearchInstitute:2014wj}. For example, only 11 out of 75 countries that account for 95\% of maternal and child deaths had data on all 8 coverage indicators\footnote{These indicators are 1) met need for contraception; 2) antenatal care coverage; 3) antiretroviral prophylaxis among HIV-positive pregnant women to prevent vertical transmission of HIV, and antiretroviral therapy for women who are treatment-eligible; 4) skilled attendant at birth; 5) postnatal care for mothers and babies; 6) exclusive breastfeeding for six months; 7) three doses of the combined diphtheria, pertussis and tetanus vaccine; and, 8) antibiotic treatment for pneumonia.} that have been recommended for monitoring the progress of key interventions aimed at improving women's and children's health \citep{independentExpertReviewGrouponInformationandAccountabilityforWomensandChildrensHealth:2013uc}. A similar scenario exists for nutrition programmes. Coverage data for the 12 key nutrition-specific interventions\footnote{These interventions include 1) folic acid supplementation/fortification; 2) balanced energy-protein supplementation; 3) calcium supplementation; 4) multiple micronutrient supplementation; 5) promotion of breastfeeding; 6) complementary feeding; 7) vitamin A supplementation; 8) preventive zinc supplementation; 9) zinc for treatment of diarrhoea; 10) feeding for children with moderate acute malnutrition; 11) therapeutic feeding for severe wasting; and, 12) universal salt iodisation.} crucial for undernutrition reduction \citep{Bhutta:2008p10829, Bhutta:2013ks, Bhutta:2013cf, InternationalFoodPolicyResearchInstitute:2014wj} are scarce; only 3 of the 12 interventions have readily available, nationally-comparable data in a majority of countries, with the rest of the interventions having either no data at all, non-comparable data or only sub-national data \citep{InternationalFoodPolicyResearchInstitute:2014wj}.
Other coverage-related considerations are not addressed by currently available data \citep{Guevarra:2014ta}. These are:
\begin{itemize}
\item
\textbf{Overall vs.~local estimates}. The heterogeneous (i.e.~uneven) nature of coverage of health and nutrition surveys over a wide area (countrywide, regional) is not taken into consideration. More often than not, available data is only for overall aggregated estimates across the entire wide area. Available data hides the heterogeneity of coverage over space.
\item
\textbf{Time to reach standards}. Whether a service is new or well established will have an effect on what is realistically achievable, what can be judged as acceptable and over what time period we can expect standards to be reached.
\item
\textbf{Level of the standard}. Stating a minimum standard may act as a brake on ambition, as over time it would be hoped that these standards are exceeded. Coverage should increase over time and once a standard has been met, a new and higher standard should be set. This should ensure continual and incremental improvements in line with an audit cycle which aims to achieve and maintain best practice.
\end{itemize}
The Liberia coverage assessment of direct nutrition interventions was developed and designed in recognition of this global context of health and nutrition programmes coverage and their assessment. The Liberia coverage assessment provides results on 5 of the 12 key nutrition-specific interventions described above and at a sub-national level (Greater Monrovia district and Grand Bassa county level) which has not been available previously\footnote{Results for the same indicators have only previously been reported at national level via the Liberia Demographic and Health Services (LDHS).}. In addition to indicator estimates, the Liberia coverage assessment provides fine-grained indicator surface maps showing areas of high and low coverage in each of the sub-national units assessed.
The results of the Liberia coverage assessment in Greater Monrovia and Grand Bassa indicate various levels of disparity in coverage both between the programme areas and within the programme areas assessed.
Long-standing programmes such as IFA supplementation, IYCF counselling and vitamin A supplementation have performed fairly well in terms of coverage. The majority of women and children targeted by these programmes are knowledgeable of the programme and are beneficiaries of the programme. Years of implementation complemented by the level of support and investment by the government and its partners seem to have paid dividends in allowing for these programmes to reach almost all of their targeted beneficiaries. Given that these programmes have been in place for years, the level of the standard for coverage of these indicators should be set quite high with the benchmark being the 90\% mark discussed by Bhutta and colleagues \citep{Bhutta:2013ks} for maximum health and nutrition impact. In this regard, the assessment reveals possible areas of improvement to reach this standard.
For IFA supplementation, the programme has been able to reach most mothers and has been successful in getting them to take IFA supplements. However, the key challenge for the programme is \textbf{compliance} - to keep mothers taking the tablets for the recommended period of time. Since the survey did not collect data on mother's reasons for stopping IFA tablet consumption, it would be a good first step for the factors for stopping IFA tablet consumption be investigated with the results used as the basis for further counselling and education provided for pregnant women during ANC. Given that contact with health care services during pregnancy is high, it would be good to review existing guidance provided through ANC regarding the intake of IFA and to see whether relevant and appropriate information that addresses pregnant women's reasons for stopping are clarified and addressed.
For IYCF counselling, coverage of the counselling activities is high and even increased at endline. Lack of awareness of IYCF counselling which as reported as the main reason for non-coverage at baseline seems to have been addressed and is the most likely reason for the increase in coverage. At endline, the reasons for non-coverage are mainly lack of interest and lack of time which stakeholders of the programme will have to address to maintain the current level of coverage and even further improve it. Timing of when IYCF counselling is provided will have to be considered both in terms of when it is done and for how long. The current delivery model uses the mother's health visit as the point of contact for IYCF counselling. Those that don't have time and lack interest are mothers who most likely do not come to the health facility in the first place. Modalities of delivering IYCF counselling closer to where mothers live may be considered and the length of counselling sessions adapted in that they can be made shorter but number of IYCF counselling sessions increased. In this context of high coverage of IYCF counselling, it would now be important to assess the next level in the coverage hierarchy of whether mothers practice what they have been taught or what they have learned. The most straightforward way of doing so would be assessing IYCF practices as these are the key behaviours that are targeted by the counselling. If this was to be considered, however, UNICEF and its partners would have to take into account the fact that current standard IYCF indicators can only be assessed through big sample surveys such as DHS and MICS. Yet these surveys would most likely not provide the same level of detail and information as the current assessment. There are, however, small sample alternatives to the standard IYCF indicators such as the Infant and Child Feeding Index (ICFI) indicator set which can be considered for use in routine monitoring of IYCF practices \citep{Guevarra:2016uw}.
For vitamin A supplementation, the current figures are relatively lower than the expected indirect coverage estimates produced by government through the routine data collected through the Health Management Information System (HMIS). As always, it is important to recognise the limitations of indirect coverage estimates and to assess what the potential reasons for this disparity are. In addition, given that vitamin A supplementation is generally delivered in twice yearly campaigns alongside vaccinations, it would be important to ensure the availability of vitamin A and optimise the synergies between vitamin A supplementation and vaccination given that availability of vitamin A and access to vaccination has been cited as a common reason for non-coverage to vitamin A.
Programmes such as MNP and CMAM, on the other hand, show how new and recently scaled-up programmes are still in the process of achieving the highest levels of coverage possible. MNP supplementation which is the newest programme of those assessed is understandably still struggling with coverage even at endline. Knowledge of the programme and knowledge of how the programme works and its importance for children's health and nutrition is the key falter point which is typical of a programme at this stage of its evolution. However, available evidence on similar programmes providing complementary feeding supplements show a much higher awareness and contact coverage at a minimum 1 year after start of programme implementation \citep{Aaron:2016cv} and typically falters at the effectiveness coverage level. This difference in coverage to other similar programmes elsewhere can be linked to the way the programme in Liberia is being implemented. The programme is mainly anchored to the health centre and therefore knowledge and access to it is primarily influenced by mothers' behaviours and attitudes towards seeking care and treatment at the health facility. Given that MNP is aimed at children who are otherwise healthy (not acute malnourished), the current MNP coverage estimates indicate that health-seeking behaviour leading to a visit to a health facility is mainly influenced by whether their children are sick rather than as a way to seek information or participate in promotive and preventive services such as MNP supplementation. Other factors include physical access to health centres. A more community-based approach to MNP supplementation that is integrated with other community-based programmes such as vaccinations and CMAM should be considered as a potential delivery mechanism. Screening of children using MUAC can be integrated into vaccination campaigns and children under 2 years old identified as not being acutely malnourished are informed about MNP supplementation programme and ideally provided with the MNP supplements at point of contact. These efforts should be coupled with clear behavioural change communication messages on the importance of complementary feeding and how the MNP supplement contributes to the increased quality of complementary feeding with the aim of creating demand for MNP amongst the programme's target beneficiary. Finally, information on access to the programme providing MNP including eligibility criteria and locations where they can receive the MNP should be explained clearly to the potential beneficiaries.
For CMAM, the coverage estimates at baseline and endline indicate 1) disparity between Greater Monrovia and Grand Bassa in terms of the level and intensity of the community aspects of the programme; 2) significant drop in coverage of CMAM in Greater Monrovia given that at baseline its coverage was exemplary for an urban CMAM programme; and, 3) no significant change in coverage of CMAM in Grand Bassa with coverage still remaining unacceptably low. At baseline, screening and case-finding in Greater Monrovia is better than in Grand Bassa and this can partly explain the difference in treatment coverage between the two areas at baseline. At endline, no improvement in screening has happened and the levels of coverage for CMAM has significantly plummeted. Given that screening has remained extremely low at endline compared to baseline in both survey areas, other factors should be looked into for the cause of this significant decline in coverage in Greater Monrovia and the stagnant coverage in Grand Bassa. Review of previous CMAM coverage assessment conducted in Greater Monrovia by Action Against Hunger in 2011 \citep{AccionContralaFaim:2011vu} reveal that despite the reported 48.6\% period coverage, a relatively high figure for most CMAM programmes particularly for a programme that is being implemented in an urban area, several barriers to coverage were identified the most common of which was awareness of the programme, its services and intended beneficiaries. This was the same key factor elicited in the baseline (where treatment coverage was at 55\%) and endline (where treatment coverage dropped to 27\%) of the Liberia coverage assessment. With all these factors of screening and awareness being constant since the early stages of the CMAM programme in Liberia, a more basic reason for the significant decrease in coverage in Greater Monrovia is likely. Based on feedback by stakeholders, the CMAM programme in Greater Monrovia has been mainly implemented by government in the past year without the usual support from other stakeholders. The possible effect of this on coverage is more on the day-to-day implementation of the programme particularly with case admission and management. It is recommended that a more nuanced investigation into the CMAM implementation be done in both Greater Monrovia and Grand Bassa. Specifically, an analysis of routine programme monitoring data should be done for as far back as data is available to assess the following:
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\item
Median MUAC at admission - MUAC at admission measures timeliness of admissions. This measure assesses either how early/late beneficiaries seek care for acute malnutrition or how early/late the programme is able to find cases of acute malnutrition. Late admissions or those children who are admitted to the program only after they have met admission criteria for a considerable period of time are of particular interest \citep{Myatt:2012tt}. This analysis is standard in coverage assessments using the Semi-Quantitative Evaluation of Access and Coverage (SQUEAC). Based on review of the SQUEAC performed by Action Against Hunger in 2011, this analysis was not performed. Based on the extremely screening coverage in Greater Monrovia and Grand Bassa and the low case-finding effectiveness at baseline and endline, it is likely that since the programme has started, majority of cases of SAM in the CMAM programme were admitted late. The implication of this is that the length of stay in CMAM would be longer for cases presenting late for treatment. Length of stay (see second point below) has an impact on coverage in that programmes with cases that stay in treatment for longer periods of time would tend to have higher period/treatment coverage. This may explain the relatively high level of coverage in the 2011 and 2018 assessments.
\item
Median length of stay or duration of treatment episode - This can be calculated using recommended standard routine programme monitoring procedures \citep{ValidInternational:2006vk}. Examining the duration of the treatment episode (i.e., the time from admission to discharge) may also provide useful information about programme coverage. Long treatment episodes may be due to late admission or poor adherence to the CMAM treatment protocol by programme staff (e.g., failure to give a systemic antimicrobial, RUTF stock-outs) and beneficiaries (e.g., intra-household sharing of RUTF, lack of continuity of care) \citep{Myatt:2012tt}. Programmes with long treatment episodes tend to be unpopular with beneficiaries and suffer from late treatment seeking and high levels of defaulting both of which are failures of coverage \citep{Myatt:2012tt}.
\end{enumerate}
Based on results of this in-depth investigation, appropriate remedial actions should be done to emphasise CMAM treatment protocols prescribed in the newly formulated CMAM guidelines for Liberia. In addition, screening coverage will need to be increased so as to find cases early and get them treated early and quickly.
Finally, some limitations need to be considered and potentially addressed in future coverage assessments of these indicators. Whilst using the Tanahashi hierarchical model is a useful evaluation and audit framework for coverage, its usefulness is dependent on appropriate and measurable indicators that can assess the higher rungs of the model. We have been able to exemplify in the IFA supplementation indicators how a fully specified coverage indicator set allows for meaningful diagnosis of where this programme is faltering at. This is particularly signficant for IFA supplementation given that the lower order coverage indicators show high estimates and by themselves would not have been informative. With the higher order coverage indicators specified, it becomes clear that the improvement in the programme is in ensuring that pregnant women are compliant to the IFA supplementation regime.
Having a similar set of hierarchical coverage indicators for IYCF counselling would have been valuable as well given that coverage of the programme as proxied by knowledge of and participation in IYCF counselling is relatively high in both survey areas. Whilst there is information to work with to further improve these lower level coverage indicators, higher order coverage indicators that can proxy acceptability of the IYCF counselling and effectiveness of IYCF counselling would have been valuable in further improving both the content and the mechnics of the IYCF counselling programme. This will however require development and testing of indicators that would be appropriate and measurable to assess these concepts. The same approach will be needed for vitamin A supplementation coverage indicators as the currently used standard indicator only assesses contact coverage and not any other higher order coverage metrics such as appropriate dosing. For MNP, these higher order coverage metrics will be required at some point but given that lower order coverage indicators show quite low levels, it will be important to first address the issues identified with regard to availability and access first and improve on this while developing the measures needed for the higher level coverage metrics. CMAM, on the other hand, has built in higher order coverage metrics of up to effectiveness coverage which takes into account the programme's performance indicators. Hence, the key focus for CMAM is to rectify the issues that have caused the programme to significantly falter in their coverage levels.
\newpage
\hypertarget{annex-a-survey-instruments}{%
\section*{Annex A: Survey instruments}\label{annex-a-survey-instruments}}
\addcontentsline{toc}{section}{Annex A: Survey instruments}
The following tabular form was used for the CMAM coverage assessment:
\begin{center}\includegraphics[width=0.9\linewidth]{forms/samForm} \end{center}
The data collected using the tabular forms allows for estimation of coverage. They do not, however, allow one to know the reasons for coverage failure. To collect this data we applied a ``barriers'' questionnaire to the mothers/carers of uncovered SAM cases. Here is an example of a barriers questionnaire:
\newpage
\begin{center}\includegraphics[width=0.9\linewidth]{forms/samBarriersForm} \end{center}
\textbf{CMAM coverage survey instruments}
The CMAM coverage surveys primarily used two forms. The first form was used to collect coverage data from SAM children found during the survey. Given that this survey used house-to-house/door-to-door sampling for stage 2, then it was necessary to record all data from all children that were measured with MUAC and oedema.
\textbf{Survey for children 6-59 months and their mothers}
For the survey for children 6-59 months, following is a sample/template questionnaire used.
\begin{center}\includegraphics[width=0.9\linewidth]{forms/childForm1} \end{center}
\begin{center}\includegraphics[width=0.9\linewidth]{forms/childForm2} \end{center}
\begin{center}\includegraphics[width=0.9\linewidth]{forms/childForm3} \end{center}
\begin{center}\includegraphics[width=0.9\linewidth]{forms/childForm4} \end{center}
\newpage
\renewcommand\refname{References}
\bibliography{bibliography.bib}