p FUN的值=" coef"在bootstrapLavaan中

时间:2016-05-17 09:08:36

标签: r bootstrapping p-value coefficients r-lavaan

假设我有一个lavaan模型:

fit='
    #Structural model
    var1=~item1+item2+item3
    var2=~item1+item2+item3
    var3=~item1+item2+item3

    #Path model
    var3~var2
    var2~var1
    '
然后我用sem来计算:

    example=lavaan::sem(fit, data)

现在我想将bootstrapLavaan应用于:

    boot.example=bootstrapLavaan(example, FUN="coef")

当我使用...分析对象时

    summary(boot.example)

...我只给出系数的值,例如均值,中位数,最小值,最大值等。有没有办法得到这些系数的 p 值?

0 个答案:

没有答案