|
Chapter Contents |
Previous |
Next |
| The REG Procedure |
This example uses model fit summary statistics from the OUTEST= data set to create a plot for a model selection analysis. Global graphics statements and PLOT statement options are used to control the appearance of the plot.
goptions ctitle=black htitle=3.5pct ftitle=swiss
ctext =magenta htext =3.0pct ftext =swiss
cback =ligr border;
symbol1 v=circle c=red h=1 w=2;
title1 'Selection=Rsquare';
title2 'plot Rsquare versus the number of parameters P in '
'each model';
proc reg data=fitness;
model Oxygen=Age Weight RunTime RunPulse RestPulse MaxPulse
/ selection=rsquare noprint;
plot rsq.*np.
/ aic bic edf gmsep jp np pc sbc sp
haxis=2 to 7 by 1
caxis=red cframe=white ctext=blue
modellab='Full Model' modelht=2.4
statht=2.4;
run;
In the GOPTIONS statement,
Output 50.6.1: Controlling Plot Appearance and Plotting OUTEST= Statistics
|
In Output 50.6.1, note the following:
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.