zcurve {epikit} | R Documentation |
Create a curve comparing observed Z-scores to the WHO standard.
Description
Create a curve comparing observed Z-scores to the WHO standard.
Usage
zcurve(x, zscore)
Arguments
x |
a data frame |
zscore |
bare name of a numeric vector containing computed zscores |
Value
a ggplot2 object that is customisable via the ggplot2 package.
Examples
library("ggplot2")
set.seed(9)
dat <- data.frame(observed = rnorm(204) + runif(1),
skewed = rnorm(204) + runif(1, 0.5)
) # slightly skewed
zcurve(dat, observed) +
labs(title = "Weight-for-Height Z-scores") +
theme_classic()
zcurve(dat, skewed) +
labs(title = "Weight-for-Height Z-scores") +
theme_classic()
# Including different groups to facet
dat <- data.frame(
observed = c(rnorm(204) + runif(1), rnorm(204) + runif(1, 0.5)),
groups = rep(c("A", "B"), each = 204),
treat = sample(c('up', 'down'), 408, replace = TRUE)
)
zcurve(dat, observed) +
facet_grid(treat~groups)
[Package epikit version 0.1.6 Index]