tkf / fillplots

Library to plot regions and boundaries given inequalities
BSD 2-Clause "Simplified" License
6 stars 2 forks source link

fillplots -- Library to plot regions and boundaries given inequalities

.. sidebar:: Links:

fillplots is a library to plot regions and boundaries given systems of inequality. Here is a simple example to fill region like a piece of pie.

from fillplots import plot_regions plot_regions([ ... [(lambda x: (1.0 - x 2) 0.5, True), ... (lambda x: x,)] ... ], xlim=(0, 1), ylim=(0, 1)) <fillplots.api.Plotter object at 0x...>

See documentation and examples for more information.

You can install fillplots from PyPI_::

pip install fillplots

License

fillplots is licensed under the terms of the BSD 2-Clause License. See the COPYING for more information.

.. |build-status| image:: https://secure.travis-ci.org/tkf/fillplots.png?branch=master :target: http://travis-ci.org/tkf/fillplots :alt: Build Status