@@ -7386,7 +7386,7 @@ def pcolorfast(self, *args, **kwargs):
7386
7386
# The QuadMesh class can also be changed to
7387
7387
# handle relevant superclass kwargs; the initializer
7388
7388
# should do much more than it does now.
7389
- collection = mcoll .QuadMesh (nc , nr , coords , 0 )
7389
+ collection = mcoll .QuadMesh (nc , nr , coords , 0 , edgecolors = "None" )
7390
7390
collection .set_alpha (alpha )
7391
7391
collection .set_array (C )
7392
7392
collection .set_cmap (cmap )
@@ -7969,8 +7969,8 @@ def hist2d(self, x, y, bins = 10, range=None, normed=False, weights=None,
7969
7969
The default value is 10.
7970
7970
7971
7971
*range*: [*None* | array_like shape(2,2)]
7972
- The leftmost and rightmost edges of the bins along each dimension (if not specified
7973
- explicitly in the bins parameters): [[xmin, xmax], [ymin, ymax]]. All values outside of
7972
+ The leftmost and rightmost edges of the bins along each dimension (if not specified
7973
+ explicitly in the bins parameters): [[xmin, xmax], [ymin, ymax]]. All values outside of
7974
7974
this range will be considered outliers and not tallied in the histogram.
7975
7975
7976
7976
*normed*:[True|False]
@@ -7981,7 +7981,7 @@ def hist2d(self, x, y, bins = 10, range=None, normed=False, weights=None,
7981
7981
An array of values w_i weighing each sample (x_i, y_i).
7982
7982
7983
7983
*cmin* : [None| scalar]
7984
- All bins that has count less than cmin will not be displayed
7984
+ All bins that has count less than cmin will not be displayed
7985
7985
and these count values in the return value count histogram will also be set to nan upon return
7986
7986
7987
7987
*cmax* : [None| scalar]
0 commit comments