I'm working with spatially enabled dataframes (sdf) to develop a workflow using ArcGIS API for Python. In the sdf, I have a field name, facility_id, which has a field type, Float64. I've changed the field type to Int64. When I print a list of field types, facility_id has the old field type, Float64. See attached image to view outputs. Any help is greatly appreciated!
# Change field type
sdf.astype({'facility_id': 'Int64'}).dtypes
# list field types by field name
sdf.dtypes