Data Prep Sheet

Action Principale : alJoin

Preparation Code

Script awaiting validation
Copied!
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 using this script
  • activeLearn alJoin En cours
  • No other action uses this exact script.