EasyGraph is an open-source network analysis library designed to cover advanced network processing methods. It includes functionalities for detecting structural hole spanners, network embedding, and various classic network analysis techniques.
I think this is a common problem for several graph metrics and could be easily supported.
Take node degree as an example. Suppose we have a graph with 100k nodes and 500k edges. I just want to know the degree values of 100 nodes within that graph.
One direct way is to just compute the degree values of these 100 nodes. Existing implementations seem to require computing all the nodes and then selecting the values corresponding to the desired nodes.
I think this is a common problem for several graph metrics and could be easily supported.
Take node degree as an example. Suppose we have a graph with 100k nodes and 500k edges. I just want to know the degree values of 100 nodes within that graph.
One direct way is to just compute the degree values of these 100 nodes. Existing implementations seem to require computing all the nodes and then selecting the values corresponding to the desired nodes.