From 38aac43f8fc2fa5c64240b493684d6c837530a7f Mon Sep 17 00:00:00 2001 From: caes Date: Tue, 26 Jul 2016 22:05:03 -0400 Subject: [PATCH] added template to plot comparison of timelags with different error fits --- scripts/templates/timelag_compare.gp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 scripts/templates/timelag_compare.gp diff --git a/scripts/templates/timelag_compare.gp b/scripts/templates/timelag_compare.gp new file mode 100644 index 0000000..fea2611 --- /dev/null +++ b/scripts/templates/timelag_compare.gp @@ -0,0 +1,19 @@ +set terminal png +set termoption dash +set output "%OUTPUTFILE" +set encoding utf8 + +set title "%TITLE\n{/*0.7 %SUBTITLE}" +set xlabel "Temporal Frequency [days^{-1}]" +set xrange [0.005:0.620] +set logscale x + +set ylabel "Lag [days]" +#set yrange [%YMIN:%YMAX] + +# Draw line at origin +set arrow from 0.005,0 to 0.620,0 nohead lt 3 lc rgb 'black' + + +plot '%FILE1' using 1:2:3:4 with xyerrorbars title "%LABEL1", \ +"%FILE2" using 1:2:3:4 with xyerrorbars title "%LABEL2"