You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that while it is possible to get the p-value from some tests, many do not have this option. For instance, mannWhitneyUtest. One issue I believe is the TestResult type which over simplifies the result of a test. Instead of a binary type, this type should contain the p-value, critical values, and maybe even sample sizes, but definitely a p-value.
The text was updated successfully, but these errors were encountered:
Shimuuar
changed the title
All statistical tests with p-values should return p-values.
Mann-Whitney U test should return p-value.
Jul 30, 2017
Since 0.11 all statistical tests except Mann-Whitney U test do return significance. And it doesn't because current implementation only calculate whether test is significant or not. So new code for calculation of significance is required.
I renamed this issue to be more specific and mark it as "help neede" since I won't have time to fix it.
I noticed that while it is possible to get the p-value from some tests, many do not have this option. For instance,
mannWhitneyUtest
. One issue I believe is theTestResult
type which over simplifies the result of a test. Instead of a binary type, this type should contain the p-value, critical values, and maybe even sample sizes, but definitely a p-value.The text was updated successfully, but these errors were encountered: