-
Notifications
You must be signed in to change notification settings - Fork 28
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
Add multi-vari distance calculation #467
Conversation
|
megaqc/rest_api/plot.py
Outdated
|
||
# Calculate the critical value | ||
n, p = y.shape | ||
cri = f.isf(0.05, dfn=p, dfd=n - p) |
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.
Add a comment here explaining what you are doing.
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.
Calculate the line of critical value for the distribution.
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.
Yes, but some more detail would be good explain the statistics being used here. You might want to refer to: https://online.stat.psu.edu/stat505/lesson/7/7.1/7.1.3
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.
Using Hotelling’s T-Square to test the statistic for the F distribution.
PR Checklist
docs
is updateddocs/changelog.md
is updatedDescription of changes
Calculate the multi-vary distance and specify the outliers.
Related Issues
Issue #433