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 56385a9 commit 03ad3d8Copy full SHA for 03ad3d8
lib/matplotlib/pyplot.py
@@ -2640,12 +2640,12 @@ def hist(
2640
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2641
@_autogen_docstring(Axes.hist2d)
2642
def hist2d(
2643
- x, y, bins=10, range=None, normed=False, weights=None,
2644
- cmin=None, cmax=None, *, data=None, **kwargs):
+ x, y, bins=10, range=None, density=None, weights=None,
+ cmin=None, cmax=None, normed=None, *, data=None, **kwargs):
2645
__ret = gca().hist2d(
2646
- x, y, bins=bins, range=range, normed=normed, weights=weights,
2647
- cmin=cmin, cmax=cmax, **({"data": data} if data is not None
2648
- else {}), **kwargs)
+ x, y, bins=bins, range=range, density=density,
+ weights=weights, cmin=cmin, cmax=cmax, normed=normed,
+ **({"data": data} if data is not None else {}), **kwargs)
2649
sci(__ret[-1])
2650
return __ret
2651
0 commit comments