Boxenplot fliersize ?
See original GitHub issueHi, is it possible to change fliersize
in boxenplot
, as in boxplot
?
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
seaborn.boxenplot — seaborn 0.12.1 documentation - PyData |
seaborn.boxenplot# ... Draw an enhanced box plot for larger datasets. ... This function always treats one of the variables as categorical and draws...
Read more >Setting flier (outlier) style in Seaborn boxplot is ignored
Seaborn's boxplot code ignores your flierprops argument and overwrites it with its own before passing arguments to Matplotlib's.
Read more >Python - seaborn.boxenplot() method - GeeksforGeeks
It is similar to a box plot in plotting a nonparametric representation of a distribution in which all features correspond to actual observations ......
Read more >Seaborn Tutorial | Kaggle
Change the size of outlier markers using fliersize plt.figure(figsize = (14,6)) ... Drawing a vertical boxenplot grouped by a categorical variable ...
Read more >Python Seaborn Categorical distribution plots: Box Plot
... width=0.8, dodge=True, fliersize=5, linewidth=None, whis=1.5, ax=None, ... Python Seaborn Categorical distribution plots: Boxen Plot.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@EitanHemed pls go ahead, I haven’t managed to find time to work on this unfortunately.
Right, those are both workarounds for users who can only interact with the matplotlib figure object that seaborn creates. Inside the function, you can pass the dictionary of
flier_kws
to thescatter
call that draws the outliers.Actually looking at the code a little bit, the situation with
kws
is messier than I thought, becausekws
is passed to bothplot
(to draw the medians) andscatter
to draw the outliers, with no ability to tweak the appearance of the boxes externally.So ideally, there would be three new parameters:
box_kws
line_kws
flier_kws
And they would each be dispatched to the right place.
Two other pieces of guidance for how to make this change:
.setdefault
so that users can override the defaults if desired.