當出現錯誤時,Error in lines[[i]] : subscript out of bounds試圖編織從外部文件讀入模型的塊,然後在lavaan中適合該模型。 我創建一個.R文件模型: model <- readLines(con = textConnection('
depression =~ thoughts + pain + brain + use + suic + ta
以下中介模型來自lavaan tutorial。 下面我使用semPlot包中的semPaths打印了模型結構。但有一條路徑似乎缺失。 set.seed(1234)
X <- rnorm(100)
M <- 0.5*X + rnorm(100)
Y <- 0.7*M + rnorm(100)
Data <- data.frame(X = X, Y = Y, M = M)
model <-