data ex7_1;
input group $ n;
do i=1 to n;
input t status@@;
output;
end;
cards;
small 14
14 1 19 1 26 1 28 1 29 1 32 1 36 1 40 1 42 1
44 0 45 1 53 0 54 1 59 0
large 16
6 1 7 1 9 1 10 1 11 1 12 1 13 1 20 1
23 1
25 1 27 1 30 1 34 1 37 1 43 1 50 1
;
ods html;
ods graphics on;
proc lifetest method=pl
plots=(s);
time t*status(0);
strata group;
symbol1 line=1 color=green;
symbol2 line=1 color=blue;
run;
求助,我说sas是9.1.3,为什么跑这段代码的时候sas自动就退出了啊???
还有就是想问一下,这里的symbol1和symol2怎么用9.3跑不出来??