Data Prep Sheet

Action Principale : copyModelExternal

Preparation Code

Script awaiting validation
Copied!
1PROC CAS;
2LOADACTIONSET 'decisionTree';
3 
4DATA mycas.iris;
5 SET sashelp.iris;
6RUN;
7 
8decisionTree.dtreeTrain RESULT=r /
9 TABLE={name='iris'},
10 target='Species',
11 inputs={{name='SepalLength'}, {name='SepalWidth'}, {name='PetalLength'}, {name='PetalWidth'}},
12 nominals={'Species'},
13 saveState={name='myModelTable', replace=true};
14RUN;
15QUIT;
Actions using this script
  • modelPublishing copyModelExternal En cours
  • No other action uses this exact script.