Chapter Contents |
Previous |
Next |
The TPSPLINE Procedure |
ODS Table Name | Description | Statement | Option |
DataSummary | Data summary | PROC | default |
FitSummary | Fit parameters and fit summary | PROC | default |
FitStatistics | Model fit statistics | PROC | default |
GCVFunction | GCV table | MODEL | LOGNLAMBDA, LAMBDA |
By referring to the names of such tables, you can use the ODS OUTPUT statement to place one or more of these tables in output data sets.
For example, the following statements create an output data set named FitStats containing the FitStatistics table, an output data set named DataInfo containing the DataSummary table, an output data set named ModelInfo containing the FitSummary and an output data set named GCVFunc containing the GCVFunction.
proc tpspline data=Melanoma; model Incidences=Year /LOGNLAMBDA=(-4 to 0 by 0.2); ods output FitStatistics = FitStats DataSummary = DataInfo FitSummary = ModelInfo GCVFunction = GCVFunc; run;
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.