metric.degree.mean {fastnet} | R Documentation |
Calculate the mean degree of a graph.
metric.degree.mean(g)
g |
The input network. |
The mean degree is the average value of the degrees of all nodes in graph g.
A real constant.
Xu Dong, Nazrul Shaikh.
## Not run:
x <- net.erdos.renyi.gnp(1000, 0.01)
metric.degree.mean(x)
## End(Not run)