Skip to content
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

Fix capitalization for countplot stat label and add test #3806

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion seaborn/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -2669,7 +2669,7 @@ def countplot(
p.plot_data[count_axis] = 1

_check_argument("stat", ["count", "percent", "probability", "proportion"], stat)
p.variables[count_axis] = stat
p.variables[count_axis] = stat.capitalize()
if stat != "count":
denom = 100 if stat == "percent" else 1
p.plot_data[count_axis] /= len(p.plot_data) / denom
Expand Down
11 changes: 11 additions & 0 deletions tests/test_categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -3259,3 +3259,14 @@ def test_children(self, container):
children = container.get_children()
for child in children:
assert isinstance(child, mpl.artist.Artist)


def test_countplot_stat_label_capitalization():
import seaborn as sns
import matplotlib.pyplot as plt

data = sns.load_dataset("iris")
ax = sns.countplot(data=data, x="sepal_width", stat="count")

assert ax.get_ylabel() == "Count"
plt.close() # Cleanup