-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[ENH] Violin Plot: New widget #5252
Conversation
67c4fa8
to
171bb87
Compare
Codecov Report
@@ Coverage Diff @@
## master #5252 +/- ##
==========================================
+ Coverage 85.19% 85.33% +0.13%
==========================================
Files 300 301 +1
Lines 60977 61773 +796
==========================================
+ Hits 51950 52714 +764
- Misses 9027 9059 +32 |
581073d
to
e4f6104
Compare
91ebfc2
to
cedc3fe
Compare
Icon is available once rebased. :) |
sorted_model.setSourceModel(self._value_var_model) | ||
sorted_model.sort(0) | ||
|
||
view = self._value_var_view = ListViewSearch() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the variable has only one single value, the plot remains empty. That is, the box plot is too tiny to be displayed (probably the height of the box plot is 0). In such cases, strip plot would display the points, and rug plot would be empty as well (no lines displayed). Should we set the minimum height of the box plot? Why is there no rug plot (a single line) in such case? I am using adult data in this example. |
Issue
Fixes #5215
Includes