proplot
proplot copied to clipboard
🎨 A succinct matplotlib wrapper for making beautiful, publication-quality graphics
### Description When set fontsize=300 in legend, the attribute fontsize in legend can not execute, the legned fontsize unchanged. ```python import proplot as pplt labels = ['a', 'bb', 'ccc', 'ddddd',...
### Description I think there's a minor bug when adding on-the-fly box plots to scatter, line, and bar charts. ```boxpctile``` works as expected, but the equivalent ```boxpctiles``` has no effect....
### Description I have been using proplot for the last few months and most of the time it takes off the heavy lifting that is a bi tricky to do...
### Description Absolutely love the project, thank you for all your efforts with it! Issue: Keyword arguments for altering the appearance (e.g. edgecolor and linewidth) of quiver arrows appear not...
```python import proplot as pplt import numpy as np fig, ax= pplt.subplots(nrows=4, ncols=1, space=0, refwidth="5cm", refaspect=(5, 1)) x = np.linspace(0,2*np.pi,50) y = np.sin(x) for i in range(4): ax[i].plot(x,y, label =...
### Description I met an error "NotImplementedError: Must supply an integer axis value" when I was tring to plot some data with "npaeqd" projection. The full output are as follows:...
### Description Unable to produce colorbars within different subplots. Matplotlib is able to produce a better colorbar. ### Steps to reproduce in Matplotlib ```python import matplotlib.pyplot as plt import numpy...
### Description In `ax.step`, the 'where' parameter doesn't do anything in proplot. ### Steps to reproduce ```python import numpy as np import proplot as pplt x = np.linspace(-5.0, 5.0, 11)...
### Description I like the default "sticky" behavior of the _x_ bounds in line and area plots but have found that I can't override that behavior with ```xmargin``` when I...
Hi, I found ax.annotate() function is not in proplot's API documentation. And I use ax.annotate(), there is nothing shown in the figure canvas. Does proplot lack support in annotate function?