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 a080696 commit bc6bcccCopy full SHA for bc6bccc
lib/matplotlib/axes/_axes.py
@@ -4696,14 +4696,14 @@ def reduce_C_function(C: array) -> float
4696
for i in range(nx1):
4697
for j in range(ny1):
4698
vals = lattice1[i, j]
4699
- if len(vals) > mincnt:
+ if len(vals) >= mincnt:
4700
lattice1[i, j] = reduce_C_function(vals)
4701
else:
4702
lattice1[i, j] = np.nan
4703
for i in range(nx2):
4704
for j in range(ny2):
4705
vals = lattice2[i, j]
4706
4707
lattice2[i, j] = reduce_C_function(vals)
4708
4709
lattice2[i, j] = np.nan
0 commit comments