Constructing mutual information matrix
makemim
takes the data set as input and computes mutual information values for each pair of variables (e.g. gene). - see details.
makemim( expdata )
expdata
: Data matrix where rows correspond to variables (e.g. genes) and columns to samples.makemim
returns a symmetric mutual information matrix using empirical Gaussian estimator.
A mutual information matrix is generated from a data set using an empirical Gaussian estimator.
G. A. Darbellay, I. Vajda, "Estimation of the information by an adaptive partitioning of the observation space", IEEE Trans. Inf. Theory vol.45 (1999)
G. Altay, F. Emmert-Streib, "Inferring the conservative causal core of gene regulatory networks", BMC Systems Biology, (2010) 4:132.
c3
,c3net
, copula
, checknet
data(expdata) expdata <- copula(expdata) mim <- makemim(expdata)
Useful links