I have this Csv file:
DateTime;S1;S2;S3
2020-07-15 16:27:01.221660;652.3826361765446;661.0531016851814;387.24703877989487
2020-07-15 16:27:01.221660;953.4271004457892;873.8955069132078;397.91143086810587
I want to read the file by columns, so:
DateTime_array = [2020-07-15 16:27:01.221660,2020-07-15 16:27:01.221660]
S1_array = [652.3826361765446,953.4271004457892]
S2_array = [661.0531016851814,873.8955069132078]
S3_array = [387.24703877989487,397.91143086810587]
After this I want to plot data, DateTime_array is the X coordinates for each Signal(S1,S2...) and in Signals array are contained the Y coordinates.
How can I do this? Is there any other way to do it straight from the csv?
pandas.read_csv