Causal Inference Using Bayesian Structural Time-Series Models

By Medium - 2021-03-20

Description

In this article I will provide you with a brief introduction to causal inference and why we would need it as a Data Scientist, and then I present a practical example of how to apply the concept using…

Summary

  • Investigating the effect of training activities on the volume of bugs reported by a software engineering team In this article I will provide you with a brief introduction to causal inference and why we would need it as a Data Scientist, and then I present a practical example of how to apply the concept using the Python library Causal Impact.
  • In our marketing example, we have a record of our sales after the intervention of a campaign, but we do not know what the sales would have been without that intervention.
  • However, to increase confidence in our conclusion we will utilize the Causal Impactlibrary for our statistical analysis.
  • The model will use the bug reporting data for all of the software engineering teams to help us determine whether the specified intervention was the true cause of the decrease in bugs reported for the Web team.

 

Topics

  1. Management (0.39)
  2. Backend (0.15)
  3. Frontend (0.13)

Similar Articles

Facebook’s Prophet + Deep Learning = NeuralProphet

By Medium - 2020-12-10

While learning about time series forecasting, sooner or later you will encounter the vastly popular Prophet model, developed by Facebook. It gained lots of popularity due to the fact that it provides…

K-fold Cross Validation with PyTorch

By MachineCurve - 2021-02-02

Explanations and code examples showing you how to use K-fold Cross Validation for Machine Learning model evaluation/testing with PyTorch.