Data Prep Sheet

Action Principale : cdm

Preparation Code

Script awaiting validation
Copied!
1PROC CAS;
2DATA mycas.sevdeffits;
3 LENGTH model $20;
4 INFILE DATALINES truncover;
5 INPUT model$ @@;
6 DO while(model ne '');
7 INPUT scale shape @@;
8 OUTPUT;
9 INPUT model$ @@;
10 END;
11 DATALINES;
12burr 1000 2
13;
14RUN;
15DATA mycas.countest;
16 LENGTH _distname_ $20 _var_ $32;
17 INFILE DATALINES truncover;
18 INPUT _distname_$ _var_$ estimate stderr;
19 DATALINES;
20poisson _intercept_ 1.386294 0.05
21;
22RUN;
23QUIT;
Actions using this script
  • cdm cdm En cours
  • No other action uses this exact script.