This function estimates the marginal cumulative incidence for
failures of specified types using targeted minimum loss-based estimation
based on the initial estimates of the cause-specific hazard functions for
failures of each type. The function is called by survtmle
whenever method = "hazard"
is specified. However, power users could,
in theory, make calls directly to this function.
hazard_tmle( ftime, ftype, trt, t0 = max(ftime[ftype > 0]), adjustVars = NULL, SL.ftime = NULL, SL.ctime = NULL, SL.trt = NULL, glm.ftime = NULL, glm.ctime = NULL, glm.trt = "1", glm.family = "binomial", returnIC = TRUE, returnModels = FALSE, ftypeOfInterest = unique(ftype[ftype != 0]), trtOfInterest = unique(trt), cvControl, bounds = NULL, verbose = FALSE, tol = 1/(length(ftime)), maxIter = 100, gtol = 0.001, ... )
ftime | A numeric vector of failure times. Right-censored observations
should have corresponding |
---|---|
ftype | A numeric vector indicating the type of failure. Observations
with |
trt | A numeric vector indicating observed treatment assignment. Each unique value will be treated as a different type of treatment. Currently, only two unique values are supported. |
t0 | The time at which to return cumulative incidence estimates. By
default this is set to |
adjustVars | A data.frame of adjustment variables that will be used in estimating the conditional treatment, censoring, and failure (hazard or conditional mean) probabilities. |
SL.ftime | A character vector or list specification to be passed to the
|
SL.ctime | A character vector or list specification to be passed to the
|
SL.trt | A character vector or list specification to be passed to the
|
glm.ftime | A character specification of the right-hand side of the
equation passed to the |
glm.ctime | A character specification of the right-hand side of the
equation passed to the |
glm.trt | A character specification of the right-hand side of the
equation passed to the |
glm.family | The type of regression to be performed if fitting GLMs in
the estimation and fluctuation procedures. The default is "binomial" for
logistic regression. Only change this from the default if there are
justifications that are well understood. This is passed directly to
|
returnIC | A |
returnModels | A |
ftypeOfInterest | An input specifying what failure types to compute
estimates of incidence for. The default value computes estimates for values
|
trtOfInterest | An input specifying which levels of |
cvControl | A |
bounds | A |
verbose | A |
tol | The stopping criteria. The TMLE algorithm performs updates to the
initial estimators until the empirical mean of the efficient influence
function is smaller than |
maxIter | The maximum number of iterations for the algorithm. The
algorithm will iterate until either the empirical mean of the efficient
influence function is smaller than |
gtol | The truncation level of predicted censoring survival. Setting to larger values can help performance in data sets with practical positivity violations. |
... | Other options. Not currently used. |
An object of class survtmle
.
The call to survtmle
.
A numeric vector of point estimates -- one for each combination
of ftypeOfInterest
and trtOfInterest
.
A covariance matrix for the point estimates.
The empirical mean of the efficient influence function at the estimated, targeted nuisance parameters. Each value should be small or the user will be warned that excessive finite-sample bias may exist in the point estimates.
The efficient influence function at the estimated, fluctuated nuisance parameters, evaluated on each of the observations. These are used to construct confidence intervals for post-hoc comparisons.
If returnModels = TRUE
the fit object(s) for calls
to SuperLearner
or glm
for the outcome regression models. If method="mean"
this will be
a list of length length(ftypeOfInterest)
each of length t0
(one regression for each failure type and for each timepoint). If
method = "hazard"
this will be a list of length
length(ftypeOfInterest)
with one fit corresponding to the hazard
for each cause of failure. If returnModels = FALSE
, this entry
will be NULL
.
If returnModels = TRUE
the fit object for the call
to glm
or SuperLearner
for the pooled hazard regression model for the censoring distribution.
If returnModels = FALSE
, this entry will be NULL
.
If returnModels = TRUE
the fit object for the call to
glm
or SuperLearner
for
the conditional probability of trt
regression model. If
returnModels = FALSE
, this entry will be NULL
.
The timepoint at which the function was evaluated.
The numeric
vector of failure times used in the fit.
The numeric
vector of failure types used in the fit.
The numeric
vector of treatment assignments used in the
fit.
The data.frame
of failure times used in the fit.
## Single failure type examples # simulate data set.seed(1234) n <- 100 trt <- rbinom(n, 1, 0.5) adjustVars <- data.frame(W1 = round(runif(n)), W2 = round(runif(n, 0, 2))) ftime <- round(1 + runif(n, 1, 4) - trt + adjustVars$W1 + adjustVars$W2) ftype <- round(runif(n, 0, 1)) # Fit 1 - fit hazard_tmle object with GLMs for treatment, censoring, failure fit1 <- hazard_tmle( ftime = ftime, ftype = ftype, trt = trt, adjustVars = adjustVars, glm.trt = "W1 + W2", glm.ftime = "trt + W1 + W2", glm.ctime = "trt + W1 + W2", returnModels = TRUE )