Description Usage Arguments Details Value Author(s) References Examples
This function allows the estimation of an optimal cut-off for medical decision making between two treatments A and B from a prognostic marker by maximizing the expected utility in a time-dependent context. Only the times-to-event of the group B are observed.
1 2 | EUt1(times, failures, variable, pro.time, u.A0, u.A1, u.B0, u.B1, n.boot,
rmst.change)
|
times |
A numeric vector with the follow up times for the patients receiving the treatment B. |
failures |
A numeric vector with the event indicator for the patients receiving the treatment B (0=right censoring, 1=event). |
variable |
A numeric vector with the observed values of the marker under interest |
pro.time |
The prognostic time for which the prognostic capacities of the marker and the patient outcomes are considered in the same unit than the one used in the argument |
u.A0 |
A value of the utility of a patient receiving the treatment A before the event occurrence. This value should respect the 0-1 scale (from death to perfect health). |
u.A1 |
A value of the utility of a patient receiving the treatment A after the event occurrence. This value should respect the 0-1 scale. |
u.B0 |
A value of the utility of a patient receiving the treatment B before the event occurrence. This value should respect the 0-1 scale. |
u.B1 |
A value of the utility of a patient receiving the treatment B after the event occurrence. This value should respect the 0-1 scale. |
n.boot |
Number of bootstrap iterations to compute the 95% confidence interval of the optimal cut-off. The default value is NULL: no confidence interval is estimated. |
rmst.change |
A numeric vector with the expected relative change in the Restricted Mean Survival Time (RMST) by using the treatment A instead of the treatment B among patients with |
This function computes the expected time-dependent utility. The data may be right-censored. The user has to define the utilities (qualities of life related to the possible health states). A positive test is defined by a marker value higher than the cut-off (X>k
): by convention the the patient will receive the treatment A. For example, the user has a cohort of patients receiving the treatment B. She(he) assumes that an alternative treatment A would be more convenient for patients with high-values of the marker X. She(he) aims to compute the optimal cut-off value for a future stratified medical decision rule: treatment A for patients with X>k
and treatment B for patients with X<k
. The user has to enter the observed cohort of patients with the treatment B. Additional to the assumptions related to health-state utilities, the user have to specify in rmst.change
the expected relative change in terms of RMST between the two treatments. For instance, if the life expectancy of a patient with treatment B over the next 8 years (value entered in pro.time
) is 6.70 years, and assuming that the treatment A increases this life expectancy during the next 8 years by 1.33 years, the expected relative change in RMST is 0.20 (=1.33/6.7) (Royston and Parmar, 2011).
estimation |
This is a single value if |
max.eu |
This value corresponds to the maximum expected utility associated with the |
table |
This data frame is composed by 8 columns representing respectively the cut-off values, the time-dependent expected utilities ( |
delta.rmst |
This value represents the expected RMST for patients with a marker higher than the |
delta.qaly |
This value represents the number of QALYs for patients with a marker higher than the |
missing |
Number of deleted observations due to missing data. |
Y. Foucher <Yohann.Foucher@univ-nantes.fr>
Foucher et al. (2010) A clinical scoring system highly predictive of long-term kidney graft survival. Kidney International, 78:1288-94. <doi: 10.1038/ki.2010.232>
Royston P. and Parmar M.K. (2011) The use of restricted mean survival time to estimate the treatment effect in randomized clinical trials when the proportional hazards assumption is in doubt. Statistics in Medicine, 30(19):2409-21. <doi:10.1002/sim.4274>
Dantan E., Foucher Y., Lorent M., Giral M., Tessier P. (2016) Optimal threshold estimator of a prognostic marker by maximizing a time-dependent expected utility function for a patient-centered stratified medicine. Statistical Methods in Medical Research, 0, 1-13. <doi:10.1177/ 0962280216671161>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | data(dataKTFS)
# to respect the CRAN policy (run times < 5s)
dataKTFS <- dataKTFS[1:1500,]
dataKTFS$score <- round(dataKTFS$score, 1)
# the expected utility function for a prognostic up to 8 years
EUt.obj <- EUt1(dataKTFS$time, dataKTFS$failure, dataKTFS$score, pro.time=8,
u.A0=0.81*0.95, u.A1=0.53, u.B0=0.81, u.B1=0.53, rmst.change=0.2)
plot(EUt.obj$table$cut.off, EUt.obj$table$utility, type="l",
xlab="Cut-off values", ylab="Expected utility", col=1, lty=1)
segments(EUt.obj$estimation, 0, EUt.obj$estimation, EUt.obj$max.eu, lty=3)
segments(0, EUt.obj$max.eu, EUt.obj$estimation, EUt.obj$max.eu, lty=3)
text(EUt.obj$estimation-0.2, 6.22,
paste("Optimal cut-off=", round(EUt.obj$estimation,2)), srt=90, cex=0.8)
text(min(dataKTFS$score)+1.4, EUt.obj$max.eu-0.006,
paste("Expected utility=", round(EUt.obj$max.eu, 2)), cex=0.8)
# the optimal cut-off: patients with an higher value should receive the treatment A
EUt.obj$estimation
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.