I have been using
to conduct a multi-indicator latent class analysis. The best fitting model has two classes. My code for it is basically:
My question is: After running the last line above, what do the 95% CIs in the ouput indicate? For 7 of the 13 variables, the CIs overlap. Does this mean those indicators are not useful in distinguishing the classes? If so, what test(s) is STATA doing to determine this? Is there another command I could run to produce a p-value that would show up in this table?
Code:
gsem
Code:
gsem (x1 x2 x3 x4 x5 <-, regress), (x6 <-, ologit) (x7 x8 x9 x10 x11 x12 x13 <-, logit), lclass(c 2) estat lcprob estat lcmean
Comment