GitHub - proplot-dev/proplot: 🎨 A succinct matplotlib wrapper for making beautiful, publication-quality graphics (original) (raw)
A succinct matplotlib wrapper for making beautiful, publication-quality graphics.
Ultraplot: Proplot's Spiritual Successor
Development on proplot
has been indefinitely halted since summer 2023. A spiritual successor in ultraplot
has been launched. It uses the proplot
codebase and has modernized it to support recent versions of matplotlib
, cartopy
, python
, etc. and is adding new features and enhancements. Check out the project over at the ultraplot repo and ultraplot docs!
Documentation
The documentation is published on readthedocs.
Installation
Proplot is published on PyPi andconda-forge. It can be installed with pip
orconda
as follows:
pip install proplot conda install -c conda-forge proplot
Likewise, an existing installation of proplot can be upgraded to the latest version with:
pip install --upgrade proplot conda upgrade proplot
To install a development version of proplot, you can usepip install git+https://github.com/proplot-dev/proplot.git
or clone the repository and run pip install -e .
inside the proplot
folder.