--
You received this message because you are subscribed to the Google Groups "lavaan" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lavaan+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/c65de649-4dbd-4412-8f2d-ec5d598ec2a3o%40googlegroups.com.
Hugo Harada Adaptativa Inteligência Educacional S.A. | |
Em sex., 12 de jun. de 2020 às 08:48, VSan <VSan...@gmail.com> escreveu:
Hello,--I am new to R and have just installed R-studio. When I tried to load the lavaan package, below (1) is the message I get, but when I check whether it has loaded, below (2) is the error I get. Any help will be greatly appreciated. Thanks.(1) The downloaded binary packages are in/var/folders/dl/q0r8wxzx6m7d1bdtdh0b4ydm0000gp/T//RtmpK5l9NX/downloaded_packages(2) Error: package or namespace load failed for ‘lavaan’ in get(method, envir = home):lazy-load database '/Library/Frameworks/R.framework/Versions/4.0/Resources/library/lavaan/R/lavaan.rdb' is corruptIn addition: Warning messages:1: In .registerS3method(fin[i, 1], fin[i, 2], fin[i, 3], fin[i, 4], :restarting interrupted promise evaluation2: In get(method, envir = home) :restarting interrupted promise evaluation3: In get(method, envir = home) : internal error -3 in R_decompress1
You received this message because you are subscribed to the Google Groups "lavaan" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lav...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/c65de649-4dbd-4412-8f2d-ec5d598ec2a3o%40googlegroups.com.
library(lavaan)
# specify the model
HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6speed =~ x7 + x8 + x9 '
# fit the model
fit <- cfa(HS.model, data=HolzingerSwineford1939)
# display summary output
summary(fit, fit.measures=TRUE)