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
.
x <- rnorm(100) mean_cl_boot(x)#> y ymin ymax #> 1 0.07278526 -0.1279372 0.2609592mean_cl_normal(x)#> y ymin ymax #> 1 0.07278526 -0.1325043 0.2780748mean_sdl(x)#> y ymin ymax #> 1 0.07278526 -1.99644 2.14201median_hilow(x)#> y ymin ymax #> 1 0.1712141 -2.045659 1.670362