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 haven't seen any way to provide alpha (0.05 or 0.1) for plotting critical difference diagram of Nemenyi-Friedman test. I'm trying to follow Demsar's paper link and this tutorial (which sadly uses Orange package), and:
"The performance of two classifiers is significantly different if the corresponding average ranks differ by at least the critical difference"
"critical values q_α are based on the Studentized range statistic divided by √2", and examples of such values are provided in the paper
So I get the p-values from the test. But looking at CD plotting function, we can see that it uses sign_array() function with constant arguments, which is alpha=0.05. So there is no way to plot CD diagram with any other alpha level. This should be configurable.
The text was updated successfully, but these errors were encountered:
j-adamczyk
changed the title
How can alpha be specified for posthoc_nemenyi_friedman?
Alpha cannot be specified for critical difference diagram
Jan 18, 2024
Hello! Thank you for pointing at this. This test was based on statsmodels' implementation of Studentized range distribution. It is bound to 0.1, there is no way to specify alpha value. Now we have SciPy's implementation which should be more appropriate here.
Describe the bug
I haven't seen any way to provide alpha (0.05 or 0.1) for plotting critical difference diagram of Nemenyi-Friedman test. I'm trying to follow Demsar's paper link and this tutorial (which sadly uses Orange package), and:
So I get the p-values from the test. But looking at CD plotting function, we can see that it uses
sign_array()
function with constant arguments, which isalpha=0.05
. So there is no way to plot CD diagram with any other alpha level. This should be configurable.The text was updated successfully, but these errors were encountered: