@@ -7098,13 +7098,13 @@ def hist2d(self, x, y, bins=10, range=None, density=False, weights=None,
7098
7098
The bin specification:
7099
7099
7100
7100
- If int, the number of bins for the two dimensions
7101
- (nx=ny= bins).
7101
+ (``nx = ny = bins`` ).
7102
7102
- If ``[int, int]``, the number of bins in each dimension
7103
- (nx, ny = bins).
7103
+ (`` nx, ny = bins`` ).
7104
7104
- If array-like, the bin edges for the two dimensions
7105
- (x_edges= y_edges= bins).
7105
+ (`` x_edges = y_edges = bins`` ).
7106
7106
- If ``[array, array]``, the bin edges in each dimension
7107
- (x_edges, y_edges = bins).
7107
+ (`` x_edges, y_edges = bins`` ).
7108
7108
7109
7109
The default value is 10.
7110
7110
@@ -7122,10 +7122,10 @@ def hist2d(self, x, y, bins=10, range=None, density=False, weights=None,
7122
7122
An array of values w_i weighing each sample (x_i, y_i).
7123
7123
7124
7124
cmin, cmax : float, default: None
7125
- All bins that has count less than *cmin* or more than *cmax* will
7126
- not be displayed (set to NaN before passing to imshow ) and these
7127
- count values in the return value count histogram will also be set
7128
- to nan upon return.
7125
+ All bins that has count less than *cmin* or more than *cmax* will not be
7126
+ displayed (set to NaN before passing to `~.Axes.pcolormesh` ) and these count
7127
+ values in the return value count histogram will also be set to nan upon
7128
+ return.
7129
7129
7130
7130
Returns
7131
7131
-------
0 commit comments