Skip to content
New issue

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

Updated outliers behavior for boxplot #816

Merged
merged 6 commits into from
Jul 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix outlier alpha behavior for geom_boxplot().
  • Loading branch information
ASmirnov-HORIS committed Jul 13, 2023
commit 993d5a2cef35ce7452236697478b43187f2fc963
3 changes: 1 addition & 2 deletions python-package/lets_plot/plot/geom.py
Original file line number Diff line number Diff line change
Expand Up @@ -3124,7 +3124,6 @@ def geom_boxplot(mapping=None, *, data=None, stat=None, position=None, show_lege
color_by=color_by, fill_by=fill_by,
**other_args)
if stat is None or stat == 'boxplot':
box_alpha = other_args.get('alpha')
box_color = other_args.get('color')
box_fill = other_args.get('fill')
box_size = other_args.get('size')
Expand All @@ -3140,7 +3139,7 @@ def geom_boxplot(mapping=None, *, data=None, stat=None, position=None, show_lege
show_legend=False,
sampling=None,
orientation=orientation,
alpha=outlier_alpha or box_alpha,
alpha=outlier_alpha,
color=outlier_color or box_color,
fill=outlier_fill or box_fill,
shape=outlier_shape,
Expand Down