Hello
I am testing a structurual equation model using PROC CALIS (SAS 9.3).
I am using Full Information Maximum Likelihood with 373 complete records, and specify the relationships using the PATH statement.
I was wondering if anyone knows a way to obtain 95% confidence intervals for the standardized beta coefficients ?
Thank you for the advice
Regards
Add the following statement in between your PROC CALIS;
ods output pathliststd = pathliststd;
The table Pathliststd contains the 95% confidence intervals for the standardized beta coefficients.
Hi,
I'm having the same problem and the sugested solution does not work. I was wondering if you can help.
here is my code (I'm using pathlist as I'm not interested in the standerdized estimates):
proc calis data=data1 NOSTAND method=fiml ;
path V1<- V2 V3 V4; ods output PATHList = PATHList;
run;
proc print data= PATHList ; run;
THANKS
Not sure why exactly does not work. But do you receive any error message in the log with the METHOD = FIML option on the CALIS statement?
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.