이미 모델 세트 만들어 I 모델을 평가할 수있다 적합하므로 모델 자체가 작동합니다. 또한 데이터는 모델에 적합하다 (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 값)이 내 modellist이
입니다 :
"predatie"이진 변수 인 (예 또는 아니오)하고 나머지는 모두 연속 변수 (gapfraction, plantgrootte, olsen_P & piek1) 사전에감사와
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)
)
! 개발 버전을 설치
'sem.coefs'를 사용하여 경로 계수를 추출하십시오! – jslefche