R/ci.mean.R

Defines functions ci.mean

Documented in ci.mean

##' Compute mean values with confidence intervals
##'
##' Normal approximation 
##' @title Compute mean values with confidence intervals
##' @param x object passed to methods
##' @param ... passed to methods
##' @return a list with mean values and confidence limits
##' @export
ci.mean <- function(x,...){
  UseMethod("ci.mean",object=x)
}
tagteam/Publish documentation built on April 13, 2025, 6:22 a.m.