I have dataframe with only 1 column. I want to replace all '0' to np.nan but I can't achieve that.
dataframe is called area. I tried:
area.replace(0,np.nan)
area.replace(to_replace=0,np.nan)
area.replace(to_replace=0,value=np.nan)
area.replace('0',np.nan)
What should I do?