swh:1:snp:9492dda1ea1583c5fa5285d6ddcd2ab9f57129b4
Raw File
Tip revision: d08460987ea51cdf020292a03d490b7d80b8e579 authored by Patrick Mair on 24 October 2007, 00:00:00 UTC
version 0.9-5
Tip revision: d084609
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