R/print.LR.R

Defines functions `print.LR`

`print.LR` <-
function(x,...)
{
#print method for object of class "LR" (LRtest)
  cat("\n")
  cat("Andersen LR-test: \n")
  cat("LR-value:", round(x$LR,3),"\n")
  cat("Chi-square df:",x$df,"\n")
  cat("p-value: ",round(x$pvalue,3),"\n")
  cat("\n")
}

Try the eRm package in your browser

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

eRm documentation built on March 19, 2024, 3:06 a.m.