package
0.0.0-20190426092945-678096d81a4b
Repository: https://github.com/gonum/graph.git
Documentation: pkg.go.dev

# Functions

Betweenness returns the non-zero betweenness centrality for nodes in the unweighted graph g.
BetweennessWeighted returns the non-zero betweenness centrality for nodes in the weighted graph g used to construct the given shortest paths.
Closeness returns the closeness centrality for nodes in the graph g used to construct the given shortest paths.
EdgeBetweenness returns the non-zero betweenness centrality for edges in the unweighted graph g.
EdgeBetweennessWeighted returns the non-zero betweenness centrality for edges in the weighted graph g.
Farness returns the farness for nodes in the graph g used to construct the given shortest paths.
Harmonic returns the harmonic centrality for nodes in the graph g used to construct the given shortest paths.
HITS returns the Hyperlink-Induced Topic Search hub-authority scores for nodes of the directed graph g.
PageRank returns the PageRank weights for nodes of the directed graph g using the given damping factor and terminating when the 2-norm of the vector difference between iterations is below tol.
PageRankSparse returns the PageRank weights for nodes of the sparse directed graph g using the given damping factor and terminating when the 2-norm of the vector difference between iterations is below tol.
Residual returns the Dangalchev's residual closeness for nodes in the graph g used to construct the given shortest paths.

# Structs

HubAuthority is a Hyperlink-Induced Topic Search hub-authority score pair.

# Interfaces

WeightedGraph is a graph with edge weights.