Drop rows with all zeros in pandas data frame

前端 未结 13 1222
礼貌的吻别
礼貌的吻别 2020-11-27 11:57

I can use pandas dropna() functionality to remove rows with some or all columns set as NA\'s. Is there an equivalent function for drop

13条回答
  •  猫巷女王i
    2020-11-27 12:25

    df = df [~( df [ ['kt'  'b'   'tt'  'mky' 'depth', ] ] == 0).all(axis=1) ]
    

    Try this command its perfectly working.

提交回复
热议问题