On Mon, 11 Aug 2014, Artur T. wrote:
I trying to plot a matrix where the last two columns contain
information on
confidence intervals which I would like to plot as a shaded area.
I wrote a script, but the pdf is not properly compiled giving me an error
msg which I don't fully understand. I attached a script which requires the
matrix to plot and the path where to store the pdf as inputs.
Unfortunately I can't figure out where the error is.
When you want to write a backslash for line-continuation in a gnuplot
script via gretl's "printf" command, you need to double it since backslash
is the escape character. So, for example:
printf "plot \\\n"
printf "'-' using 1:2:3 w filledcurve lt 8, \\\n"
and so on.
Allin Cottrell