Description Usage Arguments Value Author(s) References Examples
View source: R/informationBondIndex.R
This method calculates the information bond index.
1 |
g |
a graph as a graphNEL object. Each edge must have a "bond" data attribute containing one of the values 1 (single bond), 2 (double bond), 3 (triple bond) or 1.5 (aromatic bond). |
The return value is the information bond index of the specified input graph. This measure is based on edge weights which are interpreted as the bond multiplicity values.
Michael Schutte
Dosmorov, S.V. Generation of Homogeneous Reaction Mechanism. Kinetics and Catalysis, 1982
1 2 3 4 5 6 7 | set.seed(987)
g <- randomEGraph(LETTERS[1:10], 0.3)
edgeDataDefaults(g, "bond") <- 1
edgeData(g, "E", "H", "bond") <- 2
edgeData(g, "I", "J", "bond") <- 2
informationBondIndex(g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.