0

I have a Dataframe of which one column contains several missing values, which are printed as NaN. I want to replace the missing values with the number 0. How can I do that with the fillna() function?

Lnnrrt
  • 1

1 Answers1

0

does using data.fillna(0) work for you?