You can create a scoring
output table using the
Create Output Table window that you open from the Project Tree. The
Create
Output Table window provides a graphical interface for
you to select the variables that you want to include in your scoring
output table. SAS Model Manager registers the table in the SAS Metadata
Repository and then you can view the table in the Data Sources perspective
of SAS Model Manager. For information,
see Create Scoring Output Tables.
You can also create
a scoring task output table using a DATA step to keep or drop variables
from the train table.
The input variables
that you might want to keep in the output data set are key variables
for the table. Key variables contain unique information that distinguishes
one row from another. An example would be a customer ID number.
This DATA step keeps
the input variable CLNO, the client number, which is the key variable,
and the output variable SCORE:
data hmeqtabl.scoreout;
length clno 8 score 8;
run;