'confidence interval not appearing in survfit summary

I am working on a survival analysis of multiple statuses (0 - 6) where zero means minor event and 6 means major event. Time from intervention to event onset was calculated as days. I was able to have the total events of each status with estimated days using following code:

fit <- survfit(Surv(Time, Status) ~ 0, data=dfnd, conf.type="plain", conf.int=0.95)
summary(fit, times = c(1,30,60,90*(1:10)))

However, the result is not showing confidence intervals, it only shows each status probability as follows:

How can I get a summary that contains confidence interval and st.error?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source