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
.
#> y ymin ymax #> 1 0.047621 -0.1197144 0.2093086mean_cl_normal(x)#> y ymin ymax #> 1 0.047621 -0.1183826 0.2136246mean_sdl(x)#> y ymin ymax #> 1 0.047621 -1.62562 1.720862median_hilow(x)#> y ymin ymax #> 1 0.02876303 -1.528718 1.462443