h_step | R Documentation |
Helper functions that are used internally for the STEP calculations.
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()
)
x |
( |
control |
(named |
data |
( |
model |
( |
variables |
(named |
formula |
( |
subset |
( |
h_step_window()
returns a list containing the window-selection matrix sel
and the interval information matrix interval
.
h_step_trt_effect()
returns a vector with elements est
and se
.
h_step_survival_formula()
returns a model formula.
h_step_survival_est()
returns a matrix of number of observations n
,
events
, log hazard ratio estimates loghr
, standard error se
,
and Wald confidence interval bounds ci_lower
and ci_upper
. One row is
included for each biomarker value in x
.
h_step_rsp_formula()
returns a model formula.
h_step_rsp_est()
returns a matrix of number of observations n
, log odds
ratio estimates logor
, standard error se
, and Wald confidence interval bounds
ci_lower
and ci_upper
. One row is included for each biomarker value in x
.
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 STEP model
fitted
on data
given variables
specification, for a single biomarker value x
.
This works for both coxph
and glm
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 with formula
built based on
variables
in data
for a given subset
and control
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 with formula
built based on
variables
in data
for a given subset
and control
parameters for the
logistic regression.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.