Hello all:
I'm trying to run the procedure LIFETEST but I'm getting an error. Here's my code:
proc lifetest data=here.hw1;
intervals=(12,24,36,48,60,72);
method=life;
time=t*(1);
strata by race;
run;
Here's the SAS log:
78 proc lifetest data=here.hw1;
ERROR: Procedure LIFETEST not found.
79 intervals=(12,24,36,48,60,72);
80 method=life;
81 time=t*(1);
82 strata by race;
83 run;
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE LIFETEST used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds
Here's my version of SAS:
SAS 9.1.3 Service Pack 3
XP_PRO platform
Nothing I can find indicates I would be missing the lifetest procedure. This is a version of SAS obtained through my university. Please let me know what might be the issue.
Thanks in advance!
... View more