dangalchev_closeness_centrality function

Dangalchev Closeness Centrality

Dangalchev Closeness Centrality

This function computes the Dangalchev Closeness Centrality for nodes in a network. The Dangalchev Closeness Centrality measures closeness by removing nodes and edges, allowing for easier evaluation and handling of unconnected graphs.

dangalchev_closeness_centrality( x, vids = V(x), mode = c("all", "out", "in"), weights = NULL )

Arguments

  • x: An igraph or a network object.
  • vids: Nodes to be considered in the calculation.
  • mode: A character value indicating whether the shortest paths "in" or "out" of the nodes in directed graphs should be considered. For undirected graphs, use "all".
  • weights: A numeric vector indicating the weights of the edges.

Returns

A numeric vector including the centrality values for each node. The centrality values represent the Dangalchev Closeness Centrality measure for each node in the network.

Examples

data(zachary) dangalchev_closeness_centrality(zachary)

References

Dangalchev, C. (2006). Residual closeness in networks. Physica A: Statistical Mechanics and its Applications, 365, 556-564. DOI: 10.1016/j.physa.2005.12.020

See Also

closeness.residual

Author(s)

Minoo Ashtiani, Mehdi Mirzaie, Mohieddin Jafari

  • Maintainer: Minoo Ashtiani
  • License: GPL-3
  • Last published: 2023-08-08

Useful links