blob: c3de0a69c4a5237c65db289d3b0eb5eb004e60a8 (
plain)
1
2
3
4
5
6
7
8
|
# draw frame diff graph
set terminal svg size 800,600 dynamic;
set output "graph.svg";
plot 'data.txt' using 2 with lines lt rgb "#204a87" title "average", \
'data.txt' using 3 with lines lt rgb "#a40000" title "diff";
|