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)
Run the code above in your browser using DataLab