SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
momi
Obsidian | Level 7

Hi,

 

Is there any way that I can create an output dataset that contains an adjusted R square (adjrsq) in Proc surveyreg?

 

I can do this in proc reg by setting,

 

proc reg data = dataset
outest = test_outputdataset
adjrsq

;

 

model outcome = adjusters / stb ;

;

run;

 

A test_outputdataset contains a value of adjusted R square.   Can I so the same thing for Proc Surveyreg?

 

Thank you,

 

2 REPLIES 2
SteveDenham
Jade | Level 19

Include ADJRSQ as an option on your model statement, and then use ODS to get the fit statistics into a dataset.

 

ods output fitstatistics=fitstatistics;

proc surveyreg data=yourdata;

...

model depvar=indepvar1 indepvar2 <etc.>/ADJRSQ;

run;

 

This ought to give you what you need.

 

Steve Denham

ballardw
Super User

You can use ODS OUTPUT tablename= yourdatasetname; to create data sets from values that appear in output tables.

 

The procedure documentation will show the various table names available or use ODS TRACE.

The likely table would be FitStatistics but you would need to have ADJRSQ on the model statement.

 

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2047 views
  • 2 likes
  • 3 in conversation