(1) When running a regression model to do analysis, what should we be worried about?
We are typically worried about whether we have correctly specified the regression model to estimate the effect we are interested in, and misspecification can be due to a number of reasons that include: wrong assumptions about relationships between exposure and outcome (i.e. true relationship is linear but we assume a linear relationship), missing factors from the model (i.e. unmeasured confounding or missing interactions between factors), or any other factors that could account for unexplained variance. If we are also interested in a causal effect, we would also have to consider whether we have any assumption violations for the assumptions of exchangeability, positivity, or consistency.
(2) Why use TMLE instead of regression?
You do not need to make as many assumptions when using TMLE compared to regression, in which you assume that your model is the correct model to describe the effect. This is because the regression approach uses information from the data you observed to extrapolate to describe the data you did not observe (i.e. by using a model), and to correctly extrapolate, you would need to assume that your model is correctly specified. Any violations in your modeling assumptions, which includes no model misspecification, will result in a biased estimate of the effect with an estimated variance that is smaller than the true uncertainty in your data. In contrast, the TMLE uses a semi-parametric model that doesn’t require extrapolation, it tries to minimize the mean squared error for the parameter of interest and will give an unbiased estimate of that parameter which may also result in a larger estimated variance but this may more accurately describe the true uncertainty in your data.
(3) Why use TMLE instead of inverse probability of treatment weighting?
The TMLE is more efficient than the IPW estimators approach in that they minimize the estimated variance while giving unbiased estimates. TMLE will also be more consistent than the IPW even in the presence of model misspecification, in contrast IPW is very sensitive to model specification since the entire analysis relies on correct estimation of the weights. The IPW approach is also vulnerable to positivity violations and can result in biased or overly confidence variance estimates, while TMLE is theoretically more robust even when there is a positivity violation.
(4) Are there instances when we wouldn't want to use TMLE?
When comparing TMLE to IPW and DRWLS methods, Rudolph et al 2014 found that TMLE did not outperform IPW (in terms of estimating a smaller variance) when the model for the outcome was misspecified due to a missing interaction effect that resulted in treatment effect heterogeneity.
(5) What are marginal effects? What are conditional effects? Which do we usually report? Which are the most useful?
Marginal effects typically refer to a population-average effect that describes the association across an entire population; the comparison is between the average risk for the outcome in a population when everyone was exposed versus the average risk for the outcome in a population when no one was exposed. In contrast conditional effects typically refer to subject-specific effect that describes the effect for a particular person; the comparison is the risk for that person if they were exposed versus the risk for that person if they were unexposed. Most often we are reporting conditional effects (i.e. odds ratios, risk ratios, etc). In terms of usefulness, it could be argued that for public health or other population based scientists (i.e. research for policy makers), where you hope to make predictions about the entire population, the marginal effects are more useful since it will take into account the distribution of covariates within your population. However some might argue that if you want to make a prediction about an individual, a conditional effect might be more useful.
(6) Can you think of applications in your field in which TMLE might be helpful?
In genetic epidemiology TMLE is a useful tool since often we are trying to estimate the effect of a single genetic variant while treating all other genetic markers in the genome as nuisance parameters, especially in the case of genome-wide association studies. This results in a large number of nuisance parameters we are not interested in, so TMLE could potentially give a tighter confidence interval for the genetic variant we are interested in, which would be extremely helpful since many genetic effects are quite small (and close to the null) and a precise estimate is required to correctly estimate whether there is a true effect (i.e. if confidence interval does not cross the null). TMLE is especially appealing because it blends both machine learning and causal inference approaches which gives interpretable estimates while also acknowledging limitations of the data that you have. Many groups at UC Berkeley and the Broad Institute are currently developing TMLE methods for genome-wide data.