Data Prep Sheet

Action Principale : exploreData

Preparation Code

Script awaiting validation
Copied!
1 
2DATA mycas.sample_data;
3call streaminit(123);
4DO i = 1 to 1000;
5x1 = rand('Normal', 50, 10);
6x2 = rand('Uniform');
7IF rand('Uniform') > 0.5 THEN cat1 = 'A';
8ELSE cat1 = 'B';
9IF x1 + 10*x2 > 55 THEN target = 1;
10ELSE target = 0;
11OUTPUT;
12END;
13 
14RUN;
15 
Actions using this script
  • dataSciencePilot exploreData En cours
  • No other action uses this exact script.