0
I am with the following problem, I am importing a basis for python, however I can not manipulate it (make average), by the same as str, I need to import it all values come as float.
data=pd.read_csv('C:\\caminho\\df.csv', index_col=0, dtype=np.float64)
I used the following syntax for import,
he shows me an error in the last column, saying that can not convert, could help me?
I have already tried to transform the data frame after import by ulizing
np.float64(data)
, but the same turns array, then all functions stop working.