Table Modifications
General Info
Useful Snippets

8.0.4 Change column data type to float

Example:

# Convert column to a floating point number, which is a number with a decimal point, 3 --> 3.0
pd.to_numeric(DF['A']
              , downcast="float" )

# Here is another method to convert a column to a floating point number
DF['A'].astype(float)