8000 DOC : documented bottom kwarg of hist by tacaswell · Pull Request #3163 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC : documented bottom kwarg of hist #3163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2014
Merged
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
6 changes: 6 additions & 0 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5349,6 +5349,12 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
`True`, then the histogram is normalized such that the first bin
equals 1.

bottom : array_like, scalar, or None, default: None
Location of the bottom baseline of each bin. If a scalar,
the base line for each bin is shifted by the same amount.
If an array, each bin is shifted independently and the length
of bottom must match the number of bins. If None, defaults to 0.

histtype : ['bar' | 'barstacked' | 'step' | 'stepfilled'], optional
The type of histogram to draw.

Expand Down
0