hmisc_h | R Documentation |
These are horizontal versions of the wrappers around functions from
Hmisc designed to make them easier to use with
stat_summaryh
. The corresponding vertical versions are
hmisc()
. See the Hmisc documentation for more details:
smean.cl.boot
smean.cl.normal
smean.sdl
smedian.hilow
mean_cl_boot_h(x, ...)
mean_cl_normal_h(x, ...)
mean_sdl_h(x, ...)
median_hilow_h(x, ...)
x |
a numeric vector |
... |
other arguments passed on to the respective Hmisc function. |
A data frame with columns x
, xmin
, and xmax
.
if (requireNamespace("Hmisc")) {
x <- rnorm(100)
mean_cl_boot_h(x)
mean_cl_normal_h(x)
mean_sdl_h(x)
median_hilow_h(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.