R/se.R

Defines functions se

Documented in se

# se.R
# ::rtemis::
# 2016 E.D. Gennatas www.lambdamd.org

#' Extract standard error of fit from rtemis model
#'
#' Returns mod$se.fit
#'
#' @param x An `rtMod` object
#' @return Standard error of fitted values of `mod`
#' @author E.D. Gennatas
#' @export

se <- function(x) {
  return(as.numeric(x$se.fit))
} # rtemis::se
egenn/rtemis documentation built on May 4, 2024, 7:40 p.m.