You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The confidence interval calculated over the Kaplan-Meier curves estimated from simulated data is currently fixed at 90% (0.05 and 0.95 quantiles of KM curves from simulated data). From the vpc_tte function code starting on line 211:
This can also lead to confusion where a user might think that specifying ci = c(0.025, 0.975) in the arguments would lead to a different CI, but if in fact does not. In fact, the ci argument in this function applies to the Kaplan-Meier estimate from the observed data, which one only observes when show = list(obs_ci = TRUE) is specified.
Would it be possible to pass a new argument like ci_sim as a vector to the summarizing function of the sim_km object such that the user can specify any CI of choice? Thanks for considering!
The text was updated successfully, but these errors were encountered:
The confidence interval calculated over the Kaplan-Meier curves estimated from simulated data is currently fixed at 90% (0.05 and 0.95 quantiles of KM curves from simulated data). From the
vpc_tte
function code starting on line 211:This can also lead to confusion where a user might think that specifying
ci = c(0.025, 0.975)
in the arguments would lead to a different CI, but if in fact does not. In fact, theci
argument in this function applies to the Kaplan-Meier estimate from the observed data, which one only observes whenshow = list(obs_ci = TRUE)
is specified.Would it be possible to pass a new argument like
ci_sim
as a vector to the summarizing function of thesim_km
object such that the user can specify any CI of choice? Thanks for considering!The text was updated successfully, but these errors were encountered: