Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

DOC: Document the behavior of bar() for categorical x data#29511

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
rcomer merged 2 commits intomatplotlib:mainfromtimhoffm:doc-bar-categorical
Jan 24, 2025
Merged
Changes fromall 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 deletionslib/matplotlib/axes/_axes.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2386,6 +2386,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 DownExpand Up@@ -2701,6 +2712,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

[8]ページ先頭

©2009-2025 Movatter.jp