Applied Statistical Theory: Belief Networks
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Applied statistical theory is a new series that will cover the basic methodology and framework behind various statistical procedures. As analysts, we need to know enough about what we’re doing to be dangerous and explain approaches to others. It’s not enough to say “I used X because the misclassification rate was low.” At the same time, we don’t need to have doctoral level understanding of approach X. I’m hoping that these posts will provide a simple, succinct middle ground for understanding various statistical techniques.
Probabilistic grphical models represent the conditional dependencies between random variables through a graph structure. Nodes correspond to random variables and edges represent statistical dependencies between the variables. Two variables are said to be conditionally dependent if they have a direct impact on each others’ values. Therefore, a graph with directed edges from parent and child
denotes a causal relationship. Two variables are conditionally independent if the link between those variables are conditional on another. For a graph with directed edges from
to
and from
to
, it would suggest that
and
are conditionally independent given variable
. Each node fits a probability distribution function that depends only on the value(s) of the variables with edges leading into the variable. For example, the probability distribution for variable
in the following graphic depends only on the value of variable
.
Let’s consider a graphical model with variables and a set of dependencies between the variables,
. For each
and
, we denote a set of conditional probability distributions for each
given the parent variable. In the following directed acyclic graph, we see that
. This means that the probability of
is conditionally dependent only on
and the value of
does not explain the other random variables. For belief networks, inference involves computing the probability of each value of a node in a network.
There you go; the absolute basics. And below is a presentation on belief networks that I made last year.
![](https://i0.wp.com/pixel.wp.com/b.gif?resize=1%2C1)
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.