ringity is a Python package to analyze networks in their global ring structure.
- Source: https://github.com/kiri93/ringity
- Bug reports: https://github.com/kiri93/ringity/issues
- Contact Person: [email protected]
- Documentation: Not available yet.
This package is still under construction.
Calculate ring score as described in [1]:
>>> import ringity as rng
>>> import networkx as nx
>>> G = nx.Graph()
>>> G.add_edges_from([(i%100,(i+1)%100) for i in range(100)])
>>> dgm = rng.diagram(G)
>>> dgm.score
1
[1]: Paper not available yet.
Install the latest version of ringity:
$ pip install ringity
Please report any bugs that you find here. Or, even better, fork the repository on GitHub and create a pull request. All inputs, suggestions and changes are more than welcome!
Released under the MIT License (see LICENSE.txt):
Copyright (c) 2019 Markus K. Youssef <[email protected]>