Metadata-Version: 2.1
Name: plotnine
Version: 0.7.0
Summary: A grammar of graphics for python
Home-page: https://github.com/has2k1/plotnine
Maintainer: Hassan Kibirige
Maintainer-email: has2k1@gmail.com
License: GPL-2
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Framework :: Matplotlib
Requires-Python: >=3.6
Requires-Dist: mizani (>=0.7.1)
Requires-Dist: matplotlib (>=3.1.1)
Requires-Dist: numpy (>=1.16.0)
Requires-Dist: scipy (>=1.2.0)
Requires-Dist: patsy (>=0.5.1)
Requires-Dist: statsmodels (>=0.11.1)
Requires-Dist: pandas (>=1.0.3)
Requires-Dist: descartes (>=1.1.0)
Provides-Extra: all
Requires-Dist: scikit-learn ; extra == 'all'
Requires-Dist: scikit-misc ; extra == 'all'


plotnine is an implementation of a *grammar of graphics* in Python,
it is based on ggplot2. The grammar allows users to compose plots
by explicitly mapping data to the visual objects that make up the
plot.

Plotting with a grammar is powerful, it makes custom (and otherwise
complex) plots are easy to think about and then create, while the
simple plots remain simple.

To find out about all building blocks that you can use to create a
plot, check out the documentation_. Since plotnine has an API
similar to ggplot2, where we lack in coverage the
ggplot2 documentation may be of some help.

.. _documentation: https://plotnine.readthedocs.io/en/stable/


