Skip to content

Commit

Permalink
Passing bootstrap to matplotlib's stats computation.
Browse files Browse the repository at this point in the history
Fixed trailing whitespace issue.
  • Loading branch information
utkarshp authored Nov 17, 2023
1 parent 64e5afc commit 22aad7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seaborn/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ def get_props(element, artist=mpl.lines.Line2D):

grouped = sub_data.groupby(self.orient)[value_var]
value_data = [x.to_numpy() for _, x in grouped]
stats = pd.DataFrame(mpl.cbook.boxplot_stats(value_data, whis=whis,
stats = pd.DataFrame(mpl.cbook.boxplot_stats(value_data, whis=whis,
bootstrap=bootstrap))
positions = grouped.grouper.result_index.to_numpy(dtype=float)

Expand Down

0 comments on commit 22aad7a

Please sign in to comment.