Answers for "how to change float to int in python dataframe"

1

convert dataframe to float

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

convert float to integer pandas

>>> df['C'] = df['C'].apply(np.int64)
>>> print(df)
...    A  B  C         D
... 0  8  0  1  6.226750
... 1  1  9  9  8.522808
... 2  1  4  2  7.739108
Posted by: Guest on August-03-2020
0

pandas convert float to int

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

Code answers related to "how to change float to int in python dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language