R/print.gof.R

Defines functions print.gof

Documented in print.gof

print.gof <- function(x, ...)
{
  #print method for objects of class "gof" (from gofIRT.ppar)
  cdv <- round(x$test.table[1,], 3)
  cat("\nGoodness-of-Fit Results:")
  cat("\nCollapsed Deviance = ", cdv[1], " (df = ", cdv[2], ", p-value = ", cdv[3], ")", sep ="")
  cat("\nPearson R2:", round(x$R2$R2.P, 3))
  cat("\nArea Under ROC:", round(x$AUC, 3))
  cat("\n\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.