R/metric.graph.density.R

#' Graph Density
#'
#' @description Calculate the density of a graph.
#' @param g	The input network.
#' @details Computes the ratio of the number of edges and the number of possible edges.
#' @return A real constant.
#' @author Xu Dong, Nazrul Shaikh.
#' @examples \dontrun{
#' x <-  net.erdos.renyi.gnp(1000, 0.01)
#' metric.graph.density(x)}
#' @export

metric.graph.density <- function (g) {
  if (!is.list(g)) stop("Parameter 'g' must be a list",call. = FALSE)
  n <- length(g)
  density <- sum(lengths(g))/(n*(n-1))
  density
}
networkgroupR/fastnet documentation built on May 23, 2019, 1:32 p.m.