Files
2014-06-30 13:58:10 +02:00

28 lines
767 B
Gnuplot

set title "TestTitle"
set xlabel "time"
set ylabel "delay"
#set ytics 0, 0.1
#set yrange [0:1.3]
set ytics nomirror
set y2label "size"
set y2tics 0, 2
#plot "results/Moversight_OneMaster-0-joinDelay.vec" every ::3 using 3:4 with lines title "delay"
plot "/home/jgaebler/ubeeme/source/simulations/results/Moversight_OneMaster-0-groupSize-node-0.vec" every ::2 using 3:4 with lines title "groupSize" axis x1y2, \
"/home/jgaebler/ubeeme/source/simulations/results/Moversight_OneMaster-0-joinDelay.vec" every ::2 using 3:4 with lines title "joinDelay" axis x1y1;
#export settings png
set terminal push
set terminal png
set output "test_plot.png"
#repeat the most recent plot command, the output now going to the specified fiel
replot
set output
set terminal pop