Fiche Data Prep

Action Principale : copyModelExternal

Code de préparation

Script en attente de validation
Copié !
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 utilisant ce script
  • modelPublishing copyModelExternal En cours
  • Aucune autre action n'utilise ce script exact.