#!/usr/bin/gnuplot set terminal postscript eps color enhanced solid font "Helvetica,20" size 8.6cm,8cm set output "../crystal.eps" ####GENERAL SETTINGS#### set border linewidth 1.5 set samples 5000 set pointsize 1.5 unset bar set style fill solid 0.3 noborder f0 = 'crystal_2.47V.dat' # data from 2017-06-20 f1 = 'crystal_transfer_2.47V.dat' # data from 2017-06-20 f2 = '13.78uK.dat' set xtics nomirror set ytics nomirror set xlabel 'drop time ({/Symbol m}s)' set ylabel 'recapture probability (%)' unset key set ytics 0.25 set yrange[00:1.05] set xrange[-3:95] set xtics 20 plot f1 u ($1/1000):($3/0.984):(1/sqrt($2)) w ye lc rgb 'black' lt 7 ps 1, f2 u ($1*1e6):2 w l lw 2 lc rgb 'black' #f0 u ($1/1000):3:(1/sqrt($2)) w ye lc rgb 'red' pt 5 lt 7 ps 1 t 'lin' unset output pause -1