판다스(4)
-
[pandas] 0이 포함된 로우 선택
# 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..
2021.12.13 -
[Pandas] DataFrame 공백 제거
df = df.apply(lambda x: x.str.strip(), axis=1)
2021.09.17 -
[pandas] DataFrame의 0을 NaN으로 변경하는 방법
df = df.replace(0, np.NaN)
2018.03.29 -
[pandas] 다른 컬럼의 값을 인덱스로 설정하는 방법
df = df.set_index('column_name')
2018.03.29