Priority Based Connected Components
Project description
Priority Based Connected Components
In many scenarios we see there is a need to run connected components but first connect entities with higher priority edges and then move to lower priority ones. Also apart from it, every group has a size-limit. To tackle such analytical challenges we have come up with an algorithm to adjust the priority of edges and limit the size of the components.
Installation
pip install priorityY
How to use it?
from priorityY import *
G = [(1,4,1),(1,5,3),(2,3,2),(2,6,2),(6,7,3),(4,8,2),(5,9,1)]
threshold = 3
components = priority_based_linkage(G,threshold)
print(components)
Output
[[1, 4, 8], [2, 3, 6], [5, 9], [7]]
Let us visualise the above example for better understanding how the library works. The threshold is set to 3, limiting the size of components. Dotted edges denote the link and priority associated.
At the first iteration, all nodes having edges with Priority-1 get connected.
1–4 and 5–9 gets connected.
In the next iteration, the algorithm connects nodes with edges between them of Priority-2.
1–4–8 gets connected, 2–3–6 gets connected and both reach the threshold
The algorithm stops as the threshold is reached for components and no more edges left. Above are the final connected components with the set threshold and provided edges priority.
License
© 2021 Abhishek Mungoli, Pravesh Garg, Somedip Karmakar
This repository is licensed under the MIT license. See LICENSE for details.
Change Log
0.0.1 (23/08/2021)
- First Release
0.0.2 (27/01/2022)
- Second Release
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
File details
Details for the file priorityY-0.0.2.tar.gz
.
File metadata
- Download URL: priorityY-0.0.2.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/3.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05df469bacb9d22aae309d101edb3722ee9f5526901df819667b4fa82a509b0a |
|
MD5 | 84b5bccbc13178f0741245a5575921b4 |
|
BLAKE2b-256 | be9240ae0834032c34b2f936263a1ab06f5b14a58b24e9a11709d1330399bbdd |