Data Prep Sheet

Action Principale : copulaViewStore

Preparation Code

Script awaiting validation
Copied!
1/* Create a sample dataset */
2DATA mycas.sample_data;
3 DO i = 1 to 100;
4 u1 = rand('UNIFORM');
5 u2 = rand('UNIFORM');
6 OUTPUT;
7 END;
8RUN;
9 
10/* Fit a Gaussian copula and save to an item store */
11PROC CAS;
12 copula.copulaFit
13 TABLE={name='sample_data'},
14 copula='GAUSSIAN',
15 marginals={'UNIFORM', 'UNIFORM'},
16 var={'u1', 'u2'},
17 store={name='myCopulaStore', replace=true};
18RUN;
Actions using this script
  • copula copulaViewStore En cours
  • No other action uses this exact script.