I have a column in a dataframe that looks like this
Index Col
0 -1
1 2
2 -3
3 -
4 3
5 -
6 -7
how do i replace the "-" used to represent null values in the Col(like at index 3 and 5) to 0 without changing the minus sign in front of the negative values to zero. current dtype is object and i plan to change it to a float after handling the null values.