h_step {tern} | R Documentation |
Helper functions for subgroup treatment effect pattern (STEP) calculations
Description
Helper functions that are used internally for the STEP calculations.
Usage
h_step_window(x, control = control_step())
h_step_trt_effect(data, model, variables, x)
h_step_survival_formula(variables, control = control_step())
h_step_survival_est(
formula,
data,
variables,
x,
subset = rep(TRUE, nrow(data)),
control = control_coxph()
)
h_step_rsp_formula(variables, control = c(control_step(), control_logistic()))
h_step_rsp_est(
formula,
data,
variables,
x,
subset = rep(TRUE, nrow(data)),
control = control_logistic()
)
Arguments
x |
( |
control |
(named |
data |
( |
model |
( |
variables |
(named |
formula |
( |
subset |
( |
Value
-
h_step_window()
returns a list containing the window-selection matrixsel
and the interval information matrixinterval
.
-
h_step_trt_effect()
returns a vector with elementsest
andse
.
-
h_step_survival_formula()
returns a model formula.
-
h_step_survival_est()
returns a matrix of number of observationsn
,events
, log hazard ratio estimatesloghr
, standard errorse
, and Wald confidence interval boundsci_lower
andci_upper
. One row is included for each biomarker value inx
.
-
h_step_rsp_formula()
returns a model formula.
-
h_step_rsp_est()
returns a matrix of number of observationsn
, log odds ratio estimateslogor
, standard errorse
, and Wald confidence interval boundsci_lower
andci_upper
. One row is included for each biomarker value inx
.
Functions
-
h_step_window()
: Creates the windows for STEP, based on the control settings provided. -
h_step_trt_effect()
: Calculates the estimated treatment effect estimate on the linear predictor scale and corresponding standard error from a STEPmodel
fitted ondata
givenvariables
specification, for a single biomarker valuex
. This works for bothcoxph
andglm
models, i.e. for calculating log hazard ratio or log odds ratio estimates. -
h_step_survival_formula()
: Builds the model formula used in survival STEP calculations. -
h_step_survival_est()
: Estimates the model withformula
built based onvariables
indata
for a givensubset
andcontrol
parameters for the Cox regression. -
h_step_rsp_formula()
: Builds the model formula used in response STEP calculations. -
h_step_rsp_est()
: Estimates the model withformula
built based onvariables
indata
for a givensubset
andcontrol
parameters for the logistic regression.