Skip to main content

Community Discovery algorithm

Project description

ANGEL

Test and Coverage (Ubuntu) codecov PyPI download month

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_community

or using conda

conda install -c giuliorossetti angel_community

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

angelcommunity-2.0.0.tar.gz (10.3 kB view details)

Uploaded Source

Built Distribution

angelcommunity-2.0.0-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file angelcommunity-2.0.0.tar.gz.

File metadata

  • Download URL: angelcommunity-2.0.0.tar.gz
  • Upload date:
  • Size: 10.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for angelcommunity-2.0.0.tar.gz
Algorithm Hash digest
SHA256 55960184fb5d2b9d16eaa9a96db8531ffcf1b355062f6f179ea670d46706a480
MD5 41928e5b0aaae21dc19295c8634ce304
BLAKE2b-256 56504c4ff6087b8d2a2a2a92e43533a6a4e758227c1a1e5093e6510de398cb4d

See more details on using hashes here.

File details

Details for the file angelcommunity-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for angelcommunity-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eee96824c3a213fddf271a0fd0761fc37234efd1e88135ef363eb33ea9215c1b
MD5 a730f763c89b97f2b703fcfcd04f2642
BLAKE2b-256 8678af726ca507c849f6361475444faf7a93a11d51c7ed2b47f58339b3a3f232

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page