Learn R Programming

QuACN (version 1.8.0)

edgeMagnitudeMIC: Mean information content on the edge magnitude

Description

This method calculates the mean information content on the edge magnitude.

Usage

edgeMagnitudeMIC(g, deg=NULL)

Arguments

g
a graph as a graphNEL object.
deg
the degree of each node of g. Will be automatically calculated if not supplied.

Value

a measure based on the ratio of individual edge connectivities to their sum (the Randic index).

References

Bonchev, D., Mekenyan, O. and Trinajstic, N. Isomer Discrimination by Topological Information Approach. J. Comput. Chem., 2:127-148, 1981

Examples

Run this code
set.seed(987)
g <- randomEGraph(LETTERS[1:10], 0.3)
deg <- graph::degree(g)

edgeMagnitudeMIC(g, deg)

Run the code above in your browser using DataLab