js/src/devtools/gnuplot/gcTimer.gnu

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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

mercurial