knnmi.cross | R Documentation |
A function that estimates the mutual information between all pairs of
rows of matrices mat1
and mat2
using entropy estimates
from K-nearest neighbor distances.
knnmi.cross(mat1, mat2, k=3, noise=1e-12)
mat1 |
a numeric matrix (for the reconstruction of gene regulatory networks, genes on rows and samples on columns). |
mat2 |
a numeric matrix with the same number of columns as |
k |
the number of nearest neighbors to consider to estimate the
mutual information. Must be less than the number of columns of |
noise |
the magnitude of the random noise added to break ties. |
The function adds a small random noise to the data in order to break ties due to limited numerical precision.
By default, the function uses all the available cores. You can
set the actual number of threads used to N by exporting the
environment variable OMP_NUM_THREADS=N
.
Kraskov, Alexander and Stogbauer, Harald and Grassberger, Peter. Estimating mutual information. Phys. Rev. E, 2004.
knnmi
knnmi.all
mat1 <- matrix(rnorm(1000), nrow=10)
mat2 <- matrix(rnorm(1000), nrow=10)
knnmi.cross(mat1, mat2, 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.