I want to fill empty cells in my csv file with zeros. I found that I can do this with fillna metod. It I do this:
fillna(“0”)
This will add 0 if cell is empty but if the cell has for example 1 it is changed to 1.0 which I don’t want. Is there any way to fix it?