convert all columns to float pandas

39

df["data"] = df["data"].astype(float)
df["col"] = df["col"].astype(float)

Comments

Submit
0 Comments