cox_regression: Fit a 'cox_regression'

View source: R/cox_regression-fit.R

cox_regressionR Documentation

Fit a cox_regression

Description

cox_regression() fits a model.

Usage

cox_regression(x, ...)

## Default S3 method:
cox_regression(x, ...)

## S3 method for class 'data.frame'
cox_regression(x, y, ...)

## S3 method for class 'matrix'
cox_regression(x, y, ...)

## S3 method for class 'formula'
cox_regression(formula, data, ...)

## S3 method for class 'recipe'
cox_regression(x, data, ...)

Arguments

x

Depending on the context:

  • A data frame of predictors.

  • A matrix of predictors.

  • A recipe specifying a set of preprocessing steps created from recipes::recipe().

...

Not currently used, but required for extensibility.

y

When x is a data frame or matrix, y is the outcome specified as:

  • A data frame with 1 numeric column.

  • A matrix with 1 numeric column.

  • A numeric vector.

formula

A formula specifying the outcome terms on the left-hand side, and the predictor terms on the right-hand side.

data

When a recipe or formula is used, data is specified as:

  • A data frame containing both the predictors and the outcome.

Value

A cox_regression object.

Examples

set.seed(0)
data <- simulate_dummy_surv_data()

model <- cox_regression(event~time+., data, l1=0.05, l2=0.01, frob=0.01, num_comp=3)
model


jlaria/glasp documentation built on Dec. 5, 2022, 6:42 a.m.