Data Prep Sheet

Action Principale : copulaViewStore

Preparation Code

Script awaiting validation
Copied!
1DATA simdata;
2 call streaminit(123);
3 DO i = 1 to 1000;
4 u = rand('uniform');
5 v = rand('uniform');
6 OUTPUT;
7 END;
8RUN;
9 
10PROC CAS;
11 load DATA=simdata out={name='simdata', caslib='casuser', replace=true};
12 copula.copulaFit /
13 TABLE={name='simdata'},
14 copula={type='clayton'},
15 var={'u', 'v'},
16 store={name='myCopulaStore', caslib='casuser', replace=true};
17RUN;
Actions using this script
  • copula copulaViewStore En cours
  • No other action uses this exact script.