CondMutualInfo {rWMBAT} | R Documentation |
Calculates the mutual information of two variables conditioned on a third
CondMutualInfo(V1, V2, condV)
V1 |
one of the two vectors |
V2 |
one of the two vectors |
condV |
given condition |
mutual information of two variables conditioned on a third
Qian Si, College of William and Mary, Dept. of Physics, 2009
a<-c(1 ,2, 1, 2, 1) b<-c(2, 1, 2, 1, 1) condV<-c(2, 1, 2, 2, 1) MIxyz <- CondMutualInfo(a, b, condV)