Skip to main content

Calculates ring scores for various data structures

Project description

DOI license version

ringity is a Python package to analyze various data structures with respect to their ring structure.

Notes

This package is still under construction!

Simple network example

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.ring_score()
1

[1]: Paper not available yet.

Simple point cloud example

Calculate ring score as described in [2]:

>>> import numpy as np
>>> import ringity as rng
>>> t = np.linspace(0, 2*np.pi, 100)
>>> X = np.array((np.cos(t),np.sin(t))).T
>>> rng.ring_score(X)
1

[2]: Paper not available yet.

Install

Install the latest version of ringity:

$ pip install ringity

Latest Changes

  • Changed foldername data to _data

  • The persistent diagram class PersistenceDiagram has ring_score now as a method, not as a property. As a result, the function is now called via dgm.ring_score() insted of dgm.ring_score! (Notice the change in brackets) We appologize if this is breaking old code; such changes will be avoided in the future.

  • Integration of various ring-score “flavours”.

  • Extended usage for point clouds.

Bugs

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!

License

Released under the MIT License (see LICENSE.txt):

Copyright (c) 2019 Markus K. Youssef <mk.youssef@hotmail.com>

How to cite

If you want to cite this package, please use the DOI: 10.5281/ZENODO.4908927

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

ringity-0.4a1.tar.gz (47.1 kB view details)

Uploaded Source

Built Distribution

ringity-0.4a1-py3-none-any.whl (51.8 kB view details)

Uploaded Python 3

File details

Details for the file ringity-0.4a1.tar.gz.

File metadata

  • Download URL: ringity-0.4a1.tar.gz
  • Upload date:
  • Size: 47.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for ringity-0.4a1.tar.gz
Algorithm Hash digest
SHA256 4ca2233441c17ba87e991f17549f1d49fb20b1b2a88a3cdb172e055beeaec3d6
MD5 0a5ad47c0c671d089f7b5a77784f687f
BLAKE2b-256 0ae663931235f9c9d97b2b82d60be82e24bdb65d87cf8ae2063a0767b4260ab8

See more details on using hashes here.

File details

Details for the file ringity-0.4a1-py3-none-any.whl.

File metadata

  • Download URL: ringity-0.4a1-py3-none-any.whl
  • Upload date:
  • Size: 51.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for ringity-0.4a1-py3-none-any.whl
Algorithm Hash digest
SHA256 fe56bdbbf74445af05984536e2a3f20c952b4059988e44166d1b7fd5554a4662
MD5 b999916dfa5e5bb277da37705419dc7d
BLAKE2b-256 246dbb9d38a261e01a545c76f769d5a13d1ff1d20b9516e8309d72a2da2e128d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page