Skip to content

Commit

Permalink
Update categorical.py
Browse files Browse the repository at this point in the history
line too long fixed
  • Loading branch information
utkarshp authored Nov 16, 2023
1 parent 0ac69be commit 64e5afc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion seaborn/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,8 @@ 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, bootstrap=bootstrap))
stats = pd.DataFrame(mpl.cbook.boxplot_stats(value_data, whis=whis,
bootstrap=bootstrap))
positions = grouped.grouper.result_index.to_numpy(dtype=float)

orig_width = width * self._native_width
Expand Down

0 comments on commit 64e5afc

Please sign in to comment.