Last chance! 50% off unlimited learning
Sale ends in
BIC(object, ...)
data.frame
with rows corresponding to the objects and columns
representing the number of parameters in the model (df
) and the
BIC.logLik
, AIC
, BIC.logLik
data(Orthodont)
fm1 <- lm(distance ~ age, data = Orthodont) # no random effects
BIC(fm1)fm2 <- lme(distance ~ age, data = Orthodont) # random is ~age
BIC(fm1, fm2)
Run the code above in your browser using DataLab