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)`
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)`