Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/masbicudo/plotinpy

A collection of plotting functions based on MatPlotLib.
https://github.com/masbicudo/plotinpy

matplotlib plot python

Last synced: 3 days ago
JSON representation

A collection of plotting functions based on MatPlotLib.

Awesome Lists containing this project

README

        

# PlotInPy

This is a collection of plotting functions that I am creating
to contain everything I find useful on the topic of plotting in Python.
These are not code snippets though.
Each function is intended to be as robust as possible,
to support (for example) being used inside subplots, using gridspecs,
and so on. Maybe they are not perfect... yet! The intention is
to improve them until they are.

## Examples

### Broken bars

plt.figure()
pnp.plot_bars_with_breaks([1,2,30],[(15,25)])
plt.savefig("img/example1.png")

![Example 1](img/example1.png)

### Styled broken bars

plt.figure()
pnp.plot_bars_with_breaks([1,2,30, 1000],[(15,25), (50, 975)], style="~~", break_args={"hatch": '///'})
plt.savefig("img/example2.png")

![Example 2](img/example2.png)