-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is eigenvector centrality defined intra-component? #190
Comments
Your suspicion is correct. However, this was a changed with NetLogo 6 (iirc); I believe you are looking at old documentation there. The current documentation is here: https://ccl.northwestern.edu/netlogo/6.0/docs/nw.html#nw:eigenvector-centrality The current documentation, however, only states that our implementation should agree with Gephi's, but does not explicitly state that it is normalized relative to each component. It probably should. |
Many thanks! |
Ah, good call. That is ambiguous. For each component, the centralities are normalized so that the largest centrality will be 1; i.e. all centralities are divided by the maximum centrality on their component. |
Thanks again! |
I'm doing some exploration and found that if you have three nodes (a) (b)---(c), where (a) is isolated and the other two are connected by an undirected link, then when applying nw:eigenvector-centrality all turtles/nodes receive a value of 1.
The manual (http://ccl.northwestern.edu/netlogo/5.0/docs/nw.html#eigenvector-centrality) states that this should report "false" since the network is not connected. My suspicion is that the implementation is measuring the eigenvector of each turtle relative to its component.
Am I right?
Many thanks!
The text was updated successfully, but these errors were encountered: