Skip to main content

matplotlib extension for vaporwave aesthetics

Project description

# vapeplot

---

matplotlib extension for vaporwave aesthetics

---

## install

```
pip install vapeplot
```

---

## demo

#### view all palettes

```
import vapeplot
%matplotlib inline

vapeplot.available()
```

.. image:: https://raw.githubusercontent.com/dantaki/vapeplot/master/vapeplot.png

#### view specific palettes

```
vapeplot.view_palette("cool",'sunset')
```

.. image:: https://raw.githubusercontent.com/dantaki/vapeplot/master/view_palette.png

#### set the color palette

```
import numpy as np
import matplotlib.pyplot as plt

vapeplot.set_palette('vaporwave')
for i in range(10):
plt.plot(range(100),np.random.normal(i,1,100))
vapeplot.despine(plt.axes()) #remove right and top axes
```

.. image :: https://raw.githubusercontent.com/dantaki/vapeplot/master/vaporwave.png

#### make a colormap

```
cmap = vapeplot.cmap('crystal_pepsi')
A = np.random.rand(25, 25)
plt.imshow(A,cmap=cmap)
# remove all axes
vapeplot.despine(plt.axes(),True)
plt.show()
```

.. image:: https://raw.githubusercontent.com/dantaki/vapeplot/master/vapeplot_colormaps.png

#### access a palette

```
# cool is a list of colors
cool = vapeplot.palette("cool")

# reverse the order of colors
seapunk_r = vapeplot.reverse("seapunk")

```

---

## api

* `vapeplot.available(show=True)`
* function to plot all vapeplot palettes
* `show=False` prints palette names


* `vapeplot.cmap(palname)`
* returns a colormap object
* `palname` is the name of the color palette


* `vapeplot.despine(ax,all=False)`
* removes figure axes
* default action: remove right and top axes
* `all=True` removes all axes


* `vapeplot.font_size(s)`
* change the font size globally


* `vapeplot.palette(palname)`
* returns a list of colors
* if no `palname` is given, a dict of all the palettes is returned


* `vapeplot.reverse(palname)`
* returns a list of colors in reverse



* `vapeplot.set_palette(palname)`
* change the color palette globally



* `vapeplot.view_palette(*args)`
* view individual palettes
* arguments: one or more palette names

---


## more to come :wink:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vapeplot-0.0.4.tar.gz (3.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page