degree.dist function

Plot of the degree distribution of a network

Plot of the degree distribution of a network

Plot the degree distribution of a network.

degree.dist(net, cumulative = TRUE, log = TRUE)

Arguments

  • net: The input network.
  • cumulative: A logical index asking whether a cumulative distribution should be returned.
  • log: A logical index asking whether a logarithm-scaled distribution should be returned.

Returns

A .gif plot.

Details

Plot the degree distribution of a network.

Examples

## Not run: x <- net.erdos.renyi.gnp(1000, 0.01) ## Plot the standard degree distribution of x. degree.dist(x, cumulative = FALSE, log = FALSE) ## Plot the degree distribution of x, with a logarithm scale. degree.dist(x, cumulative = FALSE, log = TRUE) ## Plot the cumulative degree distribution of x. degree.dist(x, cumulative = TRUE, log = FALSE) ## Plot the cumulative degree distribution of x, with a logarithm scale. degree.dist(x, cumulative = TRUE, log = TRUE) ## End(Not run)

Author(s)

Xu Dong

  • Maintainer: Nazrul Shaikh
  • License: GPL (>= 2)
  • Last published: 2020-12-01

Useful links