1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/devtools/gnuplot/gcTimer.gnu Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +# gnuplot script to visualize GCMETER results. 1.5 +# usage: "gnuplot gcTimer.gnu >outputfile.png" 1.6 + 1.7 +set terminal png 1.8 +# set Title 1.9 +set title "Title goes here!" 1.10 +set datafile missing "-" 1.11 +set noxtics 1.12 +#set ytics nomirror 1.13 +set ylabel "msec" 1.14 +set key below 1.15 +set style data linespoints 1.16 + 1.17 +#set data file 1.18 +plot 'gcTimer.dat' using 2 title columnheader(2), \ 1.19 +'' u 3 title columnheader(3) with points, \ 1.20 +'' u 4 title columnheader(4), \ 1.21 +'' u 5 title columnheader(5), \ 1.22 +'' u 6 title columnheader(6) with points, \ 1.23 +'' u 7 title columnheader(7) with points, \ 1.24 +'' u 8 title columnheader(8) with points, \ 1.25 +'' u 9 title columnheader(9) with points, \ 1.26 +'' u 10 title columnheader(10) with points, \ 1.27 +'' u 11 title columnheader(11) with points