PROC GAM <options>;
The PROC GAM statement invokes the procedure. Table 41.1 summarizes the options available in the PROC GAM statement.
Table 41.1: PROC GAM Statement Options
Option |
Description |
---|---|
Specifies the input SAS data set |
|
Reverses the sort order of all CLASS variables |
|
Specifies the sort order for CLASS variables |
|
Controls plots produced through ODS Graphics |
You can specify the following options.
ODS Graphics must be enabled before plots can be requested. For example:
ods graphics on; proc gam data=test plots(unpack)=components(commonaxes clm); model z=spline(x) spline(y); run; ods graphics off;
For more information about enabling and disabling ODS Graphics, see the section Enabling and Disabling ODS Graphics in Chapter 21: Statistical Graphics Using ODS.
With ODS Graphics enabled, PROC GAM produces by default a panel of plots of partial prediction curves of smoothing components.
The global-plot-options apply to all plots generated by the GAM procedure, unless altered by a specific-plot-option.
The following listing describes the specific plots and their options.