Community Discovery algorithm
Project description
ANGEL
Community discovery in complex networks is an interesting problem with a number of applications, especially in the knowledge extraction task in social and information networks. However, many large networks often lack a particular community organization at a global level. In these cases, traditional graph partitioning algorithms fail to let the latent knowledge embedded in modular structure emerge, because they impose a top-down global view of a network. We propose here a simple local-first approach to community discovery, namely Angel, able to unveil the modular organization of real complex networks. This is achieved by democratically letting each node vote for the communities it sees surrounding it in its limited view of the global system, i.e. its ego neighborhood, using a label propagation algorithm; finally, the local communities are merged into a global collection.
Moreover, we provide also an evolution of Angel, namely ArchAngel, designed to extract community from evolving network topologies.
Note: Angel has been integrated within CDlib a python package dedicated to community detection algorithms, check it out!
Installation
You can easily install the updated version of Angel (and Archangel) by using pip:
pip install angel-cd
or using conda
conda install -c giuliorossetti angel-cd
Implementation details
Required input format(s)
Angel: .ncol edgelist (nodes represented with integer ids).
node_id0 node_id1
ArchAngel: Extended .ncol edgelist (nodes represented with integer ids).
node_id0 node_id1 snapshot_id
Execution
Angel is written in python and requires the following package to run:
- python 3.x
- python-igraph
- networkx
- tqdm
Angel
import angel as a
an = a.Angel(filename, threshold=0.4, min_comsize=3, outfile_name="angel_communities.txt")
an.execute()
Where:
- filename: edgelist filename
- threshold: merging threshold in [0,1]
- min_com_size: minimum size for communities
- out_filename: desired filename for the output
or alternatively
import angel as a
an = a.Angel(graph=g, threshold=0.4, min_com_size=3, out_filename="communities.txt")
an.execute()
Where:
- g: an igraph.Graph object
ArchAngel
import angel as a
aa = a.ArchAngel(filename, threshold=0.4, match_threshold=0.4, min_com_size=3, outfile_path="./")
aa.execute()
Where:
- filename: edgelist filename
- threshold: merging threshold in [0,1]
- match_threshold: cross-time community matching threshold in [0, 1]
- min_com_size: minimum size for communities
- outfile_path: path for algorithm output files
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 angel_cd-1.0.3.tar.gz
.
File metadata
- Download URL: angel_cd-1.0.3.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27d92d81c668c128e02cdd63763e9517cc641172edd04e3e4b5b4ff85ada711c |
|
MD5 | a34bb5c705dd55fe10c463f0b4d5cb8f |
|
BLAKE2b-256 | 6371f09c98a662a385cd0e7c490f7c25962c95c8ca49dd6716dff94c5b517c84 |
File details
Details for the file angel_cd-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: angel_cd-1.0.3-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9ad044d8811b2ecf2b0c1297122ffeffda71eb5fc510a9564b9212413d1dae0 |
|
MD5 | ec4cb378e7ff14c7a3fcda8d798f7441 |
|
BLAKE2b-256 | e50c202230a83b79254f8f39e1cde8d992f2ec06e2b09a25689e55b5613acd08 |