R/meansd.R

Defines functions meansd

Documented in meansd

#'
#' This function calculates both mean and sd.
#' @keywords meansd
#' @export
#' @examples
#' meansd()
 
meansd<-function(x){ 
 reshape::funstofun(mean, sd)(x)
}
krishnad2/desstat documentation built on May 20, 2019, 1:25 p.m.