You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Adamic-Adar index is meant for undirected graphs, since it is computed using the degree of the shared neighbors by two vertices in the graph. This implementation is intended for directed graphs but ignores edge direction to interpret the graph as undirected. It computes the index for every pair of vertices connected by an edge and associates it with that edge.
Signature
Input Argument
Type
Comment
G
graph
the graph.
Output Argument
Type
Comment
adamic_adar
edgeProp
edge property holding the Adamic-Adar index of each edge in the graph.