Skip to content

Commit

Permalink
Add width to countplot as well
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom committed Jun 15, 2022
1 parent 90473b7 commit 4b431aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seaborn/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -2912,7 +2912,7 @@ def pointplot(

def countplot(
data=None, *, x=None, y=None, hue=None, order=None, hue_order=None,
orient=None, color=None, palette=None, saturation=.75,
orient=None, color=None, palette=None, saturation=.75, width=.8,
dodge=True, ax=None, **kwargs
):

Expand All @@ -2938,7 +2938,7 @@ def countplot(
x, y, hue, data, order, hue_order,
estimator, ci, n_boot, units, seed,
orient, color, palette, saturation,
errcolor, errwidth, capsize, dodge
width, errcolor, errwidth, capsize, dodge
)

plotter.value_label = "count"
Expand Down

0 comments on commit 4b431aa

Please sign in to comment.