Austin Hoover

Results 4 comments of Austin Hoover

Haha, fair point.

```matplotlib 3.8.4``` ```proplot 1.0.4``` I tried ``` import matplotlib.pyplot as plt import numpy as np import proplot as pplt x = y = np.linspace(-1.0, 1.0, 50) values = np.random.rand(x.size, y.size)...

Running ``` fig, ax = pplt.subplots() ``` in JupyterLab throws the cached renderer error: ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) File [~/miniconda3/envs/proplot-test/lib/python3.11/site-packages/matplotlib/pyplot.py:197](http://localhost:8888/~/miniconda3/envs/proplot-test/lib/python3.11/site-packages/matplotlib/pyplot.py#line=196), in _draw_all_if_interactive() 195 def _draw_all_if_interactive() ->...

There still seems to be a cmap registry issue but only for scatter plots. ``` x = np.random.uniform(size=(500, 2)) fig, ax = pplt.subplots() ax.scatter(x[:, 0], x[:, 1]) ``` ``` ---------------------------------------------------------------------------...