Answers for "pandas how to make one column to int from float"

3

pandas convert float to int

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

convert dataframe column to float

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

Code answers related to "pandas how to make one column to int from float"

Python Answers by Framework

Browse Popular Code Answers by Language