R/AIC.R

Defines functions AIC.maxLik

Documented in AIC.maxLik

## Akaike (and other) information criteria
AIC.maxLik <- function(object, ..., k = 2)
    -2*logLik(object) + k*nParam(object, free=TRUE)

Try the maxLik package in your browser

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

maxLik documentation built on Nov. 25, 2020, 3 a.m.