We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I think it would be useful to be able to specify the correlation type when calling pcorr() directly as pandas method.
pcorr()
I suppose the only change would be this: On line 952:
V = self.cov() # Covariance matrix
to
if method == "spearman": # Convert the data to rank, similar to R cov() V = data.rank(na_option="keep").cov() else: V = data.cov()
The text was updated successfully, but these errors were encountered:
Hi @ozika,
Yes — please feel free to work on a PR (see contributing guidelines here)!
Thanks, Raphael
Sorry, something went wrong.
raphaelvallat
No branches or pull requests
Hi!
I think it would be useful to be able to specify the correlation type when calling
pcorr()
directly as pandas method.I suppose the only change would be this:
On line 952:
to
The text was updated successfully, but these errors were encountered: