To use the SAS Code
node to create a list of best potential donors:
-
Select the Utility tab
on the Toolbar.
-
Select the SAS
Code node icon. Drag the node into the Diagram Workspace.
-
Connect the Score node
to the SAS Code node.
-
Select the SAS
Code node. In the Properties Panel, scroll down to view
the Train properties, and click on the ellipses
that represent the value of Code Editor.
The Training Code — Code Node window
appears.
-
In the Training
Code box, enter the following SAS code, where <LIBREF> is
the libref of the diagram:
proc sort data= <LIBREF>.Score_SCORE out= bestlist;
by descending ep_target_b;
run;
proc print data= bestlist;
var control_number ep_target_b;
run;
Tip
To determine the libref of
the diagram, select the diagram in the Project Panel and then view
the diagram ID in the Properties Panel. The diagram ID is the libref
that you should use.
-
On the File menu,
select Save All. Then, close the window.
-
In the Diagram Workspace,
right-click the SAS Code node, and select Run from
the resulting menu. Click Yes in the Confirmation window
that opens. In the Run Status window, click Results.
The Results window appears in which you can
view the scored list of potential donors sorted by expected profit.
-
Close the Results window.