[pandas] 0이 포함된 로우 선택

2021. 12. 13. 17:15Machine Learning

# 0이 하나라도 포함된 로우
df[(df == 0)].any(axis=1)

# 단 하나의 0도 포함하지 않은 로우
df[(df !=0)].all(axis=1)

 

https://stackoverflow.com/questions/27020312/drop-row-in-pandas-dataframe-if-any-value-in-the-row-equals-zero/27020741

 

Drop row in pandas dataframe if any value in the row equals zero

How do I drop a row if any of the values in the row equal zero? I would normally use df.dropna() for NaN values but not sure how to do it with "0" values.

stackoverflow.com

 

반응형