I use pandas tu read a csv fill with numeric data like these:
-9999;-11,558;-0,692;0,005;0,001;-1
-9999;-3,32;1,054;5,317;0;-1
...
I use this line of code to import:
data = pd.read_csv(file, usecols = [0,1,2,3,4], sep = ";", header=None)
and the result is all my dataframe is fill by my numeric converted in string ex: '3,4'
I try adding ,dtype=float to my pd.read_csv line but I got this error:
ValueError: could not convert string to float: '5,04'
!!??