通过Pandas DataFrame计算每行的零数?

时间:2015-03-24 10:00:47

标签: python pandas

鉴于DataFrame,我想计算每行的零数。如何使用Pandas计算它?

这是我现在所做的,这会返回零的索引

def is_blank(x):
    return x == 0 

indexer = train_df.applymap(is_blank)

3 个答案:

答案 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

修改

正如大卫所指出的那样astypeint是不必要的,因为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