When extracting an estimate of the median time to failure using a Kaplan Meier estimator (in failure format), I am getting 95% confidence interval outputs that are missing an upper bound.
To obtain this median, I am using the basic survival code:
For the following reasons, I cannot determine why the upper limit of the 95% confidence interval would be missing:
Would anyone be able to explain what might be causing the missing upper bound?
To obtain this median, I am using the basic survival code:
Code:
stset time, id(participantid) failure (fail == 1) origin(min) scale(30.437) stci
For the following reasons, I cannot determine why the upper limit of the 95% confidence interval would be missing:
- The analysis is limited to participants who experience the failure; there is no censoring and median failure must be reached.
- The time at risk in the analysis extends far above the median survival estimate which should leave room in for an upper confidence interval bound.
Would anyone be able to explain what might be causing the missing upper bound?
Comment