본문 바로가기

Python/Pandas

[Python] Pandas - dataframe의 특정 값을 NaN으로 변경

반응형

0을 NaN으로 변경

import numpy as np

df = df.replace(0, np.NaN)
반응형