swh:1:snp:9492dda1ea1583c5fa5285d6ddcd2ab9f57129b4
Raw File
Tip revision: f1b70643dbff13c6cf921e801f1cdd3e2f1a5641 authored by Patrick Mair on 11 November 2012, 00:00:00 UTC
version 0.15-1
Tip revision: f1b7064
summary.threshold.r
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")
}
back to top