Pruning tool to identify small subsets of network partitions that are significant from the perspective of stochastic block model inference.
Project description
ModularityPruning
ModularityPruning is a pruning tool to identify small subsets of network partitions that are significant from the perspective of stochastic block model inference. This method works for single-layer and multi-layer networks, as well as for restricting focus to a fixed number of communities when desired.
See the documentation or the journal article at https://doi.org/10.1038/s41598-022-20142-6 for more information.
Significantly more details can be found in the article's Supplementary Information.
Installation
This project is on PyPI and can be installed with
pip install modularitypruning
# OR
pip3 install modularitypruning
Alternatively, you can install it from this repository directly:
git clone https://github.com/ragibson/ModularityPruning
cd ModularityPruning
python3 setup.py install
Basic Usage
This package interfaces directly with python-igraph. A simple example of its usage is
import igraph as ig
from modularitypruning import prune_to_stable_partitions
from modularitypruning.leiden_utilities import repeated_leiden_from_gammas
import numpy as np
# get Karate Club graph in igraph
G = ig.Graph.Famous("Zachary")
# run leiden 1000 times on this graph from gamma=0 to gamma=2
partitions = repeated_leiden_from_gammas(G, np.linspace(0, 2, 1000))
# prune to the stable partitions from gamma=0 to gamma=2
stable_partitions = prune_to_stable_partitions(G, partitions, 0, 2)
print(stable_partitions)
This prints
[(0, 0, 0, 0, 1, 1, 1, 0, 2, 2, 1, 0, 0, 0, 2, 2, 1, 0, 2, 0, 2, 0, 2, 3, 3, 3, 2, 3, 3, 2, 2, 3, 2, 2)]
which is the stable 4-community split of the Karate Club network.
More Information
The issues (which contains some potential future work) and figure generation runtimes README may also be of interest.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file modularitypruning-1.4.1.tar.gz
.
File metadata
- Download URL: modularitypruning-1.4.1.tar.gz
- Upload date:
- Size: 31.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 887b8626cbceaa28857c3cefa899d086edd255be1cc1632b38973353d70922dd |
|
MD5 | 3b0a962e41a4748ed5bb939597b546cb |
|
BLAKE2b-256 | 796d1fe8f753a1bc427f0e7f80a55c58890ece6127ac87478803373422ac7a9e |
File details
Details for the file modularitypruning-1.4.1-py3-none-any.whl
.
File metadata
- Download URL: modularitypruning-1.4.1-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5980b0846412065bdc4db7a3aa981329cead074ac1c4c53458c035053c2428ba |
|
MD5 | 2377c8fddab880193dae086569a9c10f |
|
BLAKE2b-256 | af60a09691b3ddcd527f4fcdeb7db20a91ea52bc9dfccd4fc64ce55c97a75b27 |