
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
|DOI| |license| |version|
ringity is a Python package to analyze various data structures with respect to their ring structure.
This package is still under construction!
Calculate ring score as described in [1]:
.. code:: python
>>> 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.
Calculate ring score as described in [2]:
.. code:: python
>>> 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 the latest version of ringity::
$ pip install ringity
data
to _data
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.Please report any bugs that you find here <https://github.com/ClusterDuck123/ringity/issues>
.
Or, even better, fork the repository on GitHub <https://github.com/ClusterDuck123/ringity/>
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 mk.youssef@hotmail.com
If you want to cite this package, please use the DOI:
10.5281/ZENODO.4908927 <https://doi.org/10.5281/ZENODO.4908927>
_
.. ================================= .. Badge definitions .. ================================= .. |DOI| image:: https://img.shields.io/badge/DOI-10.5281%2FZENODO.4908927-orange :target: https://zenodo.org/badge/latestdoi/196970975 .. |license| image:: https://img.shields.io/github/license/kiri93/ringity .. |version| image:: https://img.shields.io/github/v/tag/kiri93/ringity?style=social
FAQs
Calculates ring scores for various data structures
We found that ringity demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.