https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 51ffd2b47cdcd62982df9ad5a0c7a8e3cd964583 authored by ffxbld on 07 September 2012, 04:06:57 UTC
Added FENNEC_16_0b2_RELEASE FENNEC_16_0b2_BUILD2 tag(s) for changeset b7daf566e84a. DONTBUILD CLOSED TREE a=release
Tip revision: 51ffd2b
gcTimer.gnu
# gnuplot script to visualize GCMETER results.
# usage: "gnuplot gcTimer.gnu >outputfile.png"

set terminal png
# set Title
set title "Title goes here!"
set datafile missing "-"
set noxtics
#set ytics nomirror
set ylabel "msec"
set key below
set style data linespoints

#set data file
plot 'gcTimer.dat' using 2 title columnheader(2), \
'' u 3 title columnheader(3) with points, \
'' u 4 title columnheader(4), \
'' u 5 title columnheader(5), \
'' u 6 title columnheader(6) with points, \
'' u 7 title columnheader(7) with points, \
'' u 8 title columnheader(8) with points, \
'' u 9 title columnheader(9) with points, \
'' u 10 title columnheader(10) with points, \
'' u 11 title columnheader(11) with points
back to top