gpt4 book ai didi

r - r中的路径图

转载 作者:行者123 更新时间:2023-12-05 06:49:22 25 4
gpt4 key购买 nike

我正在尝试在 R 中绘制结构方程模型 (SEM) 的路径图。我能够使用 semPlot::semPaths() 绘制它。输出类似于 enter image description here SEM 是使用 lavaan 包建模的。

我想要一个类似于 enter image description here 的情节.具有估计值和 p 值。谁能帮帮我?

最佳答案

我的建议是 lavaanPlot(在 author's personal website 中查看更多内容):

library(lavaan)
library(lavaanPlot)
# path model
model <- 'mpg ~ cyl + disp + hp
qsec ~ disp + hp + wt'

fit1 <- sem(model, data = mtcars)
labels1 <- list(mpg = "Miles Per Gallon", cyl = "Cylinders", disp = "Displacement", hp = "Horsepower", qsec = "Speed", wt = "Weight") #define labels
lavaanPlot(model = fit1, labels = labels1, coefs = TRUE, stand = TRUE, sig = 0.05) #standardized regression paths, showing only paths with p<= .05

enter image description here

关于r - r中的路径图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66610253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com