Metadata-Version: 2.1
Name: plotinpy
Version: 0.1.1
Summary: PlotInPy is a collection of plotting functions made on top of MatPlotLib.
Home-page: https://github.com/masbicudo/PlotInPy
Author: MASBicudo
Author-email: masbicudo@gmail.com
License: apache-2.0
Description: # 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](https://github.com/masbicudo/PlotInPy/raw/master/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](https://github.com/masbicudo/PlotInPy/raw/master/img/example2.png)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: Use-Pandas-DataFrame
