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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2196 views
  • 0 likes
  • 3 in conversation