鉴于DataFrame,我想计算每行的零数。如何使用Pandas计算它?
这是我现在所做的,这会返回零的索引
def is_blank(x):
return x == 0
indexer = train_df.applymap(is_blank)
答案 0 :(得分:27)
使用布尔比较产生一个布尔df,然后我们可以将它转换为int,True变为1,False变为0然后调用count
并传递param axis=1
来计算行数:
In [56]:
df = pd.DataFrame({'a':[1,0,0,1,3], 'b':[0,0,1,0,1], 'c':[0,0,0,0,0]})
df
Out[56]:
a b c
0 1 0 0
1 0 0 0
2 0 1 0
3 1 0 0
4 3 1 0
In [64]:
(df == 0).astype(int).sum(axis=1)
Out[64]:
0 2
1 3
2 2
3 2
4 1
dtype: int64
突破以上:
In [65]:
(df == 0)
Out[65]:
a b c
0 False True True
1 True True True
2 True False True
3 False True True
4 False False True
In [66]:
(df == 0).astype(int)
Out[66]:
a b c
0 0 1 1
1 1 1 1
2 1 0 1
3 0 1 1
4 0 0 1
修改强>
正如大卫所指出的那样astype
到int
是不必要的,因为Boolean
类型会在调用int
时被sum
提升为(df == 0).sum(axis=1)
所以这简化为:
{{1}}
答案 1 :(得分:3)
以下是使用apply()
和value_counts()
的另一种解决方案。
df = pd.DataFrame({'a':[1,0,0,1,3], 'b':[0,0,1,0,1], 'c':[0,0,0,0,0]})
df.apply( lambda s : s.value_counts().get(0,0), axis=1)
答案 2 :(得分:2)
您可以使用以下python pandas函数计算每列的零。 它可以帮助需要计算每列特定值的人
df.isin([0]).sum()
这里df是数据帧,我们要计数的值为0