8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f02dba commit 8bc8d91Copy full SHA for 8bc8d91
lib/matplotlib/pyplot.py
@@ -2514,7 +2514,7 @@ def minorticks_on():
2514
@docstring.copy(Axes.pcolor)
2515
def pcolor(
2516
*args, alpha=None, norm=None, cmap=None, vmin=None,
2517
- vmax=None, dropdata=True, data=None, **kwargs):
+ vmax=None, dropdata=None, data=None, **kwargs):
2518
__ret = gca().pcolor(
2519
*args, alpha=alpha, norm=norm, cmap=cmap, vmin=vmin,
2520
vmax=vmax, dropdata=dropdata, **({"data": data} if data is not
@@ -2527,7 +2527,7 @@ def pcolor(
2527
@docstring.copy(Axes.pcolormesh)
2528
def pcolormesh(
2529
2530
- vmax=None, shading='flat', antialiased=False, dropdata=True,
+ vmax=None, shading='flat', antialiased=False, dropdata=None,
2531
data=None, **kwargs):
2532
__ret = gca().pcolormesh(
2533
0 commit comments