Overview#
Causal inference focuses on estimating the strength and nature of identified causal relationships. This part uses statistical techniques to quantify the effect of one variable on another, given that the causal structure is known or assumed. If you do not know the causal graph, you can take a look at Part II about Causal Discovery to see methods to unveil the causal graph from observational data.
Knowing the causal graph is crucial because it helps identify the relationships and dependencies between variables. This knowledge allows for accurate estimation of causal effects, essential for making informed decisions and predictions. Here are some key reasons why understanding the causal graph is important:
Correct identification of relationships: the causal graph helps in correctly identifying which variables directly affect the outcome of interest. This is important for estimating the true causal effect of a treatment variable.
Avoiding Bias: without a proper causal graph, estimates of causal effects can be biased due to confounding variables. For instance, failing to account for confounders can lead to incorrect conclusions about the relationship between variables.
Understanding mediators and colliders: the causal graph helps in identifying mediators (variables that lie on the causal path between the treatment and outcome) and colliders (variables influenced by two or more other variables). Misunderstanding these roles can lead to incorrect model specifications and biased estimates.
The following Chapters will try to present some key techniques to obtain precise and reliable estimates of causal effects by accounting for the presence of confounders and exogenous factors.
Content of Causal Inference Chapters#
Chapter |
Description |
---|---|
Instrumental Variables |
How to estimate causal effects when we might suffer from omitted variable bias, or when the explanatory variable and response variable influence each other. |
Propensity Score Matching |
How to control for confounders and avoid the selection bias. |
Double Machine Learning |
How to estimate causal inference using machine learnign models and adjusting for the presence of a high-dimensional set of confounders. |
Difference-in-Differences |
How to estimate the effect of a treatment on time series data by comparing changes in outcomes over time between treated and control groups. |
Interrupted Time Series |
How to estimate treatment effects in time series without the presence of a control group. |