On Wed, 8 Aug 2012, Paulo Grahl wrote:
I did the following within a gretl script:
gnuplot di --time-series --output="display" \
{ set style line 1 lt 1 lc rgb "#ff0000" lw 1 pt 13; \
set title "Diffusion Index for OECD exports"; \
set ylabel "Diffusion Index (50 = no change)" ; \
set grid ytics; \
plot '-' using 1:2 w linespoints;}
and it worked. So no need to add a --with-lp option.
Thanks!
Interesting, I didn't think that would work. The resulting
plot file has two "plot '-' ..." lines but only one dataset.
Anyway, I added the --with-lp option: it can be used
along with, or independently of, the {...} "extra commands"
mechanism.
Allin Cottrell