8000 Backport PR #29511 on branch v3.10.x (DOC: Document the behavior of bar() for categorical x data) by meeseeksmachine · Pull Request #29514 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Backport PR #29511 on branch v3.10.x (DOC: Document the behavior of bar() for categorical x data) #29514

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
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
22 changes: 22 additions & 0 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2391,6 +2391,17 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
The x coordinates of the bars. See also *align* for the
alignment of the bars to the coordinates.

Bars are often used for categorical data, i.e. string labels below
the bars. You can provide a list of strings directly to *x*.
``bar(['A', 'B', 'C'], [1, 2, 3])`` is often a shorter and more
convenient notation compared to
``bar(range(3), [1, 2, 3], tick_label=['A', 'B', 'C'])``. They are
equivalent as long as the names are unique. The explicit *tick_label*
notation draws the names in the sequence given. However, when having
duplicate values in categorical *x* data, these values map to the same
numerical x coordinate, and hence the corresponding bars are drawn on
top of each other.

height : float or array-like
The height(s) of the bars.

Expand Down Expand Up @@ -2706,6 +2717,17 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
The y coordinates of the bars. See also *align* for the
alignment of the bars to the coordinates.

Bars are often used for categorical data, i.e. string labels below
the bars. You can provide a list of strings directly to *y*.
``barh(['A', 'B', 'C'], [1, 2, 3])`` is often a shorter and more
convenient notation compared to
``barh(range(3), [1, 2, 3], tick_label=['A', 'B', 'C'])``. They are
equivalent as long as the names are unique. The explicit *tick_label*
notation draws the names in the sequence given. However, when having
duplicate values in categorical *y* data, these values map to the same
numerical y coordinate, and hence the corresponding bars are drawn on
top of each other.

width : float or array-like
The width(s) of the bars.

Expand Down
Loading
0