#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font 'Helvetica, 16pt' size 8.6cm, 6cm dl .5 set datafile separator ',' point_sz = 1 data_f = 'precision_vs_tacq.csv' set output 'precision.eps' set ytics 0,20,150 set logscale x set xrange [1:2e3] set yrange [1:120] # set xtics format '10^{% 4T}' # set xtics 1,10,1000 set xlabel "Acquisition Time T_a (s)" set ylabel "Precision (ps)" offset 2 set key left Left reverse plot data_f u 1:2:3 w errorlines dt 3 lc rgb 'red' pt 12 ps point_sz lw 2 title 'Round-Trip', \ data_f u 1:4:5 w errorlines dt 2 lc rgb 'blue' pt 12 ps point_sz lw 2 title 'Single-Trip', \ data_f u 1:6:7 w errorlines dt 1 lc rgb 'black' pt 12 ps point_sz lw 2 title 'Clock Offset'