@@ -6510,16 +6510,15 @@ def hist2d(self, x, y, bins=10, range=None, normed=False, weights=None,
6510
6510
Other Parameters
6511
6511
----------------
6512
6512
cmap : Colormap or str, optional
6513
- A :class:`.colors.Colormap` instance. If not set, use rc
6514
- settings.
6513
+ A `.colors.Colormap` instance. If not set, use rc settings.
6515
6514
6516
6515
norm : Normalize, optional
6517
- A :class: `.colors.Normalize` instance is used to
6516
+ A `.colors.Normalize` instance is used to
6518
6517
scale luminance data to ``[0, 1]``. If not set, defaults to
6519
- :class: `.colors.Normalize()`.
6518
+ `.colors.Normalize()`.
6520
6519
6521
6520
vmin/vmax : None or scalar, optional
6522
- Arguments passed to the :class: `~.colors.Normalize` instance.
6521
+ Arguments passed to the `~.colors.Normalize` instance.
6523
6522
6524
6523
alpha : ``0 <= scalar <= 1`` or ``None``, optional
6525
6524
The alpha blending value.
@@ -6533,10 +6532,10 @@ def hist2d(self, x, y, bins=10, range=None, normed=False, weights=None,
6533
6532
- Currently ``hist2d`` calculates it's own axis limits, and any limits
6534
6533
previously set are ignored.
6535
6534
- Rendering the histogram with a logarithmic color scale is
6536
- accomplished by passing a :class: `.colors.LogNorm` instance to
6537
- the *norm* keyword argument. Likewise, power-law normalization
6538
- (similar in effect to gamma correction) can be accomplished with
6539
- :class: `.colors.PowerNorm`.
6535
+ accomplished by passing a `.colors.LogNorm` instance to the *norm*
6536
+ keyword argument. Likewise, power-law normalization (similar
6537
+ in effect to gamma correction) can be accomplished with
6538
+ `.colors.PowerNorm`.
6540
6539
"""
6541
6540
6542
6541
h , xedges , yedges = np .histogram2d (x , y , bins = bins , range = range ,
0 commit comments