私はR(Lefcheck - https://cran.r-project.org/web/packages/piecewiseSEM/vignettes/piecewiseSEM.html)にpiecewiseSEMパッケージを使用して区分構造方程式モデルを構築しています抽出パス係数
私はすでにモデルセットを作成し、私はモデルを評価することができフィットするので、モデルそのものが機能します。また、データはモデルに適合する(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値は離れています)
これは私のモデリストです:
"predatie" バイナリ変数であること(yesまたはno)と残りすべての連続変数(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)
)
!
library(devtools) install_github("jslefche/[email protected]")
がpsem
でlist
を交換し、coefs
またはsummary
機能を実行します。
パス係数を抽出するのに 'sem.coefs'を使用してください! – jslefche