R/AICc.R

Defines functions AICc

Documented in AICc

AICc <- function(loglik, K, N){
  return(-2 * loglik + 2 * K * (N / ( N - K - 1)))
}

Try the evobiR package in your browser

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

evobiR documentation built on May 2, 2019, 5:40 a.m.