SecretChord

generate robust and beautiful Chord Diagrams


License
MIT
Install
pip install SecretChord==0.0.1

Documentation

SecretChord

PyPI version GitHub

Generate robust and beautiful Chord Diagrams with pure matplotlib.

matplotlib wrapper for Chord Diagrams. This is a part of SecretPlot project.

Beta version is available for testing. Install by following command,

pip install SecretChord

Creating chord diagrams is as simple as following,

from SecretChord import ChordDiagram
data = [("a", "b", 2), ("a", "c", 5), ("c", "d", 4)]
ChordDiagram(data).show()

Please share your feedback :)