I have in my Dataframe Float type columns with few '\t' while all other values are float type.
I cannot remove them without making them the float values 'NaN'. I used following command, then all the float values become NaN.
df["col"] = df["col"].str.replace("\t","")
I tried few other things as well (like astype(float), isnumeric() etc.) but nothing seem to work. I know it seems like a simple thing, but I am unable to solve.