I'm trying to import a csv-file with the following content in each line.
0;0;0;1;239.57558842082713;0.3690280072634046;[239.6369763080322, 239.5252233951102, 240.21580279356058, 239.86250730788123]
df = pd.read_csv('dataset', sep=';');
In the end df.dtypes shows that it is an object, but I want to get the values that I can make for example a line plot.
I tried to convert the object to a string, to remove the '[', ']' and than cast it to numeric, but I was not successful.
Any hints?
Thanks