I have this CSV data which I want to map in my dygraph time series graph.
_time value Id provider
2022-09-20T10:43:00Z 1 1 x
2022-09-20T10:43:15Z 2 1 x
2022-09-20T10:43:30Z 3.2 1 x
2022-09-20T10:43:45Z 4 1 x
2022-09-20T10:44:00Z 4.1 1 x
2022-09-20T10:44:15Z 5 1 x
2022-09-20T10:43:00Z 2 2 y
2022-09-20T10:43:15Z 4 2 y
2022-09-20T10:43:30Z 4.5 2 y
2022-09-20T10:43:45Z 4 2 y
2022-09-20T10:44:00Z 5 2 y
2022-09-20T10:44:15Z 6 2 y
this throws an error while trying to graph the data. I want to be able to plot the time series graph in such a data type:
time x y
2022-09-20T10:43:00Z 1 2
2022-09-20T10:43:15Z 2 4
2022-09-20T10:43:30Z 3.2 4.5
2022-09-20T10:43:45Z 4 4
2022-09-20T10:44:00Z 4.1 5
2022-09-20T10:44:15Z 5 6
this data could show the graph that I want. but I can't seem to work with dygraph. PS the time being showed may not be the perfect time data but I will be implementing the normal data type in future.
I'm ready to implement the original data and configure it with dygraph or even change the data structure. let me know if I can give even more examples to convey my problem more properly.