views:

189

answers:

2

I'm looking for a way to calculate multivariate version of Spearman rank correlation $\rho$. Are there any ready to use Python implementation I can use?

+2  A: 

There is one in scipy.

Luper Rouch
I'm sorry, I couldn't find the multivariate version of Spearman rank coefficient in scipy. Can you please point me?
bgbg
I read too fast and missed the 'multivariate' in your question... There doesn't seem to be any ready implementation on google.
Luper Rouch
+1  A: 

If now or in the future you will want access to some advanced statistical packages, also consider calling R libraries from Python when needed via the RPy2.

And then you can compute spearman using a package such as this.

Tal Galili