survival_prob_coxnet: A wrapper for survival probabilities with coxnet models

View source: R/proportional_hazards-glmnet.R

survival_prob_coxnetR Documentation

A wrapper for survival probabilities with coxnet models

Description

A wrapper for survival probabilities with coxnet models

Usage

survival_prob_coxnet(
  object,
  new_data,
  eval_time,
  time = deprecated(),
  output = "surv",
  penalty = NULL,
  ...
)

Arguments

object

A fitted ⁠_coxnet⁠ object.

new_data

Data for prediction.

eval_time

A vector of integers for prediction times.

time

Deprecated in favor of eval_time. A vector of integers for prediction times.

output

One of "surv" or "haz".

penalty

Penalty value(s).

...

Options to pass to survival::survfit().

Value

A tibble with a list column of nested tibbles.

Examples

cox_mod <- proportional_hazards(penalty = 0.1) %>%
  set_engine("glmnet") %>%
  fit(Surv(time, status) ~ ., data = lung)
survival_prob_coxnet(cox_mod, new_data = lung[1:3, ], eval_time = 300)

censored documentation built on April 14, 2023, 12:30 a.m.