numNoEdges {graph} | R Documentation |
numNoEdges
calculates the number of nodes that have an edge list
of NULL (i.e. no edges).
numNoEdges(objGraph)
objGraph |
the graph object |
An integer representing the number of NULL edge lists in the graph.
Elizabeth Whalen
numEdges
, aveNumEdges
,
mostEdges
set.seed(999) g1 <- randomEGraph(letters, .01) numNoEdges(g1)