Chapter Contents |
Previous |
Next |
The PHREG Procedure |
Although left truncation can be accommodated in PROC PHREG through the counting process style of input, such specification does not allow survival estimates to be output. Using the ENTRY= option in PROC PHREG for left truncation does not suppress computing the survival estimates. Consider the following specifications of PROC PHREG:
proc phreg data=one; model t2*dead(0)=x1-x10/entry=t1; baseline out=out1 survival=s; title 'The ENTRY= option is Specified'; run; proc phreg data=one; model (t1,t2)*dead(0)=x1-x10; baseline out=out2 survival=s; title 'Counting Process Style of Input'; run;
Both specifications yield the same model estimates; however, the baseline data set out2 is empty, since survivor function estimates are not computed when you use the counting process style of input.
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.