R/print.summary.threshpt.R

Defines functions print.summary.threshpt

Documented in print.summary.threshpt

print.summary.threshpt <-
function(x,...)
{
	thresh=as.character(x$threshold)
	cat("Call:\n")
	print(x$call)
	cat("\nFormula:\n")
	print(x$formula)
	cat("\nCoefficients:\n")
	printCoefmat(x$coefficients, p.value=TRUE, has.Pvalue=TRUE)
	cat("\n")
	cat("Optimum threshold: ")
	cat(thresh) 
	cat("\nDeviance of the model with optimum threshold: ")
	cat(round(x$deviance,3))
	cat("\n")
}

Try the HEAT package in your browser

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

HEAT documentation built on May 29, 2017, 10:52 a.m.