We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does a decrease in resolution result in a much larger number of clusters? Increasing resolution also increases the number of clusters.
`G = nx.erdos_renyi_graph(1000, 0.01) partition = community_louvain.best_partition(G,resolution=1) C=[]
for k in partition.values(): C.append(k) C=set(C) len(C)`
The text was updated successfully, but these errors were encountered:
Having the same problem here
Sorry, something went wrong.
No branches or pull requests
Why does a decrease in resolution result in a much larger number of clusters? Increasing resolution also increases the number of clusters.
`G = nx.erdos_renyi_graph(1000, 0.01)
partition = community_louvain.best_partition(G,resolution=1)
C=[]
for k in partition.values():
C.append(k)
C=set(C)
len(C)`
The text was updated successfully, but these errors were encountered: