Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f537d1e

Browse files
committed
Fix hist2d docstring.
1 parent fc271b9 commit f537d1e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/matplotlib/axes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8114,9 +8114,12 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
81148114
def hist2d(self, x, y, bins = 10, range=None, normed=False, weights=None,
81158115
cmin=None, cmax=None, **kwargs):
81168116
"""
8117+
Make a 2D histogram plot.
8118+
81178119
Call signature::
81188120
8119-
hist2d(x, y, bins = None, range=None, weights=None, cmin=None, cmax=None **kwargs)
8121+
hist2d(x, y, bins = None, range=None, weights=None, cmin=None, cmax=None **kwargs)
8122+
81208123
Make a 2d histogram plot of *x* versus *y*, where *x*,
81218124
*y* are 1-D sequences of the same length
81228125

0 commit comments

Comments
 (0)