-
-
Notifications
You must be signed in to change notification settings - Fork 24
Add option to preserve the median when morphing #188
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
Conversation
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.
Congratulations on making your first pull request to Data Morph! Please familiarize yourself with the contributing guidelines, if you haven't already.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #188 +/- ##
==========================================
+ Coverage 98.80% 98.82% +0.01%
==========================================
Files 84 84
Lines 2099 2128 +29
Branches 123 128 +5
==========================================
+ Hits 2074 2103 +29
Misses 24 24
Partials 1 1
🚀 New features to boost your workflow:
|
stefmolin
left a comment
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.
src/data_morph/plotting/static.py
Outdated
| res = get_summary_statistics(data) | ||
|
|
||
| labels = ('X Mean', 'Y Mean', 'X SD', 'Y SD', 'Corr.') | ||
| labels = ('X Mean', 'Y Mean', 'X Med.', 'Y Med.', 'X SD', 'Y SD', 'Corr.') |
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.
Maybe doing this in groups would fix the spacing issue:
X Mean
X Med.
X SD.
Y Mean
Y Med.
Y SD.
Corr.

Fixes #181
Describe your changes
Add option to preserve the median when morphing
Checklist