X Tutup
Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -6457,7 +6457,21 @@ def hist2d(self, x, y, bins=10, range=None, normed=False, weights=None,

Other parameters
----------------
kwargs : :meth:`pcolorfast` properties.
cmap : [None, Colormap, string], optional
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be okay to get rid of the square brackets? I don't think they're anywhere else (or at least haven't been in recent doc PRs)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A :class:`matplotlib.colors.Colormap` instance from cm. If None,
use rc settings.

norm : [None | Normalize]
A :class:`matplotlib.colors.Normalize` instance is used to scale
luminance data to 0,1. If None, defaults to normalize()

vmin/vmax : [None | scalar]
vmin and vmax are used in conjunction with norm to normalize
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vmin and vmax (they're keyword arguments)

luminance data.

alpha : ``0 <= scalar <= 1`` or *None*
the alpha blending value
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Capitalise 'the'



See also
--------
Expand Down
X Tutup