% Generated by roxygen2: do not edit by hand % Please edit documentation in R/stat-summary.r \name{mean_se} \alias{mean_se} \title{Calculate mean and standard error of the mean} \usage{ mean_se(x, mult = 1) } \arguments{ \item{x}{numeric vector.} \item{mult}{number of multiples of standard error.} } \value{ A data frame with three columns: \describe{ \item{\code{y}}{ The mean.} \item{\code{ymin}}{ The mean minus the multiples of the standard error.} \item{\code{ymax}}{ The mean plus the multiples of the standard error.} } } \description{ For use with \code{\link[=stat_summary]{stat_summary()}} } \examples{ x <- rnorm(100) mean_se(x) }