I have a data set and there is a feature which containing numbers in string like
"153", "45", "13", "345"
I'd like to convert these values to integer with python and i wrote this line of code:
df.column = df.column.astype("int")
But i'm getting this error:
invalid literal for int() with base 10: '2,83E+05'
There is some value like:
3.89E+05, 2.60E+05, 3,13E+05
How can i convert it to any numerical data type? Thanks in advance
enter code here