All pastes #2045190 Raw Edit

Andrew

public text v1 · immutable
#2045190 ·published 2011-04-11 18:44 UTC
rendered paste body

data Males;
   keep Freq Years Censored;
   retain Years -.5;
   input fail withdraw @@;
   Years + 1;
   Censored=0;
   Freq=fail;
   output;
   Censored=1;
   Freq=withdraw;
   output;
   datalines;
456   0 226  39 152  22 171  23 135 24 125 107
 83 133  74 102  51  68  42  64  43 45  34  53
 18  33   9  27   6  23   0  30
;

options orientation=landscape;
ods pdf file="C:/temp/males.pdf";

proc lifetest data=Males  method=lt intervals=(0 to 15 by 1)
				notable
				MAXTIME=2
              plots=(s);
   time Years*Censored(1);
   freq Freq;
run;

ods pdf close;