Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
The TPSPLINE Procedure

ODS Tables Produced by PROC TPSPLINE

PROC TPSPLINE assigns a name to each table it creates. You can use these names to reference the table when using the Output Delivery System (ODS) to select tables and create output data sets. These names are listed in the following table. For more information on ODS, see Chapter 15, "Using the Output Delivery System."

Table 64.1: ODS Tables Produced by PROC TPSPLINE
ODS Table Name Description Statement Option
DataSummaryData summaryPROCdefault
FitSummaryFit parameters and fit summaryPROCdefault
FitStatisticsModel fit statisticsPROCdefault
GCVFunctionGCV tableMODELLOGNLAMBDA, 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
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.