graph (version 1.50.0)

aveNumEdges: Calculate the average number of edges in a graph

Description

aveNumEdges divides the number of edges in the graph by the number of nodes to give the average number of edges.

Usage

aveNumEdges(objgraph)

Arguments

objgraph
the graph object

Value

A double representing the average number of edges will be returned.

See Also

numEdges, mostEdges, numNoEdges

Examples

Run this code
 set.seed(124)
 g1 <- randomGraph(1:10, letters[7:12], p=.6)
 aveNumEdges(g1)

Run the code above in your browser using DataLab