Fiche Data Prep

Action Principale : alJoin

Code de préparation

Script en attente de validation
Copié !
1PROC CAS; SESSION casauto;
2 
3DATA casuser.raw_data;
4 DO i = 1 to 10;
5 x1 = rand('UNIFORM');
6 x2 = rand('UNIFORM');
7 OUTPUT;
8 END;
9RUN;
10 
11DATA casuser.annotations;
12 DO i = 1, 3, 5, 7, 9;
13 label = ifn(rand('UNIFORM') > 0.5, 'A', 'B');
14 OUTPUT;
15 END;
16RUN;
17 
18QUIT;
Actions utilisant ce script
  • activeLearn alJoin En cours
  • Aucune autre action n'utilise ce script exact.