Fiche Data Prep

Action Principale : ecm

Code de préparation

Script en attente de validation
Copié !
1 
2DATA casuser.copula_sim;
3call streaminit(12345);
4DO i = 1 to 5000;
5u_corp = rand('UNIFORM');
6u_retail = rand('UNIFORM');
7OUTPUT;
8END;
9 
10RUN;
11 
12DATA casuser.marg_corp;
13call streaminit(12345);
14DO i = 1 to 5000;
15_DRAWID_=1;
16_AGGSEV_ = rand('LOGNORMAL', 5, 1);
17OUTPUT;
18END;
19 
20RUN;
21 
22DATA casuser.marg_retail;
23call streaminit(67890);
24DO i = 1 to 5000;
25_DRAWID_=1;
26_AGGSEV_ = rand('GAMMA', 3);
27OUTPUT;
28END;
29 
30RUN;
31 
Actions utilisant ce script
  • ecm ecm En cours
  • Aucune autre action n'utilise ce script exact.