proplot
proplot copied to clipboard
🎨 A succinct matplotlib wrapper for making beautiful, publication-quality graphics
### Description There seems a bug when importing proplot with a "cycle" set in rc file. ### Steps to reproduce I set my .proplotrc as follows ``` font.size: 10.0 label.size:...
### Description I get a bunch of warnings when calling `altx`. It may do no harm. Just report the behaviour for reference ### Steps to reproduce With the following code...
### Description It seems proplot does not work with the conventional discrete color in matplotlib (which I used heavily...). I noticed the document mentioned discrete several places, but it seems...
When I'm making hist2d or hexbin plots in `proplot`, I have an issue where in the hist2d the rectangles arent correctly shaped, specifically it seems the lowest pixel row, and...
### Description I don't have a full example worked up, but hexbin plots come out wrong if you pass both the `bins` and `norm` keywords. I am used to the...
### Description The shared x-label does not appear when `fig.delaxes` is used. ### Steps to reproduce ```python fig, axs = pplt.subplots(ncols=3, nrows=2) axs.format(xlabel='xlabel', ylabel='ylabel') fig.delaxes(axs[-1]) ``` **Actual behavior**: [What actually...
### Description Usually, the 1 before 10^n is omitted. For example, `1x10^2` can be written as `10^2`. ### Steps to reproduce ```python import proplot as pplt fig, axs = pplt.subplots()...
### Description The major and minor xticks have some spaces and it looks the major one is wrong. ### Steps to reproduce ```python import proplot as pplt import numpy as...
### Description The DOC only mentions we can assign title by `ax.format(title=title)`. Actually, we can pass a list to the title and it will set the titles automatically by `axs.format(title=titles)`...
### Description If a formatter is set in one call to Figure.format() or Axes.format() another call to .format() setting the scale of the same axis resets the formatter to default....