Learn R Programming

hdnom (version 6.0.4)

infer_variable_type: Extract information of selected variables from high-dimensional Cox models

Description

Extract the names and type of selected variables from fitted high-dimensional Cox models.

Usage

infer_variable_type(object, x)

Value

A list containing the index, name, type and range of the selected variables.

Arguments

object

Model object.

x

Data matrix used to fit the model.

Examples

Run this code
data("smart")
x <- as.matrix(smart[, -c(1, 2)])
time <- smart$TEVENT
event <- smart$EVENT
y <- survival::Surv(time, event)

fit <- fit_lasso(x, y, nfolds = 5, rule = "lambda.1se", seed = 11)
infer_variable_type(fit, x)

Run the code above in your browser using DataLab