微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python – pandas.DataFrame corrwith()方法

我最近开始和熊猫一起工作.任何人都可以用Series和DataFrame来解释函数.corrwith()的行为差异吗?

假设我有一个DataFrame:

frame = pd.DataFrame(data={'a':[1,2,3], 'b':[-1,-2,-3], 'c':[10, -10, 10]})

我想要计算特征’a’和所有其他特征之间的相关性.
我可以通过以下方式完成:

frame.drop(labels='a', axis=1).corrwith(frame['a'])

结果将是:

b   -1.0
c    0.0

但非常相似的代码

frame.drop(labels='a', axis=1).corrwith(frame[['a']])

生成绝对不同且不可接受的表格:

a   NaN
b   NaN
c   NaN

所以,我的问题是:为什么在DataFrame作为第二个参数的情况下,我们得到如此奇怪的输出

解决方法:

我认为你在寻找什么:

假设您的框架是:

frame = pd.DataFrame(np.random.rand(10, 6), columns=['cost', 'amount', 'day', 'month', 'is_sale', 'hour'])

您希望“费用”和“金额”列与每个组合中的所有其他列相关联.

focus_cols = ['cost', 'amount']
frame.corr().filter(focus_cols).drop(focus_cols)

enter image description here

回答你的问题:

Compute pairwise
correlation between rows or columns of two DataFrame objects.

Parameters:

other : DataFrame

axis : {0 or ‘index’, 1 or ‘columns’},

default 0 0 or ‘index’ to compute column-wise, 1 or ‘columns’ for row-wise drop : boolean, default False Drop missing indices from
result, default returns union of all Returns: correls : Series

corrwith的行为类似于add,sub,mul,div,因为它希望找到一个DataFrame或一个正在传递的系列,尽管文档只说DataFrame.

当其他是系列时,它播放该系列并沿轴指定的轴匹配,认为0.这就是以下工作的原因:

frame.drop(labels='a', axis=1).corrwith(frame.a)

b   -1.0
c    0.0
dtype: float64

当other是DataFrame时,它将匹配轴指定的轴并关联由另一个轴标识的每个对.如果我们这样做:

frame.drop('a', axis=1).corrwith(frame.drop('b', axis=1))

a    NaN
b    NaN
c    1.0
dtype: float64

只有c是共同的,只有c计算了它的相关性.

在您指定的情况下:

frame.drop(labels='a', axis=1).corrwith(frame[['a']])

frame [[‘a’]]是一个DataFrame,因为[[‘a’]]并且现在由DataFrame规则播放,其中的列必须与其相关的列匹配.但是你明确地从第一帧中删除一个然后与一个只有一个的数据帧相关联.结果是每列的NaN.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐