-
Notifications
You must be signed in to change notification settings - Fork 1
/
02-severe-stunting.Rmd
33 lines (25 loc) · 1.05 KB
/
02-severe-stunting.Rmd
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
# Severe stunting analyses {#severe-stunting}
---
output:
pdf_document:
keep_tex: yes
fontfamily: mathpazo
fontsize: 9pt
---
\raggedright
Below, we display plots for the age-specific prevalence and cumulative incidence of severe stunting (LAZ < -3). Overall, the patterns are the same as for stunting (LAZ < -2), with the peak in prevalence at ages 18-24 months and the highest incidence proportion from 0-3 months.
```{r setup, include=FALSE}
library(knitr)
knitr::opts_chunk$set(echo = TRUE)
source(paste0(here::here(), "/0-config.R"))
```
## Age-specific severe stunting prevalence
```{r prev, echo = FALSE}
include_graphics(paste0(fig_dir, "/stunting/fig-stunt-3-prev-overall_region--allage-primary.png"))
#include_graphics("figure-copies/fig-stunt-3-prev-overall_region--allage-primary.png")
```
## Age-specific severe stunting incidence
```{r inc, echo = FALSE}
include_graphics(paste0(fig_dir, "/stunting/fig-stunt-3-inc-overall_region--allage-primary.png"))
#include_graphics("figure-copies/fig-stunt-3-inc-overall_region--allage-primary.png")
```