这绝对是奇特的。作为第一个念头:做在那里模型具有不同固定效应模型的结构比较时(m2
以及m3
例如),这是最好的我们中号大号以及REML
“变化”ÿ。(它将与ķ,在哪里 ķ X= 0)有趣的是它可以使用method="ML"
,这使我相信它可能不是bug。似乎几乎强制执行“良好实践”。
话虽如此,让我们来看看幕后花絮:
methods(AIC)
getAnywhere('AIC.default')
A single object matching ‘AIC.default’ was found
It was found in the following places
registered S3 method for AIC from namespace stats
namespace:stats with value
function (object, ..., k = 2)
{
ll <- if ("stats4" %in% loadedNamespaces())
stats4:::logLik
else logLik
if (!missing(...)) {
lls <- lapply(list(object, ...), ll)
vals <- sapply(lls, function(el) {
no <- attr(el, "nobs") #THIS IS THE ISSUE!
c(as.numeric(el), attr(el, "df"), if (is.null(no)) NA_integer_ else no)
})
val <- data.frame(df = vals[2L, ], ll = vals[1L, ])
nos <- na.omit(vals[3L, ])
if (length(nos) && any(nos != nos[1L]))
warning("models are not all fitted to the same number of observations")
val <- data.frame(df = val$df, AIC = -2 * val$ll + k * val$df)
Call <- match.call()
Call$k <- NULL
row.names(val) <- as.character(Call[-1L])
val
}
else {
lls <- ll(object)
-2 * as.numeric(lls) + k * attr(lls, "df")
}
}
在您的情况下,您可以看到:
lls <- lapply(list(m2,m3), stats4::logLik)
attr(lls[[1]], "nobs")
#[1] 500
attr(lls[[2]], "nobs")
#[1] 498
显然logLik
正在做某事(也许?)出乎意料...?不,不是真的,如果你看的文件logLik
,?logLik
你会看到它明确规定:
There may be other attributes depending on the method used: see
the appropriate documentation. One that is used by several
methods is ‘"nobs"’, the number of observations used in estimation
(after the restrictions if ‘REML = TRUE’)
这使我们回到了原来的观点,您应该使用ML
。
用CS中的一句俗语说:“这不是错误;它是(真正的)功能!”
编辑:(只是为了解决您的评论:)假设您lmer
这次使用其他模型:
m3lmer <- lmer(y ~ x + 1|cat)
然后执行以下操作:
lls <- lapply(list(m2,m3, m3lmer), stats4::logLik)
attr(lls[[3]], "nobs")
#[1] 500
attr(lls[[2]], "nobs")
#[1] 498
看起来两者之间显然存在差异,但实际上并非Gavin解释。仅说明显而易见的内容:
attr( logLik(lme(y ~ x, random = ~ 1|cat, na.action = na.omit, method="ML")),
"nobs")
#[1] 500
我认为,从方法论上讲,这是有充分理由的。lme
确实会为您理解LME回归,而lmer
在进行模型比较时,它会立即返回到ML结果。我认为有在这个问题上没有错误lme
和lmer
每个包的背后只是不同的理由。
另请参阅加文·辛普森(Gavin Simposon)的评论,它对发生的情况进行了更深入的解释anova()
(实际上也发生了AIC
)