Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angelcommunity

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angelcommunity

Community Discovery algorithm

  • 2.0.0
  • PyPI
  • Socket score

Maintainers
1

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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc