|
From: Hans-Bernhard B. <HBB...@t-...> - 2008-10-01 19:24:57
|
Florian Koelling wrote: > Is there any possibility to avoid the plot-open plot-close plot > procedure? I only would like to save my Data to Disk without having any > popup. Then you'll have to check the documentation of gnuplot.py about interactive vs. direct-to-file outputs. Suffice it to say that "hardcopy" probably shouldn't be a command you use: > g.plot(d) > g.hardcopy(place_2_save_4_feat, terminal='png') This plots the data to the screen first, then outputs it to a file. That's not what you want, so don't do that. |