SlideShare a Scribd company logo
1 of 38
DoWhy: An End-to-End Library for
Causal Inference
Amit Sharma (@amt_shrma), Emre Kıcıman (@emrek)
Microsoft Research
Causal ML group @ Microsoft:
https://www.microsoft.com/en-us/research/group/causal-inference/
Code: https://github.com/microsoft/dowhy
Paper: https://arxiv.org/abs/2011.04216
From prediction to decision-making
Decision-making: Acting/intervening based on analysis
• Interventions break correlations used by conventional ML
• The feature with the highest importance score in a prediction model,
• Need not be the best feature to act on
• May not even affect the outcome at all!
For decision-making, need to find the features that cause the outcome &
estimate how the outcome would change if the features are changed.
Many data science Qs are causal Qs
• A/B experiments: If I change the algorithm, will it lead to a higher
success rate?
• Policy decisions: If we adopt this treatment/policy, will it lead to a
healthier patient/more revenue/etc.?
• Policy evaluation: knowing what I know now, did my policy help or
hurt?
• Credit attribution: are people buying because of the
recommendation algorithm? Would they have bought anyway?
In fact, causal questions form the basis of almost all scientific inquiry
Prediction Causation
Assume:
𝑃𝑡𝑟𝑎𝑖𝑛 𝑊, 𝐴, 𝑌 = 𝑃𝑡𝑒𝑠𝑡(𝑊, 𝐴, 𝑌)
Estimate: min 𝐿( 𝑦, 𝑦)
Evaluate: Cross-validation
Assume:
𝑃𝑡𝑟𝑎𝑖𝑛 𝑊, 𝐴, 𝑌 ≠ 𝑃𝑡𝑒𝑠𝑡(𝑊, 𝐴, 𝑌)
Two Fundamental Challenges for Causal Inference
Multiple causal mechanisms and estimates
can fit the same data distribution.
Estimation about different data
distributions than the training distribution
(no easy “cross-validation”).
1. Assumptions
2. Evaluation
Real World: do(A=1) Counterfactual World: do(A=0)
We built DoWhy library to make assumptions front-
and-center of any causal analysis.
- Transparent declaration of assumptions
- Evaluation of those assumptions, to the extent possible
Most popular causal library on GitHub (>2.4k stars, 300+ forks)
Taught in third-party tutorials and courses: O’Reilly, PyData, Northeastern, …
An end-to-end platform for doing causal inference
EconML,
CausalML,
CausalImpact,
tmle,…
Formulate correct
estimand based on
causal assumptions?
Estimate causal
effect
Check
robustness?
Input Data
<action, outcome,
other variables>
Domain Knowledge
Causal
Estimate
Model causal
mechanisms
•Construct a
causal
graph
based on
domain
knowledge
Identify the
target estimand
•Formulate
correct
estimand
based on
the causal
model
Estimate causal
effect
•Use a
suitable
method to
estimate
effect
Refute estimate
•Check
robustness
of estimate
to
assumption
violations
Input Data
<action, outcome,
other variables>
Domain Knowledge
Causal
effect
DoWhy
Action
w
Outcome
v3 v5
v1,v2
DoWhy provides a general API for the four
steps of causal inference
1. Modeling: Create a causal graph to encode assumptions.
2. Identification: Formulate what to estimate.
3. Estimation: Compute the estimate.
4. Refutation: Validate the assumptions.
We’ll discuss the four steps and show a code example using DoWhy.
I. Model the assumptions using a causal graph
Convert domain knowledge to a formal
model of causal assumptions
• 𝐴 → 𝐵 or 𝐵 → 𝐴?
• Causal graph implies conditional statistical
independences
• E.g., 𝐴 ⫫ 𝐶, 𝐷 ⫫ A | B, …
• Identified by d-separation rules [Pearl 2009]
• These assumptions significantly impact the
causal estimate we’ll obtain.
A
C
B D
Key intuitions about causal graphs
• Assumptions are encoded by missing edges, and direction of edges
• Relationships represent stable and independent mechanisms
• Graph cannot be learnt from data alone
• Graphs are a tool to help us reason about a specific problem
Example Graph
Assumption 1: User fatigue does not
affect user interests
Assumption 2: Past clicks do not
directly affect outcome
Assumption 3: Treatment does not
affect user fatigue.
..and so on.
User
Interests
YT
User
Fatigue
Past Clicks
Intervention is represented by a new graph
User
Interests
YT
User
Fatigue
Past Likes
YTYT
Want to answer questions about data that
will be generated by intervention graph
Observed data generated
by this graph
II. Identification: Formulate desired quantity
and check if it is estimable from given data
Trivial Example: Randomized Experiments
• Observed graph is same as intervention graph
in randomized experiment!
• Treatment 𝑇 is already generated independent of
all other features
•  𝑃 𝑌 𝑑𝑜 𝑇 = 𝑃(𝑌|𝑇)
• Intuition: Generalize by simulating randomized
experiment
• When treatment T is caused by other features, 𝑍,
adjust for their influence to simulate a randomized
experiment
YT
Adjustment Formula and Adjustment Sets
Adjustment formula
𝑝 𝑌 𝑑𝑜 𝑇 =
𝑍
𝑝 𝑌 𝑇, 𝑍 𝑝(𝑍)
Where 𝑍 must be a valid adjustment set:
- The set of all parents of 𝑇
- Features identified via backdoor criterion
- Features identified via “towards necessity” criterion
Intuitions:
- The union of all features is not necessarily a valid adjustment set
- Why not always use parents? Sometimes parent features are unobserved
Many kinds of identification methods
Graphical constraint-based
methods
• Randomized and natural
experiments
• Adjustment Sets
• Backdoor, “towards necessity”
• Front-door criterion
• Mediation formula
Identification under additional
non-graphical constraints
• Instrumental variables
• Regression discontinuity
• Difference-in-differences
Many of these methods can be used through DoWhy.
III. Estimation: Compute the causal effect
Estimation uses observed data to compute the target
probability expression from the Identification step.
For common identification strategies using adjustment sets,
𝐸[𝑌|𝑑𝑜 𝑇 = 𝑡 , 𝑊 = 𝑤]= 𝐸 𝑌 𝑇 = 𝑡, 𝑊 = 𝑤
assuming W is a valid adjustment set.
• For binary treatment,
Causal Effect = 𝐸 𝑌 𝑇 = 1, 𝑊 = 𝑤 − 𝐸 𝑌 𝑇 = 0, 𝑊 = 𝑤
Goal: Estimating conditional probability Y|T=t when all
confounders W are kept constant.
Control Treatment (Cycling)
Simple Matching: Match data points with the same
confounders and then compare their outcomes
Simple Matching: Match data points with the same
confounders and then compare their outcomes
Identify pairs of treated (𝑗) and
untreated individuals (𝑘) who are
similar or identical to each other.
Match := 𝐷𝑖𝑠𝑡𝑎𝑛𝑐𝑒 𝑊𝑗, 𝑊𝑘 < 𝜖
• Paired individuals have almost
the same confounders.
Causal Effect =
𝑗,𝑘 ∈𝑀𝑎𝑡𝑐ℎ(𝑦𝑗 − 𝑦 𝑘)
:
:
:
:
:
:
:
:
:
Challenges of building a good estimator
• Variance: If we have a stringent matching criterion, we may obtain
very few matches and the estimate will be unreliable.
• Bias: If we relax the matching criterion, we obtain many more
matches but now the estimate does not capture the target estimand.
• Uneven treatment assignment: If very few people have treatment,
leads to both high bias and variance.
Need better methods to navigate the bias-variance tradeoff.
Machine learning methods can help find a
better match for each data point
Synthetic Control: If a good match
does not exist for a data point, can we
create it synthetically?
Learn 𝑦 = 𝑓𝑡=0 𝑤 ,
𝑦 = 𝑓𝑡=1(𝑤)
Assuming f approximates the true
relationship between 𝑌 and 𝑊,
Causal Effect =
𝑖
𝑡𝑖(𝑦𝑖 − 𝑓𝑡=0(𝑤𝑖)) + (1 − 𝑡𝑖)(𝑓𝑡=1 𝑤𝑖 − 𝑦𝑖)
Confounder (W)
Outcome(Y)
Confounder
T=1
T=0
Other ML methods generalize estimation to
continuous treatments
The standard predictor, 𝑦 = 𝑓 𝑡, 𝑤 + 𝜖
may not provide the right estimate for
𝜕𝑦
𝜕𝑡
.
Double-ML [Chernozhukov et al. 2016]:
• Stage 1: Break down conditional
estimation into two prediction sub-tasks.
𝑦 = 𝑔 𝑤 + 𝑦
𝑡 = ℎ 𝑤 + 𝑡
𝑦 and 𝑡 refer to the unconfounded variation in
𝑌 and 𝑇 respectively after conditioning on w.
• Stage 2: A final regression of 𝑦 on 𝑡 gives
the causal effect.
𝑦~ 𝛽 𝑡 + 𝜖
Outcome(Y)
Confounder (W)
Treatment(T)
Confounder (W)
Residual Treatment ( 𝑇)
ResidualOutcome(𝑌)
Depending on the dataset properties,
different estimation methods can be used
Simple Conditioning
• Matching
• Stratification
Propensity Score-Based [Rubin 1983]
• Propensity Matching
• Inverse Propensity Weighting
Synthetic Control [Abadie et al.]
Outcome-based
• Double ML [Chernozhukov et al. 2016]
• T-learner
• X-learner [Kunzel et al. 2017]
Loss-Based
• R-learner [Nie & Wager 2017]
Threshold-based
• Difference-in-differences
All these methods can be called through DoWhy.
(directly or through the Microsoft EconML library)
IV. Robustness Checks: Test robustness of
obtained estimate to violation of assumptions
Obtained estimate depends on many (untestable) assumptions.
Model:
Did we miss any unobserved variables in the assumed graph?
Did we miss any edge between two variables in the assumed graph?
Identify:
Did we make any parametric assumption for deriving the estimand?
Estimate:
Is the assumed functional form sufficient for capturing the variation in
data?
Do the estimator assumptions lead to high variance?
Best practice: Do refutation/robustness tests
for as many assumptions as possible
UNIT TESTS
Model:
• Conditional Independence Test
Identify:
• D-separation Test
Estimate:
• Bootstrap Refuter
• Data Subset Refuter
INTEGRATION TESTS
Test all steps at once.
• Placebo Treatment Refuter
• Dummy Outcome Refuter
• Random Common Cause Refuter
• Sensitivity Analysis
• Simulated Outcome Refuter
/Synth-validation [Schuler et al. 2017]
All these refutation methods are implemented in DoWhy.
Caveat: They can refute a given analysis, but cannot prove its correctness.
Example 1: Conditional Independence Refuter
Through its edges, each causal graph
implies certain conditional independence
constraints on its nodes. [d-separation, Pearl
2009]
Model refutation: Check if the observed
data satisfies the assumed model’s
independence constraints.
• Use an appropriate statistical test for
independence [Heinze-Demel et al. 2018].
• If not, the model is incorrect.
W
YT
A B
Conditional Independencies:
𝐴⫫𝐵 𝐴⫫T|W 𝐵⫫ T|W
Example 1: Placebo Treatment (“A/A”) Refuter
Q: What if we can generate a dataset where
the treatment does not cause the outcome?
Then a correct causal inference method should
return an estimate of zero.
Placebo Treatment Refuter:
Replace treatment variable T by a randomly
generated variable (e.g., Gaussian).
• Rerun the causal inference analysis.
• If the estimate is significantly away from zero,
then analysis is incorrect.
W
YT
W
YT
?
Original
Treatment
“Placebo”
Treatment
Example 2: Add Unobserved Confounder to
check sensitivity of an estimate
Q: What if there was an unobserved confounder
that was not included in the causal model?
Check how sensitive the obtained estimate is
after introducing a new confounder.
Unobserved Confounder Refuter:
• Simulate a confounder based on a given
correlation 𝜌 with both treatment and
outcome.
• Maximum Correlation 𝜌 is based on the maximum
correlation of any observed confounder.
• Re-run the analysis and check if the
sign/direction of estimate flips.
W
YT
Observed
Confounders
W
YT
U
Unobserved
Confounder
Walk-through of the 4 steps using
the DoWhy Python library
𝒙
𝒚
𝒙 𝒚 𝒘
A mystery problem of two correlated variables:
Does 𝒙 cause 𝒚?
You can try out this example on Github:
https://github.com/microsoft/dowhy/blob/master/docs/source/example_notebooks/dowhy_confounder_example.ipynb
What else is in DoWhy?
• A unified, extensible API for causal inference that allows external
implementations for the 4 steps
• Can use estimation methods from external libraries such as EconML and CausalML.
• A convenient CausalDataFrame (contributed by Adam Kelleher)
• Pandas DataFrame extension with inbuilt functions for calculating causal effect.
Summary: DoWhy, a library that focuses on
causal assumptions and their validation
Growing open-source community: > 30 contributors
• Roadmap: More powerful refutation tests, counterfactual prediction.
• Please contribute! Would love to hear your ideas on Github.
Resources
 DoWhy Library: https://github.com/microsoft/dowhy
 Arxiv paper on the four steps: https://arxiv.org/abs/2011.04216
 Upcoming book on causality and ML: http://causalinference.gitlab.io/
Goal: A unified API for causal inference problems, just like
PyTorch or Tensorflow for predictive ML.
thank you– Amit Sharma
(@amt_shrma)

More Related Content

What's hot

Introduction to Diffusion Models
Introduction to Diffusion ModelsIntroduction to Diffusion Models
Introduction to Diffusion ModelsSangwoo Mo
 
Anomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine LearningAnomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine LearningKuppusamy P
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality ReductionKnoldus Inc.
 
Linear regression with gradient descent
Linear regression with gradient descentLinear regression with gradient descent
Linear regression with gradient descentSuraj Parmar
 
Logistic regression in Machine Learning
Logistic regression in Machine LearningLogistic regression in Machine Learning
Logistic regression in Machine LearningKuppusamy P
 
Machine Learning Chapter 11 2
Machine Learning Chapter 11 2Machine Learning Chapter 11 2
Machine Learning Chapter 11 2butest
 
[第2版] Python機械学習プログラミング 第4章
[第2版] Python機械学習プログラミング 第4章[第2版] Python機械学習プログラミング 第4章
[第2版] Python機械学習プログラミング 第4章Haruki Eguchi
 
Feature Engineering in Machine Learning
Feature Engineering in Machine LearningFeature Engineering in Machine Learning
Feature Engineering in Machine LearningKnoldus Inc.
 
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...Md. Main Uddin Rony
 
Explainable AI (XAI) - A Perspective
Explainable AI (XAI) - A Perspective Explainable AI (XAI) - A Perspective
Explainable AI (XAI) - A Perspective Saurabh Kaushik
 
Explicit Density Models
Explicit Density ModelsExplicit Density Models
Explicit Density ModelsSangwoo Mo
 
因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説Shiga University, RIKEN
 
Linear regression in machine learning
Linear regression in machine learningLinear regression in machine learning
Linear regression in machine learningShajun Nisha
 
Outlier analysis and anomaly detection
Outlier analysis and anomaly detectionOutlier analysis and anomaly detection
Outlier analysis and anomaly detectionShantanuDeosthale
 
L 05 bandit with causality-公開版
L 05 bandit with causality-公開版L 05 bandit with causality-公開版
L 05 bandit with causality-公開版Shota Yasui
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reductionmrizwan969
 
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...Yasutomo Kawanishi
 
Anomaly Detection
Anomaly DetectionAnomaly Detection
Anomaly Detectionguest0edcaf
 

What's hot (20)

Logistic regression
Logistic regressionLogistic regression
Logistic regression
 
Introduction to Diffusion Models
Introduction to Diffusion ModelsIntroduction to Diffusion Models
Introduction to Diffusion Models
 
Anomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine LearningAnomaly detection (Unsupervised Learning) in Machine Learning
Anomaly detection (Unsupervised Learning) in Machine Learning
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reduction
 
Linear regression with gradient descent
Linear regression with gradient descentLinear regression with gradient descent
Linear regression with gradient descent
 
Logistic regression in Machine Learning
Logistic regression in Machine LearningLogistic regression in Machine Learning
Logistic regression in Machine Learning
 
Machine Learning Chapter 11 2
Machine Learning Chapter 11 2Machine Learning Chapter 11 2
Machine Learning Chapter 11 2
 
[第2版] Python機械学習プログラミング 第4章
[第2版] Python機械学習プログラミング 第4章[第2版] Python機械学習プログラミング 第4章
[第2版] Python機械学習プログラミング 第4章
 
Feature Engineering in Machine Learning
Feature Engineering in Machine LearningFeature Engineering in Machine Learning
Feature Engineering in Machine Learning
 
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
Data Analysis: Evaluation Metrics for Supervised Learning Models of Machine L...
 
Support Vector Machines ( SVM )
Support Vector Machines ( SVM ) Support Vector Machines ( SVM )
Support Vector Machines ( SVM )
 
Explainable AI (XAI) - A Perspective
Explainable AI (XAI) - A Perspective Explainable AI (XAI) - A Perspective
Explainable AI (XAI) - A Perspective
 
Explicit Density Models
Explicit Density ModelsExplicit Density Models
Explicit Density Models
 
因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説因果探索: 基本から最近の発展までを概説
因果探索: 基本から最近の発展までを概説
 
Linear regression in machine learning
Linear regression in machine learningLinear regression in machine learning
Linear regression in machine learning
 
Outlier analysis and anomaly detection
Outlier analysis and anomaly detectionOutlier analysis and anomaly detection
Outlier analysis and anomaly detection
 
L 05 bandit with causality-公開版
L 05 bandit with causality-公開版L 05 bandit with causality-公開版
L 05 bandit with causality-公開版
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reduction
 
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
 
Anomaly Detection
Anomaly DetectionAnomaly Detection
Anomaly Detection
 

Similar to Dowhy: An end-to-end library for causal inference

Statistical Learning and Model Selection (1).pptx
Statistical Learning and Model Selection (1).pptxStatistical Learning and Model Selection (1).pptx
Statistical Learning and Model Selection (1).pptxrajalakshmi5921
 
Statistical Learning and Model Selection module 2.pptx
Statistical Learning and Model Selection module 2.pptxStatistical Learning and Model Selection module 2.pptx
Statistical Learning and Model Selection module 2.pptxnagarajan740445
 
Unit 3 – AIML.pptx
Unit 3 – AIML.pptxUnit 3 – AIML.pptx
Unit 3 – AIML.pptxhiblooms
 
Top 10 Data Science Practitioner Pitfalls
Top 10 Data Science Practitioner PitfallsTop 10 Data Science Practitioner Pitfalls
Top 10 Data Science Practitioner PitfallsSri Ambati
 
The 8 Step Data Mining Process
The 8 Step Data Mining ProcessThe 8 Step Data Mining Process
The 8 Step Data Mining ProcessMarc Berman
 
Machine learning - session 3
Machine learning - session 3Machine learning - session 3
Machine learning - session 3Luis Borbon
 
Machine Learning part 3 - Introduction to data science
Machine Learning part 3 - Introduction to data science Machine Learning part 3 - Introduction to data science
Machine Learning part 3 - Introduction to data science Frank Kienle
 
Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...
Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...
Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...Sangwoo Mo
 
R - what do the numbers mean? #RStats
R - what do the numbers mean? #RStatsR - what do the numbers mean? #RStats
R - what do the numbers mean? #RStatsJen Stirrup
 
Intro to machine learning
Intro to machine learningIntro to machine learning
Intro to machine learningAkshay Kanchan
 
STAT7440StudentIMLPresentationJishan.pptx
STAT7440StudentIMLPresentationJishan.pptxSTAT7440StudentIMLPresentationJishan.pptx
STAT7440StudentIMLPresentationJishan.pptxJishanAhmed24
 
'A critique of testing' UK TMF forum January 2015
'A critique of testing' UK TMF forum January 2015 'A critique of testing' UK TMF forum January 2015
'A critique of testing' UK TMF forum January 2015 Georgina Tilby
 
Barga Data Science lecture 2
Barga Data Science lecture 2Barga Data Science lecture 2
Barga Data Science lecture 2Roger Barga
 
Machine-Learning-Overview a statistical approach
Machine-Learning-Overview a statistical approachMachine-Learning-Overview a statistical approach
Machine-Learning-Overview a statistical approachAjit Ghodke
 
Unit-V Machine Learning.ppt
Unit-V Machine Learning.pptUnit-V Machine Learning.ppt
Unit-V Machine Learning.pptSharpmark256
 
PG STAT 531 Lecture 4 Exploratory Data Analysis
PG STAT 531 Lecture 4 Exploratory Data AnalysisPG STAT 531 Lecture 4 Exploratory Data Analysis
PG STAT 531 Lecture 4 Exploratory Data AnalysisAashish Patel
 
Causal Inference, Reinforcement Learning, and Continuous Optimization
Causal Inference, Reinforcement Learning, and Continuous OptimizationCausal Inference, Reinforcement Learning, and Continuous Optimization
Causal Inference, Reinforcement Learning, and Continuous OptimizationScientificRevenue
 
Spsshelp 100608163328-phpapp01
Spsshelp 100608163328-phpapp01Spsshelp 100608163328-phpapp01
Spsshelp 100608163328-phpapp01Henock Beyene
 
Experimental Design for Distributed Machine Learning with Myles Baker
Experimental Design for Distributed Machine Learning with Myles BakerExperimental Design for Distributed Machine Learning with Myles Baker
Experimental Design for Distributed Machine Learning with Myles BakerDatabricks
 

Similar to Dowhy: An end-to-end library for causal inference (20)

Statistical Learning and Model Selection (1).pptx
Statistical Learning and Model Selection (1).pptxStatistical Learning and Model Selection (1).pptx
Statistical Learning and Model Selection (1).pptx
 
Statistical Learning and Model Selection module 2.pptx
Statistical Learning and Model Selection module 2.pptxStatistical Learning and Model Selection module 2.pptx
Statistical Learning and Model Selection module 2.pptx
 
Unit 3 – AIML.pptx
Unit 3 – AIML.pptxUnit 3 – AIML.pptx
Unit 3 – AIML.pptx
 
Machine learning
Machine learningMachine learning
Machine learning
 
Top 10 Data Science Practitioner Pitfalls
Top 10 Data Science Practitioner PitfallsTop 10 Data Science Practitioner Pitfalls
Top 10 Data Science Practitioner Pitfalls
 
The 8 Step Data Mining Process
The 8 Step Data Mining ProcessThe 8 Step Data Mining Process
The 8 Step Data Mining Process
 
Machine learning - session 3
Machine learning - session 3Machine learning - session 3
Machine learning - session 3
 
Machine Learning part 3 - Introduction to data science
Machine Learning part 3 - Introduction to data science Machine Learning part 3 - Introduction to data science
Machine Learning part 3 - Introduction to data science
 
Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...
Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...
Challenging Common Assumptions in the Unsupervised Learning of Disentangled R...
 
R - what do the numbers mean? #RStats
R - what do the numbers mean? #RStatsR - what do the numbers mean? #RStats
R - what do the numbers mean? #RStats
 
Intro to machine learning
Intro to machine learningIntro to machine learning
Intro to machine learning
 
STAT7440StudentIMLPresentationJishan.pptx
STAT7440StudentIMLPresentationJishan.pptxSTAT7440StudentIMLPresentationJishan.pptx
STAT7440StudentIMLPresentationJishan.pptx
 
'A critique of testing' UK TMF forum January 2015
'A critique of testing' UK TMF forum January 2015 'A critique of testing' UK TMF forum January 2015
'A critique of testing' UK TMF forum January 2015
 
Barga Data Science lecture 2
Barga Data Science lecture 2Barga Data Science lecture 2
Barga Data Science lecture 2
 
Machine-Learning-Overview a statistical approach
Machine-Learning-Overview a statistical approachMachine-Learning-Overview a statistical approach
Machine-Learning-Overview a statistical approach
 
Unit-V Machine Learning.ppt
Unit-V Machine Learning.pptUnit-V Machine Learning.ppt
Unit-V Machine Learning.ppt
 
PG STAT 531 Lecture 4 Exploratory Data Analysis
PG STAT 531 Lecture 4 Exploratory Data AnalysisPG STAT 531 Lecture 4 Exploratory Data Analysis
PG STAT 531 Lecture 4 Exploratory Data Analysis
 
Causal Inference, Reinforcement Learning, and Continuous Optimization
Causal Inference, Reinforcement Learning, and Continuous OptimizationCausal Inference, Reinforcement Learning, and Continuous Optimization
Causal Inference, Reinforcement Learning, and Continuous Optimization
 
Spsshelp 100608163328-phpapp01
Spsshelp 100608163328-phpapp01Spsshelp 100608163328-phpapp01
Spsshelp 100608163328-phpapp01
 
Experimental Design for Distributed Machine Learning with Myles Baker
Experimental Design for Distributed Machine Learning with Myles BakerExperimental Design for Distributed Machine Learning with Myles Baker
Experimental Design for Distributed Machine Learning with Myles Baker
 

More from Amit Sharma

Alleviating Privacy Attacks Using Causal Models
Alleviating Privacy Attacks Using Causal ModelsAlleviating Privacy Attacks Using Causal Models
Alleviating Privacy Attacks Using Causal ModelsAmit Sharma
 
The Impact of Computing Systems | Causal inference in practice
The Impact of Computing Systems | Causal inference in practiceThe Impact of Computing Systems | Causal inference in practice
The Impact of Computing Systems | Causal inference in practiceAmit Sharma
 
Artificial Intelligence for Societal Impact
Artificial Intelligence for Societal ImpactArtificial Intelligence for Societal Impact
Artificial Intelligence for Societal ImpactAmit Sharma
 
Measuring effectiveness of machine learning systems
Measuring effectiveness of machine learning systemsMeasuring effectiveness of machine learning systems
Measuring effectiveness of machine learning systemsAmit Sharma
 
Causal data mining: Identifying causal effects at scale
Causal data mining: Identifying causal effects at scaleCausal data mining: Identifying causal effects at scale
Causal data mining: Identifying causal effects at scaleAmit Sharma
 
Auditing search engines for differential satisfaction across demographics
Auditing search engines for differential satisfaction across demographicsAuditing search engines for differential satisfaction across demographics
Auditing search engines for differential satisfaction across demographicsAmit Sharma
 
Causal inference in data science
Causal inference in data scienceCausal inference in data science
Causal inference in data scienceAmit Sharma
 
Causal inference in online systems: Methods, pitfalls and best practices
Causal inference in online systems: Methods, pitfalls and best practicesCausal inference in online systems: Methods, pitfalls and best practices
Causal inference in online systems: Methods, pitfalls and best practicesAmit Sharma
 
Equivalence causal frameworks: SEMs, Graphical models and Potential Outcomes
Equivalence causal frameworks: SEMs, Graphical models and Potential OutcomesEquivalence causal frameworks: SEMs, Graphical models and Potential Outcomes
Equivalence causal frameworks: SEMs, Graphical models and Potential OutcomesAmit Sharma
 
Estimating the causal impact of recommender systems
Estimating the causal impact of recommender systemsEstimating the causal impact of recommender systems
Estimating the causal impact of recommender systemsAmit Sharma
 
Predictability of popularity on online social media: Gaps between prediction ...
Predictability of popularity on online social media: Gaps between prediction ...Predictability of popularity on online social media: Gaps between prediction ...
Predictability of popularity on online social media: Gaps between prediction ...Amit Sharma
 
Data mining for causal inference: Effect of recommendations on Amazon.com
Data mining for causal inference: Effect of recommendations on Amazon.comData mining for causal inference: Effect of recommendations on Amazon.com
Data mining for causal inference: Effect of recommendations on Amazon.comAmit Sharma
 
Estimating influence of online activity feeds on people's actions
Estimating influence of online activity feeds on people's actionsEstimating influence of online activity feeds on people's actions
Estimating influence of online activity feeds on people's actionsAmit Sharma
 
From prediction to causation: Causal inference in online systems
From prediction to causation: Causal inference in online systemsFrom prediction to causation: Causal inference in online systems
From prediction to causation: Causal inference in online systemsAmit Sharma
 
Causal inference in practice
Causal inference in practiceCausal inference in practice
Causal inference in practiceAmit Sharma
 
Causal inference in practice: Here, there, causality is everywhere
Causal inference in practice: Here, there, causality is everywhereCausal inference in practice: Here, there, causality is everywhere
Causal inference in practice: Here, there, causality is everywhereAmit Sharma
 
The interplay of personal preference and social influence in sharing networks...
The interplay of personal preference and social influence in sharing networks...The interplay of personal preference and social influence in sharing networks...
The interplay of personal preference and social influence in sharing networks...Amit Sharma
 
The role of social connections in shaping our preferences
The role of social connections in shaping our preferencesThe role of social connections in shaping our preferences
The role of social connections in shaping our preferencesAmit Sharma
 
[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...
[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...
[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...Amit Sharma
 
RSWEB 2013: A research platform for social recommendation
RSWEB 2013: A research platform for social recommendationRSWEB 2013: A research platform for social recommendation
RSWEB 2013: A research platform for social recommendationAmit Sharma
 

More from Amit Sharma (20)

Alleviating Privacy Attacks Using Causal Models
Alleviating Privacy Attacks Using Causal ModelsAlleviating Privacy Attacks Using Causal Models
Alleviating Privacy Attacks Using Causal Models
 
The Impact of Computing Systems | Causal inference in practice
The Impact of Computing Systems | Causal inference in practiceThe Impact of Computing Systems | Causal inference in practice
The Impact of Computing Systems | Causal inference in practice
 
Artificial Intelligence for Societal Impact
Artificial Intelligence for Societal ImpactArtificial Intelligence for Societal Impact
Artificial Intelligence for Societal Impact
 
Measuring effectiveness of machine learning systems
Measuring effectiveness of machine learning systemsMeasuring effectiveness of machine learning systems
Measuring effectiveness of machine learning systems
 
Causal data mining: Identifying causal effects at scale
Causal data mining: Identifying causal effects at scaleCausal data mining: Identifying causal effects at scale
Causal data mining: Identifying causal effects at scale
 
Auditing search engines for differential satisfaction across demographics
Auditing search engines for differential satisfaction across demographicsAuditing search engines for differential satisfaction across demographics
Auditing search engines for differential satisfaction across demographics
 
Causal inference in data science
Causal inference in data scienceCausal inference in data science
Causal inference in data science
 
Causal inference in online systems: Methods, pitfalls and best practices
Causal inference in online systems: Methods, pitfalls and best practicesCausal inference in online systems: Methods, pitfalls and best practices
Causal inference in online systems: Methods, pitfalls and best practices
 
Equivalence causal frameworks: SEMs, Graphical models and Potential Outcomes
Equivalence causal frameworks: SEMs, Graphical models and Potential OutcomesEquivalence causal frameworks: SEMs, Graphical models and Potential Outcomes
Equivalence causal frameworks: SEMs, Graphical models and Potential Outcomes
 
Estimating the causal impact of recommender systems
Estimating the causal impact of recommender systemsEstimating the causal impact of recommender systems
Estimating the causal impact of recommender systems
 
Predictability of popularity on online social media: Gaps between prediction ...
Predictability of popularity on online social media: Gaps between prediction ...Predictability of popularity on online social media: Gaps between prediction ...
Predictability of popularity on online social media: Gaps between prediction ...
 
Data mining for causal inference: Effect of recommendations on Amazon.com
Data mining for causal inference: Effect of recommendations on Amazon.comData mining for causal inference: Effect of recommendations on Amazon.com
Data mining for causal inference: Effect of recommendations on Amazon.com
 
Estimating influence of online activity feeds on people's actions
Estimating influence of online activity feeds on people's actionsEstimating influence of online activity feeds on people's actions
Estimating influence of online activity feeds on people's actions
 
From prediction to causation: Causal inference in online systems
From prediction to causation: Causal inference in online systemsFrom prediction to causation: Causal inference in online systems
From prediction to causation: Causal inference in online systems
 
Causal inference in practice
Causal inference in practiceCausal inference in practice
Causal inference in practice
 
Causal inference in practice: Here, there, causality is everywhere
Causal inference in practice: Here, there, causality is everywhereCausal inference in practice: Here, there, causality is everywhere
Causal inference in practice: Here, there, causality is everywhere
 
The interplay of personal preference and social influence in sharing networks...
The interplay of personal preference and social influence in sharing networks...The interplay of personal preference and social influence in sharing networks...
The interplay of personal preference and social influence in sharing networks...
 
The role of social connections in shaping our preferences
The role of social connections in shaping our preferencesThe role of social connections in shaping our preferences
The role of social connections in shaping our preferences
 
[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...
[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...
[RecSys '13]Pairwise Learning: Experiments with Community Recommendation on L...
 
RSWEB 2013: A research platform for social recommendation
RSWEB 2013: A research platform for social recommendationRSWEB 2013: A research platform for social recommendation
RSWEB 2013: A research platform for social recommendation
 

Recently uploaded

GenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptxGenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptxBerniceCayabyab1
 
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)Columbia Weather Systems
 
Four Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.pptFour Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.pptJoemSTuliba
 
LIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptx
LIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptxLIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptx
LIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptxmalonesandreagweneth
 
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)riyaescorts54
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...lizamodels9
 
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》rnrncn29
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPirithiRaju
 
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.PraveenaKalaiselvan1
 
User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)Columbia Weather Systems
 
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxMicrophone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxpriyankatabhane
 
REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...
REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...
REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...Universidade Federal de Sergipe - UFS
 
Bioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptxBioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptx023NiWayanAnggiSriWa
 
Transposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.pptTransposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.pptArshadWarsi13
 
The dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptxThe dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptxEran Akiva Sinbar
 
Functional group interconversions(oxidation reduction)
Functional group interconversions(oxidation reduction)Functional group interconversions(oxidation reduction)
Functional group interconversions(oxidation reduction)itwameryclare
 
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxmaryFF1
 
Call Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCR
Call Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCRCall Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCR
Call Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCRlizamodels9
 
Pests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPirithiRaju
 

Recently uploaded (20)

GenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptxGenBio2 - Lesson 1 - Introduction to Genetics.pptx
GenBio2 - Lesson 1 - Introduction to Genetics.pptx
 
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
 
Four Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.pptFour Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.ppt
 
LIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptx
LIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptxLIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptx
LIGHT-PHENOMENA-BY-CABUALDIONALDOPANOGANCADIENTE-CONDEZA (1).pptx
 
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
 
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
 
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
 
User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)
 
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxMicrophone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
 
REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...
REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...
REVISTA DE BIOLOGIA E CIÊNCIAS DA TERRA ISSN 1519-5228 - Artigo_Bioterra_V24_...
 
Bioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptxBioteknologi kelas 10 kumer smapsa .pptx
Bioteknologi kelas 10 kumer smapsa .pptx
 
Transposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.pptTransposable elements in prokaryotes.ppt
Transposable elements in prokaryotes.ppt
 
The dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptxThe dark energy paradox leads to a new structure of spacetime.pptx
The dark energy paradox leads to a new structure of spacetime.pptx
 
Functional group interconversions(oxidation reduction)
Functional group interconversions(oxidation reduction)Functional group interconversions(oxidation reduction)
Functional group interconversions(oxidation reduction)
 
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
 
Call Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCR
Call Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCRCall Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCR
Call Girls In Nihal Vihar Delhi ❤️8860477959 Looking Escorts In 24/7 Delhi NCR
 
Volatile Oils Pharmacognosy And Phytochemistry -I
Volatile Oils Pharmacognosy And Phytochemistry -IVolatile Oils Pharmacognosy And Phytochemistry -I
Volatile Oils Pharmacognosy And Phytochemistry -I
 
Pests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdf
 

Dowhy: An end-to-end library for causal inference

  • 1. DoWhy: An End-to-End Library for Causal Inference Amit Sharma (@amt_shrma), Emre Kıcıman (@emrek) Microsoft Research Causal ML group @ Microsoft: https://www.microsoft.com/en-us/research/group/causal-inference/ Code: https://github.com/microsoft/dowhy Paper: https://arxiv.org/abs/2011.04216
  • 2. From prediction to decision-making Decision-making: Acting/intervening based on analysis • Interventions break correlations used by conventional ML • The feature with the highest importance score in a prediction model, • Need not be the best feature to act on • May not even affect the outcome at all! For decision-making, need to find the features that cause the outcome & estimate how the outcome would change if the features are changed.
  • 3. Many data science Qs are causal Qs • A/B experiments: If I change the algorithm, will it lead to a higher success rate? • Policy decisions: If we adopt this treatment/policy, will it lead to a healthier patient/more revenue/etc.? • Policy evaluation: knowing what I know now, did my policy help or hurt? • Credit attribution: are people buying because of the recommendation algorithm? Would they have bought anyway? In fact, causal questions form the basis of almost all scientific inquiry
  • 4. Prediction Causation Assume: 𝑃𝑡𝑟𝑎𝑖𝑛 𝑊, 𝐴, 𝑌 = 𝑃𝑡𝑒𝑠𝑡(𝑊, 𝐴, 𝑌) Estimate: min 𝐿( 𝑦, 𝑦) Evaluate: Cross-validation Assume: 𝑃𝑡𝑟𝑎𝑖𝑛 𝑊, 𝐴, 𝑌 ≠ 𝑃𝑡𝑒𝑠𝑡(𝑊, 𝐴, 𝑌)
  • 5. Two Fundamental Challenges for Causal Inference Multiple causal mechanisms and estimates can fit the same data distribution. Estimation about different data distributions than the training distribution (no easy “cross-validation”). 1. Assumptions 2. Evaluation Real World: do(A=1) Counterfactual World: do(A=0)
  • 6. We built DoWhy library to make assumptions front- and-center of any causal analysis. - Transparent declaration of assumptions - Evaluation of those assumptions, to the extent possible Most popular causal library on GitHub (>2.4k stars, 300+ forks) Taught in third-party tutorials and courses: O’Reilly, PyData, Northeastern, … An end-to-end platform for doing causal inference
  • 7. EconML, CausalML, CausalImpact, tmle,… Formulate correct estimand based on causal assumptions? Estimate causal effect Check robustness? Input Data <action, outcome, other variables> Domain Knowledge Causal Estimate
  • 8. Model causal mechanisms •Construct a causal graph based on domain knowledge Identify the target estimand •Formulate correct estimand based on the causal model Estimate causal effect •Use a suitable method to estimate effect Refute estimate •Check robustness of estimate to assumption violations Input Data <action, outcome, other variables> Domain Knowledge Causal effect DoWhy Action w Outcome v3 v5 v1,v2
  • 9. DoWhy provides a general API for the four steps of causal inference 1. Modeling: Create a causal graph to encode assumptions. 2. Identification: Formulate what to estimate. 3. Estimation: Compute the estimate. 4. Refutation: Validate the assumptions. We’ll discuss the four steps and show a code example using DoWhy.
  • 10. I. Model the assumptions using a causal graph Convert domain knowledge to a formal model of causal assumptions • 𝐴 → 𝐵 or 𝐵 → 𝐴? • Causal graph implies conditional statistical independences • E.g., 𝐴 ⫫ 𝐶, 𝐷 ⫫ A | B, … • Identified by d-separation rules [Pearl 2009] • These assumptions significantly impact the causal estimate we’ll obtain. A C B D
  • 11. Key intuitions about causal graphs • Assumptions are encoded by missing edges, and direction of edges • Relationships represent stable and independent mechanisms • Graph cannot be learnt from data alone • Graphs are a tool to help us reason about a specific problem
  • 12. Example Graph Assumption 1: User fatigue does not affect user interests Assumption 2: Past clicks do not directly affect outcome Assumption 3: Treatment does not affect user fatigue. ..and so on. User Interests YT User Fatigue Past Clicks
  • 13. Intervention is represented by a new graph User Interests YT User Fatigue Past Likes
  • 14. YTYT Want to answer questions about data that will be generated by intervention graph Observed data generated by this graph II. Identification: Formulate desired quantity and check if it is estimable from given data
  • 15. Trivial Example: Randomized Experiments • Observed graph is same as intervention graph in randomized experiment! • Treatment 𝑇 is already generated independent of all other features •  𝑃 𝑌 𝑑𝑜 𝑇 = 𝑃(𝑌|𝑇) • Intuition: Generalize by simulating randomized experiment • When treatment T is caused by other features, 𝑍, adjust for their influence to simulate a randomized experiment YT
  • 16. Adjustment Formula and Adjustment Sets Adjustment formula 𝑝 𝑌 𝑑𝑜 𝑇 = 𝑍 𝑝 𝑌 𝑇, 𝑍 𝑝(𝑍) Where 𝑍 must be a valid adjustment set: - The set of all parents of 𝑇 - Features identified via backdoor criterion - Features identified via “towards necessity” criterion Intuitions: - The union of all features is not necessarily a valid adjustment set - Why not always use parents? Sometimes parent features are unobserved
  • 17. Many kinds of identification methods Graphical constraint-based methods • Randomized and natural experiments • Adjustment Sets • Backdoor, “towards necessity” • Front-door criterion • Mediation formula Identification under additional non-graphical constraints • Instrumental variables • Regression discontinuity • Difference-in-differences Many of these methods can be used through DoWhy.
  • 18. III. Estimation: Compute the causal effect Estimation uses observed data to compute the target probability expression from the Identification step. For common identification strategies using adjustment sets, 𝐸[𝑌|𝑑𝑜 𝑇 = 𝑡 , 𝑊 = 𝑤]= 𝐸 𝑌 𝑇 = 𝑡, 𝑊 = 𝑤 assuming W is a valid adjustment set. • For binary treatment, Causal Effect = 𝐸 𝑌 𝑇 = 1, 𝑊 = 𝑤 − 𝐸 𝑌 𝑇 = 0, 𝑊 = 𝑤 Goal: Estimating conditional probability Y|T=t when all confounders W are kept constant.
  • 19. Control Treatment (Cycling) Simple Matching: Match data points with the same confounders and then compare their outcomes
  • 20. Simple Matching: Match data points with the same confounders and then compare their outcomes Identify pairs of treated (𝑗) and untreated individuals (𝑘) who are similar or identical to each other. Match := 𝐷𝑖𝑠𝑡𝑎𝑛𝑐𝑒 𝑊𝑗, 𝑊𝑘 < 𝜖 • Paired individuals have almost the same confounders. Causal Effect = 𝑗,𝑘 ∈𝑀𝑎𝑡𝑐ℎ(𝑦𝑗 − 𝑦 𝑘) : : : : : : : : :
  • 21. Challenges of building a good estimator • Variance: If we have a stringent matching criterion, we may obtain very few matches and the estimate will be unreliable. • Bias: If we relax the matching criterion, we obtain many more matches but now the estimate does not capture the target estimand. • Uneven treatment assignment: If very few people have treatment, leads to both high bias and variance. Need better methods to navigate the bias-variance tradeoff.
  • 22. Machine learning methods can help find a better match for each data point Synthetic Control: If a good match does not exist for a data point, can we create it synthetically? Learn 𝑦 = 𝑓𝑡=0 𝑤 , 𝑦 = 𝑓𝑡=1(𝑤) Assuming f approximates the true relationship between 𝑌 and 𝑊, Causal Effect = 𝑖 𝑡𝑖(𝑦𝑖 − 𝑓𝑡=0(𝑤𝑖)) + (1 − 𝑡𝑖)(𝑓𝑡=1 𝑤𝑖 − 𝑦𝑖) Confounder (W) Outcome(Y) Confounder T=1 T=0
  • 23. Other ML methods generalize estimation to continuous treatments The standard predictor, 𝑦 = 𝑓 𝑡, 𝑤 + 𝜖 may not provide the right estimate for 𝜕𝑦 𝜕𝑡 . Double-ML [Chernozhukov et al. 2016]: • Stage 1: Break down conditional estimation into two prediction sub-tasks. 𝑦 = 𝑔 𝑤 + 𝑦 𝑡 = ℎ 𝑤 + 𝑡 𝑦 and 𝑡 refer to the unconfounded variation in 𝑌 and 𝑇 respectively after conditioning on w. • Stage 2: A final regression of 𝑦 on 𝑡 gives the causal effect. 𝑦~ 𝛽 𝑡 + 𝜖 Outcome(Y) Confounder (W) Treatment(T) Confounder (W) Residual Treatment ( 𝑇) ResidualOutcome(𝑌)
  • 24. Depending on the dataset properties, different estimation methods can be used Simple Conditioning • Matching • Stratification Propensity Score-Based [Rubin 1983] • Propensity Matching • Inverse Propensity Weighting Synthetic Control [Abadie et al.] Outcome-based • Double ML [Chernozhukov et al. 2016] • T-learner • X-learner [Kunzel et al. 2017] Loss-Based • R-learner [Nie & Wager 2017] Threshold-based • Difference-in-differences All these methods can be called through DoWhy. (directly or through the Microsoft EconML library)
  • 25. IV. Robustness Checks: Test robustness of obtained estimate to violation of assumptions Obtained estimate depends on many (untestable) assumptions. Model: Did we miss any unobserved variables in the assumed graph? Did we miss any edge between two variables in the assumed graph? Identify: Did we make any parametric assumption for deriving the estimand? Estimate: Is the assumed functional form sufficient for capturing the variation in data? Do the estimator assumptions lead to high variance?
  • 26. Best practice: Do refutation/robustness tests for as many assumptions as possible UNIT TESTS Model: • Conditional Independence Test Identify: • D-separation Test Estimate: • Bootstrap Refuter • Data Subset Refuter INTEGRATION TESTS Test all steps at once. • Placebo Treatment Refuter • Dummy Outcome Refuter • Random Common Cause Refuter • Sensitivity Analysis • Simulated Outcome Refuter /Synth-validation [Schuler et al. 2017] All these refutation methods are implemented in DoWhy. Caveat: They can refute a given analysis, but cannot prove its correctness.
  • 27. Example 1: Conditional Independence Refuter Through its edges, each causal graph implies certain conditional independence constraints on its nodes. [d-separation, Pearl 2009] Model refutation: Check if the observed data satisfies the assumed model’s independence constraints. • Use an appropriate statistical test for independence [Heinze-Demel et al. 2018]. • If not, the model is incorrect. W YT A B Conditional Independencies: 𝐴⫫𝐵 𝐴⫫T|W 𝐵⫫ T|W
  • 28. Example 1: Placebo Treatment (“A/A”) Refuter Q: What if we can generate a dataset where the treatment does not cause the outcome? Then a correct causal inference method should return an estimate of zero. Placebo Treatment Refuter: Replace treatment variable T by a randomly generated variable (e.g., Gaussian). • Rerun the causal inference analysis. • If the estimate is significantly away from zero, then analysis is incorrect. W YT W YT ? Original Treatment “Placebo” Treatment
  • 29. Example 2: Add Unobserved Confounder to check sensitivity of an estimate Q: What if there was an unobserved confounder that was not included in the causal model? Check how sensitive the obtained estimate is after introducing a new confounder. Unobserved Confounder Refuter: • Simulate a confounder based on a given correlation 𝜌 with both treatment and outcome. • Maximum Correlation 𝜌 is based on the maximum correlation of any observed confounder. • Re-run the analysis and check if the sign/direction of estimate flips. W YT Observed Confounders W YT U Unobserved Confounder
  • 30. Walk-through of the 4 steps using the DoWhy Python library
  • 31. 𝒙 𝒚 𝒙 𝒚 𝒘 A mystery problem of two correlated variables: Does 𝒙 cause 𝒚?
  • 32.
  • 33.
  • 34.
  • 35.
  • 36. You can try out this example on Github: https://github.com/microsoft/dowhy/blob/master/docs/source/example_notebooks/dowhy_confounder_example.ipynb
  • 37. What else is in DoWhy? • A unified, extensible API for causal inference that allows external implementations for the 4 steps • Can use estimation methods from external libraries such as EconML and CausalML. • A convenient CausalDataFrame (contributed by Adam Kelleher) • Pandas DataFrame extension with inbuilt functions for calculating causal effect.
  • 38. Summary: DoWhy, a library that focuses on causal assumptions and their validation Growing open-source community: > 30 contributors • Roadmap: More powerful refutation tests, counterfactual prediction. • Please contribute! Would love to hear your ideas on Github. Resources  DoWhy Library: https://github.com/microsoft/dowhy  Arxiv paper on the four steps: https://arxiv.org/abs/2011.04216  Upcoming book on causality and ML: http://causalinference.gitlab.io/ Goal: A unified API for causal inference problems, just like PyTorch or Tensorflow for predictive ML. thank you– Amit Sharma (@amt_shrma)