Testable Implications
Bayesian Network
Last updated
Bayesian Network
Last updated
The Bayesian network represents the probabilistic relationships between the treatment and the outcome. The conditional dependencies drawn from the DAG are used for performing inference and for learning more about these networks
DAG can help us with probability Distributions as well:
Variables that are independent from each other
variables conditionally independent from each other
methods to factor and simplify the joint distribution
DAG are the model representation of how we think the world works. DAG is becoming a very essential tool in the field of Data Science.
Dependencies and Independencies are important to know and understand as it can tell us alot of information.
Example:
Decomposition of Joint distribution :
Note: We start from the root node(which has no parent and move from there to subsequent child nodes)
Probability distributions from DAG
F is dependent on E
F is independent of A, B, C, D, G conditional on E (The only thing that affects F is E, so if we condition on E we can control what affects F )
F & C are marginally dependent or marginally associated with each other
Similarly, we can check the dependency for other variables. Thus we just saw that probability and this DAG are compatible with each other.
****