diff --git a/seaborn/categorical.py b/seaborn/categorical.py index f86b51ebc5..a469ce8eed 100644 --- a/seaborn/categorical.py +++ b/seaborn/categorical.py @@ -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)