python中的df.corr()命令

发布于 2025-01-23 14:31:12 字数 178 浏览 0 评论 0原文

我想在Python中找到数据框的列之间的相关性。我想询问哪个相关系数提供df.corr()。相关性r还是其他?

例如,df.corr(method ='spearman',min_periods = 1)计算Spearman等级相关性,我的问题是括号是空的,python计算的内容是空的?

谢谢, Dimitris

I want to find the correlation between the columns of a dataframe in python. I would like to ask which correlation coefficient provides df.corr(). Correlation R or something else?

For example, df.corr(method='spearman', min_periods=1) computes spearman rank correlation, and my question is when the parenthesis is empty what python computes ?

Thanks,
Dimitris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝影如岚 2025-01-30 14:31:12

默认情况下,它是dataframe.corr(method ='pearson',min_periods = 1)文档

By default, it is DataFrame.corr(method='pearson', min_periods=1) (documentation)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文