All Projects → fengwangPhysics → Matplotlib Chord Diagram

fengwangPhysics / Matplotlib Chord Diagram

Licence: mit
plot chord diagram with matplotlib

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Matplotlib Chord Diagram

Simple Todo With React And
📝 a simple react demo to learn flux/reflux/redux
Stars: ✭ 29 (-51.67%)
Mutual labels:  flux
Fluxxkit
Unidirectional data flow for reactive programming in iOS.
Stars: ✭ 42 (-30%)
Mutual labels:  flux
Simple Back
A simple daily python backtester that works out of the box.
Stars: ✭ 52 (-13.33%)
Mutual labels:  matplotlib
Rustplotlib
A Rust's binding of matplotlib
Stars: ✭ 31 (-48.33%)
Mutual labels:  matplotlib
Draw Neural Network
Quick tool to draw fully connected neural network architectures
Stars: ✭ 41 (-31.67%)
Mutual labels:  matplotlib
Machine Learning
notebooks with example for machine learning examples
Stars: ✭ 45 (-25%)
Mutual labels:  matplotlib
Deep learning projects
Stars: ✭ 28 (-53.33%)
Mutual labels:  matplotlib
Nanoflux
A very lightweight and dependency-free Flux implementation
Stars: ✭ 56 (-6.67%)
Mutual labels:  flux
Abu
阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构
Stars: ✭ 8,589 (+14215%)
Mutual labels:  matplotlib
Mplfinance
Financial Markets Data Visualization using Matplotlib
Stars: ✭ 1,043 (+1638.33%)
Mutual labels:  matplotlib
Mlcourse.ai
Open Machine Learning Course
Stars: ✭ 7,963 (+13171.67%)
Mutual labels:  matplotlib
Pyimagevideo
write animated GIF, multipage append TIFF, AVI OGV video in Python
Stars: ✭ 36 (-40%)
Mutual labels:  matplotlib
Ipympl
Matplotlib Jupyter Integration
Stars: ✭ 1,024 (+1606.67%)
Mutual labels:  matplotlib
Machine Learning Alpine
Alpine Container for Machine Learning
Stars: ✭ 30 (-50%)
Mutual labels:  matplotlib
Pyplotz
A light weight wrapper for matplotlib users with Chinese characters supported
Stars: ✭ 55 (-8.33%)
Mutual labels:  matplotlib
Duckietown.jl
Differentiable Duckietown
Stars: ✭ 29 (-51.67%)
Mutual labels:  flux
Mill.jl
Multiple Instance Learning Library is build on top of Flux.jl aimed to prototype flexible multi-instance learning models.
Stars: ✭ 43 (-28.33%)
Mutual labels:  flux
Matplotlib Scalebar
Provides a new artist for matplotlib to display a scale bar, aka micron bar.
Stars: ✭ 58 (-3.33%)
Mutual labels:  matplotlib
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (-6.67%)
Mutual labels:  matplotlib
Ncar Python Tutorial
Numerical & Scientific Computing with Python Tutorial
Stars: ✭ 50 (-16.67%)
Mutual labels:  matplotlib

matplotlib-chord-diagram

plot chord diagram with matplotlib

Main plot function

def chordDiagram(X, ax, colors=None, width=0.1, pad=2, chordwidth=0.7):
    """Plot a chord diagram
    
    Parameters
    ----------
    X :
        flux data, X[i, j] is the flux from i to j
    ax :
        matplotlib `axes` to show the plot
    colors : optional
        user defined colors in rgb format. Use function hex2rgb() to convert hex color to rgb color. Default: d3.js category10
    width : optional
        width/thickness of the ideogram arc
    pad : optional
        gap pad between two neighboring ideogram arcs, unit: degree, default: 2 degree
    chordwidth : optional
        position of the control points for the chords, controlling the shape of the chords
    """

Example

An example can be found at the end of matplotlib-chord.py. Here is what the figure looks like:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].