We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In countplot(), the axis stat label is not capitalized, inconsistent with other histograms.
import seaborn as sns iris = sns.load_dataset("iris") fig, axs = plt.subplots(ncols=2, figsize=(15,4)) sns.countplot(data=iris, x='sepal_width', hue='species', ax=axs[0]) sns.histplot(data=iris, x='sepal_length', hue='species', ax=axs[1]) plt.show()
This should be fixed by changing line 2672 in categorical.py to
p.variables[count_axis] = stat.capitalize()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In countplot(), the axis stat label is not capitalized, inconsistent with other histograms.
This should be fixed by changing line 2672 in categorical.py to
p.variables[count_axis] = stat.capitalize()
The text was updated successfully, but these errors were encountered: