Help for this page

Select Code to Download


  1. or download this
    gnuplot({"title" => "foo"},
           [{"type" => "file"}, "cdb.7600.log"],
           [{"type" => "file"}, "cdb.8299.log"]);
    
  2. or download this
    use Chart::Graph qw(gnuplot);
    
    ...
    gnuplot(\%global_options, [\%data_set_options, \@matrix], 
                              [\%data_set_options, \@x_column, \@y_column]
    +,
                              [\%data_set_options, < filename >], ... );
    
  3. or download this
    while($logfile = shift) {
        push @data_sets, ({"type" => "file"}, $logfile);
    ...
    
    gnuplot({"title" => "foo"},
            \@data_sets);