I want to find these three Prestige measures for an existing graph using python:
- Degree Prestige
- Proximity Prestige
- Rank Prestige
Can I use networkx for this purpose? If not, then which library can I use and how can I do it. Any links or references are appreciated.
Yes, you can but you to implement the measures by yourself as far as I know.
For instance, consider the Degree prestige defined as the number of incoming links to a node divided by the total possible number of incoming links.
In this case you could just calculate it as:
Same for the other measures which can be easily implemented used the functions defined by networkx.