我正在使用 R 中的 piecewiseSEM 包构建分段结构方程模型(Lefcheck - https://cran.r-project.org/web/packages/piecewiseSEM/vignettes/piecewiseSEM.html)
我已经创建了模型集,并且可以评估模型的拟合度,因此模型本身可以工作。此外,数据符合模型 (p = 0.528)。
但我没有成功提取路径系数。这是我得到的错误:Error in cbind(Xlarge, Xsmall) : number of rows of matrices must match (see arg 2)
我已经尝试过(但这不起作用):
由于警告而标准化我的数据:
Some predictor variables are on very different scales: consider rescaling
调整了我的数据(丢弃了一些 NA 值)
这是我的模特:
predatielijst = list(
lmer(plantgrootte ~ gapfraction + olsen_P + (1|plot_ID), data = d),
glmer(piek1 ~ gapfraction + olsen_P + plantgrootte + (1|plot_ID),
family = poisson, data = d),
glmer(predatie ~ piek1 + (1|plot_ID), family = binomial, data = d)
)
“predatie”是一个二元变量(是或否)和所有其余的连续变量(gapfraction、plantgrootte、olsen_P & piek1)
提前致谢!