Converting a float to an integer in a Pandas DataFrame will display the float values in the DataFrame as integers.
Solution for How to convert floats to integers with Pandas in Python : You can use pandas.DataFrame.astype() to cast a specified data type to DataFrame Call DataFrame[“col”].astype(data_type) to cast all elements in columns col of DataFrame to data_type.