when excel is loaded into python 2c numeric datatype changes to float

Solutions on MaxInterview for when excel is loaded into python 2c numeric datatype changes to float by the best coders in the world

showing results for - "when excel is loaded into python 2c numeric datatype changes to float"
Luna
20 Feb 2018
1surveys_df.plot_id.astype("float")
2
Fabio
22 Aug 2020
1# Convert the record_id field from an integer to a float
2surveys_df['record_id'] = surveys_df['record_id'].astype('float64')
3surveys_df['record_id'].dtype
4