1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
% Generated by roxygen2 (4.0.1): do not edit by hand
\name{hmisc}
\alias{hmisc}
\alias{mean_cl_boot}
\alias{mean_cl_normal}
\alias{mean_sdl}
\alias{median_hilow}
\title{Wrap up a selection of summary functions from Hmisc to make it easy to use
with \code{\link{stat_summary}}.}
\usage{
mean_cl_boot(x, ...)
mean_cl_normal(x, ...)
mean_sdl(x, ...)
median_hilow(x, ...)
}
\arguments{
\item{x}{a numeric vector}
\item{...}{other arguments passed on to the respective Hmisc function.}
}
\description{
See the Hmisc documentation for details of their options.
}
\seealso{
\code{\link[Hmisc]{smean.cl.boot}},
\code{\link[Hmisc]{smean.cl.normal}}, \code{\link[Hmisc]{smean.sdl}},
\code{\link[Hmisc]{smedian.hilow}}
}
|