I have two csv files ,where I plot two series using the matplotlib in python.
File 1.csv
0.1,2
1.2,3
2.1,1
3.2,4
4.1,3
5.3,6
6.2,5
7.5,3
8.3,2
9.4,6
File 2.csv:
0.2,3
1.1,3.2
2.0,1.3
3.1,4.4
4.3,3.5
5.2,6.1
6.2,5.5
7.4,3.6
8.1,2.5
9.2,6.7
and I got the graph like below,
Can I get the difference in between the two series in the graph to a file for every time stamp like below.
1 sec : 0
2 sec : 0.5
3 sec : 0.4
I do not have any idea for getting these things to a file..