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

Hi Everyone,

I run the following regression and extract the results into 2 table report1 and report2.

It takes very long time and I think it is caused by the Result Viewer where SAS tries to all regression graph for each By Group.

Could you please tell me if I can add any condition to stop the Result Viewer printing and still get the report I want?

When I try the NoPRINT option, report1/2 are not created.

Thank you.

HHC

proc reg data=data6a ;

ods output ParameterEstimates=report1(drop=df);

ods output FitStatistics=report2;

by yq0 ;

model ab3_ret12 =  cbr_s;

run;

NOTE: The above message was for the following BY group:

      yq0=200101

WARNING: ODS graphics with more than 5000 points have been suppressed. Use the PLOTS(MAXPOINTS= ) option in the PROC REG

         statement to change or override the cutoff.

1 ACCEPTED SOLUTION

Accepted Solutions
hhchenfx
Rhodochrosite | Level 12

ODS GRAPHICS OFF;

proc reg data=data6a ;

ods output ParameterEstimates=report1(drop=df);

ods output FitStatistics=report2;

by yq0 ;

model ab3_ret12 =  cbr_s;

run;

View solution in original post

2 REPLIES 2
hhchenfx
Rhodochrosite | Level 12

ODS GRAPHICS OFF;

proc reg data=data6a ;

ods output ParameterEstimates=report1(drop=df);

ods output FitStatistics=report2;

by yq0 ;

model ab3_ret12 =  cbr_s;

run;

Rick_SAS
SAS Super FREQ

ods graphics off;
ods exclude all; /* all open destinations */
ods results off; /* no updates to tree view */

proc reg
   ...;
quit;

ods graphics on;
ods exclude none;
ods results on;

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
  • 924 views
  • 0 likes
  • 2 in conversation