#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font 'Helvetica, 16pt' size 8.6cm, 6cm dl .5 point_sz = 0.5 data_f = 'frac_precision_vs_tacq.dat' fit_file = 'frac_precision_vs_tacq-fit.dat' allan_file = 'srs.dat' set output 'fractional_precision.eps' set logscale xy set xrange [0.7:300] set ytics format '10^{% 4T}' set xlabel "Acquisition Time T_a (s)" set ylabel "{/Symbol d}t / T_a" plot data_f u 1:2:3 w errorbars pt 12 ps point_sz notitle, \ fit_file u 1:2 w l lw 2 lc rgb "blue" notitle, \ # allan_file u 1:2 w p pt 8 ps 2 lc rgb "red" notitle, \ # 5e-11 dt 8 lc rgb "black" lw 2 notitle