-
-
Notifications
You must be signed in to change notification settings - Fork 133
Open
Description
datalib currently calculates what is supposed to be Pearson's mode skewness, but does so as:
(avg - med) / std
This is non-parametric skewness, rather than:
Pearson's mode skewness which is
(avg - mode) / std
Or Pearson's median skewness, which is
3 * (avg - med) / std
So this is only giving correct values when med == mode.
Should I:
- Rename the function to reflect that it's nonparametric skew.
- Add a
mode
function, and then fix themodeskew
function by callingmode.
- Add a factor of
3
and rename the function to reflect that it's median skew. - Some combination of those things.
- None of those things.
Metadata
Metadata
Assignees
Labels
No labels