Hi everyone! I'm working on a network analysis project and have some questions about how to calculate and interpret eigenvector centralization in signed network. Hoping someone can help me out.
Considering a signed network with symmetric adjacency matrix like this:
0 -0.5 0.85
-0.5 0 -0.43
0.85 -0.43 0
and its eigenvector centralities of each node are {0.63, -0.48, 0.61}
Here are my questions:
1. How can I calculate the eigenvector centralization of such network using Freeman's method (with the maximum centrality comparing to every centralities; Freeman, 1978)? I found most papers use this method only in unsigned network.
2. How to interpret the centralization I calculated? I have tried to use standard deviation and gini coeffienct to calculate the eigenvector centralization. But I realized that is problematic. For example, even change the sign of centrality above to {-0.63, 0.48, -0.61}, I will still receive the same centralization. In other words, I can't differentiate whether the network is positively or negatively influenced in general.
I'll be more than grateful if anyone could give me some instructions to my question!
Best regards!