Compute the mutual information of two discrete samples
MI(cl1, cl2)
cl1
: vector of discrete labelscl2
: vector of discrete labelsthe mutual information between the two discrete samples
cl1 <- sample(2, 500, replace = TRUE) cl2 <- sample(2, 500, replace = TRUE) MI(cl1, cl2)
Useful links