When I do any data analysis through R, I'm getting the return of whole numbers only. Is there any way to receive a more exact estimation such as 2 decimal places.
For example:
survfit(Surv(data$TTE, data$event) ~ 1, data = data)
returns
Call: survfit(formula = Surv(data$TTE, data$event) ~ 1, data = data)
n events median 0.95LCL 0.95UCL
[1,] 116 92 7 5 9
Whereas the median in other processing software is actually 7.1 months (95%CI 4.9 - 9.3). Is there a way to get this to return in a more exact way using my code?