R/print.summary.StratSel.R

print.summary.StratSel <-
function(x, ...){
    print(x$call)
    cat("\n")
    printCoefmat(x$coefficients, P.values=TRUE, has.Pvalue=TRUE,  ...)
    writeLines("---")
	writeLines(paste("Number of Observations:", x$df, "-- Number of Iterations:", x$nits, sep=" "))
	writeLines(paste("AIC:", x$AIC, "-- AIC (small sample correction):", x$AIC.c, sep=" "))
	writeLines(paste("Log-Likelihood:", round(x$ll,3), "-- Convergence code:", x$conv, sep=" "))
    cat("\n")
 }

Try the StratSel package in your browser

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

StratSel documentation built on May 2, 2019, 11:11 a.m.