R/myci.R

Defines functions myci

Documented in myci

#' Title
#'
#' @param x A sample
#'
#' @return A 95% confidence interval for the mean of the sample
#' @export
#'
#' @examples myci(c(1:10))
myci=function(x){
  return(t.test(x)$conf)
}
wkoury/math4753-koury-R-package documentation built on Jan. 1, 2021, 12:49 p.m.