-
Notifications
You must be signed in to change notification settings - Fork 1
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
MVP working #4
MVP working #4
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.
LGTM
fontsize: int = 9 | ||
|
||
def __repr__(self): | ||
return f'PliffyInfoABD(\n' \ |
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.
nice discovery of __repr__
@@ -92,7 +92,7 @@ def test_paired_diff_mean_and_confidence_interval(pliffy_data_paired_short): | |||
|
|||
|
|||
def test_paired_diffs(pliffy_data_paired_short): | |||
actual = estimate._paired_diffs(pliffy_data_paired_short) | |||
actual = estimate._calc_paired_diffs(pliffy_data_paired_short) |
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.
yep better naming
I am pretty happy with the current state of the package.
I have some documentation and typehints to add, and also a bunch of tests. But I revised lots and added lots and the
pliffy
works as expected for a both paired (e.g. participants rated fatigue after running vs biking) and unpaired data (e.g. control group vs intervention group).I have included a
demo.py
file that currently is for you and me to test that things work. You can change stuff likepaired vs unpaired
, colors, whether raw data is shown as points or lines for paired data, etc. I will expand this to have it run aspliffy.demo()
so that new users can confirm it works on their system, and it can show off show of the options that are available.