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!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1546 views
  • 1 like
  • 2 in conversation