Open ryh95 opened 4 years ago
Dear authors of AR
I noticed that you first rank the list and then use the scipy.stats.spearmanr in your evaluation function simlex_analysis.
scipy.stats.spearmanr
simlex_analysis
However, someone directly uses the spearmanr without ranking, according to https://stackoverflow.com/a/14819086/6609622 and https://machinelearningmastery.com/how-to-calculate-nonparametric-rank-correlation-in-python/
spearmanr
Basically, they said the spearmanr will take care of the ranking for you.
So, maybe the spearmanr here is misused?
Thank you!
Dear authors of AR
I noticed that you first rank the list and then use the
scipy.stats.spearmanr
in your evaluation functionsimlex_analysis
.However, someone directly uses the
spearmanr
without ranking, according to https://stackoverflow.com/a/14819086/6609622 and https://machinelearningmastery.com/how-to-calculate-nonparametric-rank-correlation-in-python/Basically, they said the
spearmanr
will take care of the ranking for you.So, maybe the
spearmanr
here is misused?Thank you!