-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Boxplot whisker changes when set "boxpoints" to false #1953
Comments
Two things:
ie if we're displaying outliers, the outliers show the min/max so the whiskers show what might be expected for a typical spread within the main distribution. But if we're NOT displaying outliers, it's useful to know what the full min/max of the distribution are - especially since the fence values are simply calculated from other metrics of the distribution that are already displayed. I suppose we could add a mode like |
Good idea, I can remove "boxpoints: false" and set the opacity to zero, it worked well for me. In my case, I'd like to hide points for boxplot, and add a scatter series to show the points, because I want the points to be selectable. Thank you! |
Dear plotly.js,
For boxplot, I saw a difference when "boxpoints" is set to "true" and "false", you can use the following example, comment out the "boxpoints" line to see the change:
https://codepen.io/anon/pen/XazgKw?editors=0010
The whisker position for "boxpoints = true" is correct and is what I want, it seems when "boxpoints = false", a different metric is used? Is it possible to fix the behavior? Thanks!
Best,
The text was updated successfully, but these errors were encountered: