hmisc {ggplot2} | R Documentation |
These are wrappers around functions from Hmisc designed to make them
easier to use with stat_summary()
. See the Hmisc documentation
for more details:
mean_cl_boot(x, ...)
mean_cl_normal(x, ...)
mean_sdl(x, ...)
median_hilow(x, ...)
x |
a numeric vector |
... |
other arguments passed on to the respective Hmisc function. |
A data frame with columns y
, ymin
, and ymax
.
if (requireNamespace("Hmisc", quietly = TRUE)) {
x <- rnorm(100)
mean_cl_boot(x)
mean_cl_normal(x)
mean_sdl(x)
median_hilow(x)
}