gestSingle {gesttools}R Documentation

G-Estimation for an End of Study Outcome

Description

Performs g-estimation of a structural nested mean model (SNMM), based on the outcome regression methods described in Sjolander and Vansteelandt (2016) and Dukes and Vansteelandt (2018). We expect a dataset that holds an end of study outcome that is either binary or continuous, time-varying and/or baseline confounders, and a time-varying exposure that is either binary, continuous or categorical.

Usage

gestSingle(
  data,
  idvar,
  timevar,
  Yn,
  An,
  Cn = NA,
  outcomemodels,
  propensitymodel,
  censoringmodel = NULL,
  type,
  EfmVar = NA,
  ...
)

Arguments

data

A data frame in long format containing the data to be analysed. See description for details.

idvar

Character string specifying the name of the ID variable in the data.

timevar

Character string specifying the name of the time variable in the data. Note that timevar must specify time periods as integer values starting from 1 (must not begin at 0).

Yn

Character string specifying the name of the end of study outcome variable.

An

Character string specifying the name of the time-varying exposure variable.

Cn

Optional character string specifying the name of the censoring indicator variable. The variable specified in Cn should be a numeric vector taking values 0 or 1, with 1 indicating censored.

outcomemodels

a list of formulas or formula objects specifying the outcome models for Yn prior to adjustment by propensity score. The i'th entry of the list specifies the outcome model for the counterfactuals up to time i. See description for details.

propensitymodel

A formula or formula object specifying the propensity score model for An.

censoringmodel

A formula or formula object specifying the censoring model for Cn.

type

Value from 1-4 specifying SNMM type to fit. See details.

EfmVar

Character string specifying the name of the effect modifying variable for types 2 or 4.

...

Additional arguments, currently not in use.

Details

Given a time-varying exposure variable, A_t and time-varying confounders, L_t measured over time periods t=1,\ldots,T, and an end of study outcome Y measured at time T+1, gest estimates the causal parameters \psi of a SNMM of the form

E(Y(\bar{a}_{t},0)-Y(\bar{a}_{t-1},0)|\bar{a}_{t-1},\bar{l}_{t})=\psi z_ta_t \;\forall\; t=1,\ldots,T

if Y is continuous or

\frac{E(Y(\bar{a}_{t},0)|\bar{a}_{t-1},\bar{l}_{t})}{E(Y(\bar{a}_{t-1},0)|\bar{a}_{t-1},\bar{l}_{t})}=exp(\psi z_ta_t)\;\forall\; t=1,\ldots,T

if Y is binary. The SNMMs form is defined by the parameter z_t, which can be controlled by the input type as follows

The data must be in long format, where we assume the convention that each row with time=t contains A_t,L_t and C_{t+1} and Y_{T+1}. Thus the censoring indicator for each row should indicate that a user is censored AFTER time t. The end of study outcome Y_{T+1} should be repeated on each row. If either A or Y are binary, they must be written as numeric vectors taking values either 0 or 1. The same is true for any covariate that is used for effect modification.
The data must be rectangular with a row entry for every individual for each exposure time 1 up to T. Data rows after censoring should be empty apart from the ID and time variables. This can be done using the function FormatData.
The input outcomemodels should be a list with T elements (the number of exposure times), where element i describes the outcome model for the counterfactuals at time i.

Value

List of the fitted causal parameters of the posited SNMM. These are labeled as follows for each SNMM type, where An is set to the name of the exposure variable, i is the current time period, and and EfmVar is the effect modifying variable.

type=1

An: The effect of exposure at any time t on outcome.

type=2

An: The effect of exposure at any time t on outcome, when EfmVar is set to zero.
An:EfmVar: The effect modification by EfmVar, the additional effect of A on Y for each unit increase in EfmVar

.

type=3

t=i.An: The effect of exposure at time t=i on outcome.

type=4

t=i.An: The effect of exposure at time t=i on outcome, when EfmVar is set to zero.
t=i.An:EfmVar: The effect modification by EfmVar, the additional effect of A on Y at time t=i for each unit increase in EfmVar.

The function also returns a summary of the propensity scores and censoring scores via PropensitySummary and CensoringSummary, along with Data, holding the original dataset with the propensity and censoring scores as a tibble dataset.

References

Vansteelandt, S., & Sjolander, A. (2016). Revisiting g-estimation of the Effect of a Time-varying Exposure Subject to Time-varying Confounding, Epidemiologic Methods, 5(1), 37-56. <doi:10.1515/em-2015-0005>.

Dukes, O., & Vansteelandt, S. (2018). A Note on g-Estimation of Causal Risk Ratios, American Journal of Epidemiology, 187(5), 1079–1084. <doi:10.1093/aje/kwx347>.

Examples

datas <- dataexamples(n = 1000, seed = 123, Censoring = FALSE)
data <- datas$datagest
data <- FormatData(
  data = data, idvar = "id", timevar = "time", An = "A",
  varying = c("Y", "A", "L"), GenerateHistory = TRUE, GenerateHistoryMax = 1
)
idvar <- "id"
timevar <- "time"
Yn <- "Y"
An <- "A"
Cn <- NA
outcomemodels <- list("Y~A+L+U+Lag1A", "Y~A+L+U+Lag1A", "Y~A+L+U+Lag1A")
propensitymodel <- c("A~L+U+as.factor(time)+Lag1A")
censoringmodel <- NULL
EfmVar <- NA
gestSingle(data, idvar, timevar, Yn, An, Cn, outcomemodels, propensitymodel,
censoringmodel = NULL, type = 1, EfmVar)

# Example with censoring
datas <- dataexamples(n = 1000, seed = 123, Censoring = TRUE)
data <- datas$datagest
data <- FormatData(
  data = data, idvar = "id", timevar = "time", An = "A", Cn = "C",
  varying = c("Y", "A", "L"), GenerateHistory = TRUE, GenerateHistoryMax = 1
)
Cn <- "C"
EfmVar <- "L"
outcomemodels <- list("Y~A+L+U+A:L+Lag1A", "Y~A+L+U+A:L+Lag1A", "Y~A+L+U+A:L")
censoringmodel <- c("C~L+U+as.factor(time)")
gestSingle(data, idvar, timevar, Yn, An, Cn, outcomemodels, propensitymodel,
censoringmodel = censoringmodel, type = 2, EfmVar)

[Package gesttools version 1.3.0 Index]