两列中没有None元素的Pandas DataFrame计数数量

时间:2018-07-09 13:12:12

标签: python pandas dataframe

我有一个pandas数据框,想同时计算两个(或多个)不同列中不是None的那些行。我当然可以那样做:

 count = 0
 for index, row in df.iterrows():
      if df['Col1'][index] is not None and
         PurpsAndBanks['Col2'][index] is not None:
         count+=1

但是有没有更优雅/有效的方法呢?

0 个答案:

没有答案