python-louvain icon indicating copy to clipboard operation
python-louvain copied to clipboard

Louvain Community Detection

Results 14 python-louvain issues
Sort by recently updated
recently updated
newest added

As said in the title, does this package support nodes with assigned "x" and "y" positions?

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=[]...

**Issue** Cannot import correctly the package from Google Colab. It appears to be empty. Minimal Colab [example](https://colab.research.google.com/drive/1CQQJZVT5SewA85S8nYc1aM0bmnHPjz0F?usp=sharing).

I recently stumbled across the paper: https://www.nature.com/articles/s41598-019-41695-z **From Louvain to Leiden: guaranteeing well-connected communities** V. A. Traag, L. Waltman & N. J. van Eck Scientific Reports volume 9, Article number:...

enhancement

Why is the package listed as `python-louvain` but you have to use it with `import community` ? * It is misleading as people try to do `pip install community` *...

Do you know how I would go about adapting this algorithm to directed networks? Or can it only be used on undirected networks?

enhancement

Discussions on https://bitbucket.org/taynaud/python-louvain/issues/34/negative-weights

enhancement

I think there is some point than is not very well about the function __modularity. I think the result should write as the below, in the article, the denominator of...

G = nx.karate_club_graph(). how can i prepare my own dataset.What is the data format?can you give some examples?