Table Modifications
General Info
Useful Snippets

8.0.5 Change column data type to int

Example:

# Convert data type of column to int
pd.to_numeric(DF['A']
              , downcast  = "integer")

# More basic method
DF['A'].astype(int)

# Or you can apply the 'int' function to your column 
DF['A'].apply(int)