michael@0: # gnuplot script to visualize GCMETER results. michael@0: # usage: "gnuplot gcTimer.gnu >outputfile.png" michael@0: michael@0: set terminal png michael@0: # set Title michael@0: set title "Title goes here!" michael@0: set datafile missing "-" michael@0: set noxtics michael@0: #set ytics nomirror michael@0: set ylabel "msec" michael@0: set key below michael@0: set style data linespoints michael@0: michael@0: #set data file michael@0: plot 'gcTimer.dat' using 2 title columnheader(2), \ michael@0: '' u 3 title columnheader(3) with points, \ michael@0: '' u 4 title columnheader(4), \ michael@0: '' u 5 title columnheader(5), \ michael@0: '' u 6 title columnheader(6) with points, \ michael@0: '' u 7 title columnheader(7) with points, \ michael@0: '' u 8 title columnheader(8) with points, \ michael@0: '' u 9 title columnheader(9) with points, \ michael@0: '' u 10 title columnheader(10) with points, \ michael@0: '' u 11 title columnheader(11) with points