-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
ddof parameter on pl.corr is nonsensical #19420
Comments
The same holds for |
I am interested in doing this work as my first contribution to Polars. |
I'm still working on getting my local dev machine setup -- made more difficult since I use Guix. |
Hi @orlp, so on the rust side we would need to remove the finalize call or do we need to change the implementation and calculate it using some other formula ? |
@hshreekar Don't remove the finalize call, remove the |
Hello! Since other potential contributors looks inactive, let me make my first contributions to Polars :) (#20197) |
I only realized this after implementing it recently, but the ddof parameter is not used for
pl.corr
at all. It completely cancels out of the formula. To confirm this innp.corrcoef
you'll see:We should just remove the parameter in the Rust code and on the Python side deprecate the parameter, removing it in 2.0.
The text was updated successfully, but these errors were encountered: