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?
You can set inplace
to True
(default is False
):
area.replace(0, np.nan, inplace=True)
See examples in docs.
You need to do:
area = area.replace(0, np.nan)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With