Detection of Community by maximizing modularity
Project description
Community-Detection-Modularity
Eigenvector-based community detection is a method used to identify communities or groups within a network by analyzing the eigenvectors of the network's adjacency matrix. The basic idea behind this approach is that nodes that belong to the same community will be more strongly connected to each other than to nodes in other communities.
The method starts by calculating the adjacency matrix of the network, which represents the connections between nodes. Next, the eigenvalues and eigenvectors of this matrix are calculated. The eigenvectors with the largest eigenvalues are then used to assign nodes to communities.
The basic idea is that nodes that belong to the same community will have similar eigenvector values for these dominant eigenvectors. By grouping nodes with similar eigenvector values together, communities can be identified.
The method starts by calculating the adjacency matrix of the network, which represents the connections between nodes. Next, the eigenvalues and eigenvectors of this matrix are calculated. The eigenvectors with the largest eigenvalues are then used to assign nodes to communities.
The basic idea is that nodes that belong to the same community will have similar eigenvector values for these dominant eigenvectors. By grouping nodes with similar eigenvector values together, communities can be identified.
Installation
Install via PIP
pip install age-cda
Build from Source
sudo apt-get update
sudo apt-get install libeigen3-dev
git clone https://github.com/Munmud/Community-Detection-Modularity
cd Community-Detection-Modularity
python setup.py install
Unit Test
python -m unittest test_community.py
Instruction
import
from age_cda import Graph
Create Graph
nodes = [0, 1, 2, 3, 4, 5]
edges = [[0, 1], [0, 2], [1, 2], [2, 3], [3, 4], [3, 5], [4, 5]]
g = Graph.Graph()
g.createGraph(nodes, edges)
- Nodes :
any
- Edges :
2d array : adjacency list
- `Each element within Nodes array
Generate Community Assignment
res = g.get_community()
Output Format
[[3,4,5],[0,1,2]]
- List community
- Each community has list of nodes
Samples
Reference
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
Built Distribution
File details
Details for the file age_cda-0.0.4.tar.gz
.
File metadata
- Download URL: age_cda-0.0.4.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcf21a133cec697b6cd9c48cbafe61f7e7552d8efc85e443d6ec73b60e54f4f1 |
|
MD5 | d2fb11196f57b45cb4f35f72160ac2d7 |
|
BLAKE2b-256 | dfb664039580f630f5233932d1b7fde297705a983050fc5d8d6a3e2e009fd721 |
File details
Details for the file age_cda-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: age_cda-0.0.4-py3-none-any.whl
- Upload date:
- Size: 2.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18524addfd66d3a5a6a4c2c81e8a97399afacf08c5d9f862d5fc2867ea6217fe |
|
MD5 | 90416f9735e6757b449008e3539ecdd1 |
|
BLAKE2b-256 | 0934013014dc9ef2132830e0bb56e04cd8cc66270e51d5ca8ffac856954e25c3 |