Reputation: 907
I am trying to use networkx
's networkx.algorithms.community.quality
module to use coverage()
But when I execute
from networkx.algorithms.community.quality import coverage
It shows
ImportError: No module named 'networkx.algorithms.community.quality'
Letter i found, my python only only find networkx.algorithms.community.kclique
and networkx.algorithms.community.tests
module. No quality
module. My networkx
version in 1.11, which is the latest.
Can anybody give me clue?
Upvotes: 0
Views: 947
Reputation: 281822
That module doesn't exist on 1.11. I don't know if its functionality is somewhere else on 1.11 or if that functionality just doesn't exist on 1.11, but you're not going to find it in networkx.algorithms.community.quality
Upvotes: 1