BookmarkSubscribeRSS Feed
anniewong
Calcite | Level 5

How can I save the output data from a SAS code step so that it can be used as input in the next node 

I can save it to a table, but what I want is to continue using the new dataset as a input in the next node for machine learning.

3 REPLIES 3
anniewong
Calcite | Level 5

Thank you for ur reply 

I tried it in the SAS Code under Build Models

data CASUSER.OVERSAMPLED;
set &dm_output_data;
ods output OVERSAMPLED;
ods output table=OVERSAMPLED;
run;
However, the "output data table" is not being updated in the new dataset , please advise.
image.png