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)
}

Try the Publish package in your browser

Any scripts or data that you put into this service are public.

Publish documentation built on Jan. 18, 2023, 1:08 a.m.