python中的df.corr()命令
我想在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,它是
dataframe.corr(method ='pearson',min_periods = 1)
(文档)By default, it is
DataFrame.corr(method='pearson', min_periods=1)
(documentation)