https://github.com/tkf/fillplots
Library to plot regions and boundaries given inequalities
https://github.com/tkf/fillplots
Last synced: 9 months ago
JSON representation
Library to plot regions and boundaries given inequalities
- Host: GitHub
- URL: https://github.com/tkf/fillplots
- Owner: tkf
- License: bsd-2-clause
- Created: 2013-04-08T15:16:49.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-10T20:39:22.000Z (almost 13 years ago)
- Last Synced: 2025-04-15T08:19:44.759Z (9 months ago)
- Language: Python
- Size: 309 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: COPYING
Awesome Lists containing this project
README
fillplots -- Library to plot regions and boundaries given inequalities
======================================================================
.. sidebar:: Links:
* `Documentation `_ (at Read the Docs)
- `Examples `_
* `Repository `_ (at GitHub)
* `Issue tracker `_ (at GitHub)
* `PyPI `_
* `Travis CI `_ |build-status|
``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))
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