When running the following code I generate a huge number of tables I do not want. All I want is the graphs and regression output. NOPRINT suppresses everything so that won't work.
ods graphics on;
PROC REG DATA=SASUSER.STAT143
PLOTS(maxpoints = 30000) noprint
;
Linear_Regression_Model: MODEL C14 = FEMALE WEEKLYEARNINGS_ACC SEDUM PUBDUM Race_W RACE_B Ethnicity_H Age SEV2d SEV1D EDUC Private DEVD LEARND Mental ORTHO SEN SUBS
/ SELECTION=NONE
TOL SPEC DW Partial
;
RUN;
ods graphics off;
QUIT;
ods graphics on;
PROC REG DATA=SASUSER.STAT143
PLOTS(maxpoints = 30000) noprint
;
Linear_Regression_Model: MODEL C14 = FEMALE WEEKLYEARNINGS_ACC SEDUM PUBDUM Race_W RACE_B Ethnicity_H Age SEV2d SEV1D EDUC Private DEVD LEARND Mental ORTHO SEN SUBS
/ SELECTION=NONE
TOL SPEC DW Partial
;
RUN;
ods graphics off;
QUIT;