Bug 553682, TM: GC Profiler Part1: Gnuplot script. r=gal

This commit is contained in:
Gregor Wagner 2010-03-25 15:20:34 -07:00
Родитель bf77dc64cb
Коммит 5cc6c2c289
1 изменённых файлов: 25 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,25 @@
# gnuplot script to visualize GCMETER results.
# usage: "gnuplot gcTimer.pl >outputfile.png"
set terminal png
# set Title
set title "Title goes here!"
set datafile missing "-"
set noxtics
set ytics nomirror
set ylabel "Cycles [1E6]"
set y2tics nomirror
set y2label "Chunk count"
set key below
set style data linespoints
#set data file
plot 'gcTimer.dat' using 2 title columnheader(2), \
'' u 3 title columnheader(3), \
'' u 4 title columnheader(4), \
'' u 5 title columnheader(5) with points, \
'' 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 axis x1y2, \
'' u 10 title columnheader(10) with points axis x1y2