R无法用cfa()打开文件

时间:2015-06-08 20:45:58

标签: r rstudio

立即尝试完成验证性因素分析。一直在阅读the tutorial,但我无法克服fit命令后出现的以下错误:

Error in file(file, "r") : cannot open the connection
In addition: Warning message:
In file(file, "r") : cannot open file ' independence =~ x1 + x2 + x3 + x4
          therapies =~ x5': No such file or directory

我正在使用的代码:

df <- data.frame(df.raw)
carl.model <- ' independence =~ x1 + x2 + x3 + x4
                therapies =~ x5 + x6'

fit <- cfa(carl.model, data=df)

summary(fit, fit.measures = TRUE)

2 个答案:

答案 0 :(得分:0)

重新启动和清除工作区解决了这个问题。我没有改变上面的代码,现在运行干净。

答案 1 :(得分:0)

这是因为您拥有另一个具有相同功能的库。 指定您正在谈论lavaan

lavaan :: cfa(carl.model,data = df)