Thanks to visit codestin.com Credit goes to github.com
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 5ca694b commit fcda8c8Copy full SHA for fcda8c8
lib/matplotlib/axes/_axes.py
@@ -5014,7 +5014,7 @@ def reduce_C_function(C: array) -> float
5014
if mincnt is None:
5015
mincnt = 0
5016
accum = np.array(
5017
- [reduce_C_function(acc) if len(acc) > mincnt else np.nan
+ [reduce_C_function(acc) if len(acc) >= mincnt else np.nan
5018
for Cs_at_i in [Cs_at_i1, Cs_at_i2]
5019
for acc in Cs_at_i[1:]], # [1:] drops out-of-range points.
5020
float)
0 commit comments