Reputation: 21
I am trying to calculate the graphlet degree (basically the count of graphlets rooted at a node) for each node in a graph in python. I am using networkx library and am unable to find a suitable implementation. Can someone help me out here?
Upvotes: 1
Views: 692
Reputation: 528
The pyFGLT
package (https://fcdimitr.github.io/pyfglt/) allows you to calculate graphlet degrees for a graph (disclaimer: I am a maintainer in the package).
Upvotes: 0