https://github.com/davidemiceli/basic-influence-roles
Detect and measure the Basic Influence Role each node plays in a Directed Network.
https://github.com/davidemiceli/basic-influence-roles
clustering complex-networks data-science graph-algorithms graph-theory network-analysis network-science social-network-analysis social-sciences
Last synced: 7 months ago
JSON representation
Detect and measure the Basic Influence Role each node plays in a Directed Network.
- Host: GitHub
- URL: https://github.com/davidemiceli/basic-influence-roles
- Owner: davidemiceli
- License: mit
- Created: 2024-03-09T15:59:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-22T07:23:37.000Z (over 1 year ago)
- Last Synced: 2024-04-23T13:37:21.115Z (over 1 year ago)
- Topics: clustering, complex-networks, data-science, graph-algorithms, graph-theory, network-analysis, network-science, social-network-analysis, social-sciences
- Language: Python
- Homepage:
- Size: 872 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# Basic Influence Roles (BIRs) · [](https://github.com/davidemiceli/basic-influence-roles/blob/master/LICENSE) [](https://github.com/davidemiceli/basic-influence-roles/pulls)
_**A deterministic scalable algorithm to detect and measure the basic influence role each node plays within a directed network.**_
Every node plays a certain role in the network and affects the other nodes in its own different way.
Given a large dataset of nodes as input, the algorithm provides:
- A ranking of all nodes by influence score
- The typology of influence, the basic influence role
- The influence measure based on influence role
- The level (the role's subcategory based on influence measure)
- An influence score based on generic indegree and outdegreeThe algorithm is implemented in the following programming languages:
- [**Python**](/python)
- [**JavaScript**](/javascript)## Basic Influence Roles (BIRs)
We have six basic influence roles summarized below.
![]()
Role | Description | Levels
--- | --- | --- |
`Emitter` | A node that spreads information without receiving. | `branch`, `weak`, `strong`, `top`
`Amplifier` | A node with significantly more outgoing connections than incoming ones. | `weak`, `strong`, `top`
`Hub` | A node balanced as production and reception of information. | `branch`, `weak`, `strong`, `top`
`Reducer` | A node with significantly more incoming connections than outcoming ones | `weak`, `strong`, `top`
`Receiver` | A node which receives only interactions, but does not produce any. | `branch`, `weak`, `strong`, `top`
`Isolated` | A totally non-participatory (or totally disconnected) node | `none`## BIRs' Levels
The levels of BIRs are subcategories based on the influence magnitude of every role. Below we have the description of every level and a graph representation of the branch nodes.
![]()
Level | Description
--- | --- |
`None` | A total absence of influence.
`Branch` | The lowest influence related to a given role.
`Weak` | A weak role influence.
`Strong` | A strong role influence.
`Top` | The greatest influence related to a given role.## BIRs' Influence Measure
Influence measure is a normalized value to quantify the magnitude of influence for each role.
## Research Notebooks
For reliability aims, we provide two research notebooks, that can be also useful as examples, under the folder [`/research-notebooks`](/research-notebooks), to test the algorithm behavior across both static and dynamic network structures using synthetic datasets.
## Citing
If you use this software in your work, please cite it as below:
> Miceli, D. (2024). Basic Influence Roles (BIRs) [Computer software]. https://github.com/davidemiceli/basic-influence-roles
Or the BibTeX version:
```bibtex
@software{MiceliBasicInfluenceRoles2024,
author = {Miceli, Davide},
license = {MIT},
month = mar,
title = {{Basic Influence Roles (BIRs)}},
url = {https://github.com/davidemiceli/basic-influence-roles},
year = {2024}
}
```## License
Basic Influence Roles is an open source project available under the [MIT license](https://github.com/davidemiceli/basic-influence-roles/blob/main/LICENSE).