Data Prep Sheet

Action Principale : copulaViewStore

Preparation Code

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