proplot icon indicating copy to clipboard operation
proplot copied to clipboard

wrong edgecolor and facecolor with pcolormesh

Open zxdawn opened this issue 3 years ago • 0 comments

Description

The results of using edgecolor and facecolor with pcolormesh are different from the matplotlib.

Steps to reproduce

# your code here
import numpy as np
import prolpot as pplt

fig, axs = pplt.subplots()

z = np.arange(12).reshape((3, 4))

axs.pcolormesh(z, facecolor='none', edgecolors=None)

Expected behavior:

image

Actual behavior:

image

Equivalent steps in matplotlib

import matplotlib.pyplot as plt
import numpy as np

z = np.arange(12).reshape((3, 4))

plt.pcolormesh(z, facecolor='none', edgecolors=None)

Proplot version

3.5.1
0.9.5.post202

zxdawn avatar Jul 19 '22 08:07 zxdawn