Fiche Data Prep

Action Principale : copulaViewStore

Code de préparation

Script en attente de validation
Copié !
1 
2DATA mycas.simdata;
3call streaminit(123);
4DO i = 1 to 1000;
5u1 = rand('UNIFORM');
6u2 = rand('UNIFORM');
7x1 = quantile('NORMAL', u1);
8x2 = quantile('NORMAL', u2);
9OUTPUT;
10END;
11 
12RUN;
13 
14PROC CAS;
15copula.copulaFit / TABLE={name='simdata'}, var={'x1', 'x2'}, define={copula='t', df=5, marginals={'NORMAL', 'NORMAL'}}, store={name='copulastore', replace=true};
16 
17RUN;
18 
Actions utilisant ce script
  • copula copulaViewStore En cours
  • Aucune autre action n'utilise ce script exact.