BookmarkSubscribeRSS Feed
smusaad
Calcite | Level 5

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

5 REPLIES 5
cici0017
SAS Employee

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.

seltonsy
Quartz | Level 8

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

 

cici0017
SAS Employee

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?

seltonsy
Quartz | Level 8
Hi,

Thanks for the reply,

I just knew that SAS 9.3 does not have it, I will upgrade to 9.4 and it should work.

Thanks

SAS Innovate 2025: Register Now

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!

What is ANOVA?

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.

Discussion stats
  • 5 replies
  • 2591 views
  • 0 likes
  • 3 in conversation