Plot Validation Results for cox_MDTL_enet Object
plot.cox_MDTL_enet.RdPlots the validation performance against lambda for MDTL elastic net estimates.
Examples
if (FALSE) { # \dontrun{
data(ExampleData_highdim)
train_dat_highdim <- ExampleData_highdim$train
test_dat_highdim <- ExampleData_highdim$test
beta_external_highdim <- ExampleData_highdim$beta_external
cox_MDTL_enet_est <- cox_MDTL_enet(z = train_dat_highdim$z,
delta = train_dat_highdim$status,
time = train_dat_highdim$time,
beta = beta_external_highdim,
vcov = NULL,
eta = 0)
plot.cox_MDTL_enet(cox_MDTL_enet_est,
test_z = test_dat_highdim$z,
test_time = test_dat_highdim$time,
test_delta = test_dat_highdim$status,
test_stratum = test_dat_highdim$stratum,
criteria = "CIndex")
} # }