Hello,
I am really glad that you have incorporated the gnuplot command within
the loop structure. But one thing still remains.
Of course, one can produce figures using the loop command now. But I
cannot save these figures in the session icon view window for further
manipulation or so. The thing is, when I want to save a graph by
<script
fig_X <- gnuplot --time-series --with-lines X
<script
gretl generates and saves it as an icon.
But using this command within a loop does not work, as for example
<script
loop foreach i X Y
fig_$i <- gnuplot
endloop
<script
Gretl only saves the graph as a *.plt file.
Would it be possible to allow for this feature?
The actual reason why I am asking is that I do not know how to handle
the produced *.plt file. Actually I would like to produce a *.eps file
or whatever automatically. For example by
<script
loop foreach i X Y
fig_$i <- gnuplot
save fig_$i as eps
endloop
<script
Best,
Artur