R-novice here. I am running a CFA using the Lavaan package. It is giving me everything I need, except my p-value is coming up at .000 and I would like to find the exact p-value (i.e. .0000009 or whatever it might be).
I have tried to use:
format.pval(p, digits=6)
and
options(digits=10)
but neither of these changed my output.
The code I am using is:
fit<-cfa(model,data=fulldata,estimator = "WLSMV")
summary(fit,fit.measures=TRUE,standardized=TRUE)