BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
NickAnt
Fluorite | Level 6

Hi all,

 

I have an issue with the ODS OUTPUT when I use PROC REG. Here is the code I use:

 

proc reg data=have TABLEOUT rsquare plots=none outest=want1 edf;
m1: model y = x  /r  ADJRSQ;

ods output r=want2;
quit;

 

I get the messate:

"Output 'r' was not created. Make sure that the output object name, label, or
path is spelled correctly. Also, verify that the appropriate procedure options are used
to produce the requested output object. For example, verify that the NOPRINT option is
not used."

 

I get the same message when I use "residual" instead of "r". Is there a way to get it to work or somehow export the residuals in a dataset?

 

Thank you,

 

Nick

 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Residuals are obtained with the statement

 

output out=want2 r=resid;

PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

Residuals are obtained with the statement

 

output out=want2 r=resid;

PG
NickAnt
Fluorite | Level 6

Thank you very much!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 2288 views
  • 1 like
  • 2 in conversation