hda has asked for the wisdom of the Perl Monks concerning the following question:
use Graphics::GnuplotIF; my $plot = Graphics::GnuplotIF->new ( style => 'histogram', # one of the gnuplot line styles +(see below) title => "$mytitle", # string xlabel => '$myxlabel', # string ylabel => '$myylabel', # string xrange => [@myxrange], # array reference; autoscaling, +if empty yrange => [@myyrange], # array reference; autoscaling, +if empty plot_titles => [ "$titles" ], # array of strings; titles use +d in the legend persist => 0, # let plot windows survive after gnuplot +exits # 0 : close / 1 : survive ); $plot_glacier->gnuplot_plot_xy ( \@x, \@y ); $plot_glacier->gnuplot_pause();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: histograms with GnuplotIF ?
by Utilitarian (Vicar) on May 29, 2009 at 08:56 UTC | |
by hda (Chaplain) on May 29, 2009 at 09:19 UTC |