Answers for "how to change float to integer df"

1

convert dataframe to float

df["data"] = df["data"].astype(float)
Posted by: Guest on July-25-2021
0

pandas convert float to int

df['col'] = df['col'].astype(int)
Posted by: Guest on January-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language