R/summary.threshold.r

Defines functions summary.threshold

Documented in summary.threshold

summary.threshold <- function(object,...)
{
#object of class "threshold"

  coef.table <- cbind(round(object$threshpar,5),round(object$se.thresh,5),round(confint(object),5))
  dimnames(coef.table) <- list(names(object$threshpar),c("Estimate","Std. Err.",colnames(confint(object))))
  cat("\n")
  print(coef.table)
  cat("\n")
}

Try the eRm package in your browser

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

eRm documentation built on Sept. 28, 2023, 9:07 a.m.