Questions tagged «lmer»

1
重新启动具有先前估计值的混合效应模型估计
我正在使用lmer()包lme4来估计混合效果模型。这很好用,但是现在我要对固定数量的迭代运行估算过程,然后通过指定由上一个估算过程计算出的起始值来恢复过程。 根据帮助,?lmer可以通过设置参数来实现: start-这些是新的起始值,根据帮助,可以ST从拟合模型中提取插槽中的值并使用这些值,即使用x@ST maxiter -作为命名参数提供给 control 因此,例如,假设我要lme使用iris数据来拟合一个,可以尝试一下: library(lme4) # Fit model with limited number of iterations frm <- "Sepal.Length ~ Sepal.Width | Species" x <- lmer(frm, data=iris, verbose=TRUE, control=list(maxIter=1), model=FALSE) # Capture starting values for next set of iterations start <- list(ST=x@ST) # Update model twoStep <- lmer(frm, data=iris, verbose=TRUE, …
69 r  lme4  mixed-models  lmer 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.