R/logLik.eRm.r

Defines functions logLik.eRm

Documented in logLik.eRm

logLik.eRm <- function(object,...)
{
#object of class eRm
  # val <- object$loglik
  # attr(val, "df") <- object$npar
  val <- list(loglik = object$loglik, df =  object$npar) # rh 26-03-2010
  class(val) <- "logLik.eRm"
  val
}

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.