in reply to Re: Stumped by Chart::Graph::Gnuplot parameters
in thread Stumped by Chart::Graph::Gnuplot parameters

To be clear, the final solution is:
while($logfile = shift) { push @data_sets, [{"type" => "file"}, $logfile]; } gnuplot({"title" => "foo"}, @data_sets);

Replies are listed 'Best First'.
(tye)Re: Stumped by Chart::Graph::Gnuplot parameters
by tye (Sage) on Mar 05, 2001 at 21:09 UTC

    the final solution is

    Heh!

    gnuplot( {title=>"foo"}, map {[{type=>"file"},$_]} @ARGV );
            - tye (but my friends call me "Tye")