-
https://gist.github.com/mlovci/9e67d0832c07fbbe490e
-
Typing in text fields causes the interactive PCA to be recomputed and creates a mess of PDF files in the output directory. If possible, interactive updating should be turned off for the filepath/URL t…
-
Compare
```
import matplotlib.pyplot as plt, prettyplotlib as ppl
f, (ax1, ax2) = plt.subplots(2)
f.subplots_adjust(hspace=0)
plt.show()
```
and
```
import matplotlib.pyplot as plt, prettyplotlib a…
-
---
ImportError Traceback (most recent call last)
in ()
----> 1 import prettyplotlib
C:\Users\Feng\build\bdist.win-amd64\egg\prettyplotlib__init__.py in ()
C:\Users\F…
-
Sadly this seems to be missing :(
-
import prettyplotlib as ppl
import matplotlib.pyplot as plt
import numpy as np
fig, ax = ppl.subplots(1)
np.random.seed(10)
x = np.linspace(-1000,1000,10)
y = np.linspace(-1,1,80)
z = np.random.rando…
ghost updated
10 years ago
-
The `vert` keyword argument in matplotlib makes the boxes horizontal when set to false. This isn't handled well by prettyplotlib as all of the labels and the spline retain their original positions.
-
If I try to plot something in a `pcolormesh` plot with `prettyplottlib` in an IPython notebook, the plot is shown twice. I am plotting figures inline in the notebook and this behaviour occurs both if …
-
When I try using the `remove_chartjunk` method for getting rid of axes plus BOTH ticklabels, that is
```
ppl.utils.remove_chartjunk(ax, ['top', 'right', 'left', 'bottom'], ticklabels=['x', 'y'])
```
…
-
Please add support for plt.errobar.