in reply to creating graphs

AFAIK, not directly. For finding min/max you can use max-min function List::Util module on the array which you use for plotting.
use List::Util qw(max min sum);
As for the labels. I thought you it's you who put them in
use GD::Graph::lines; my $my_graph = new GD::Graph::lines(); $my_graph->set( x_label => 'Label X', y_label => 'Label Y', title => 'Your Title');
Regards,
Edward

Replies are listed 'Best First'.
Re^2: creating graphs
by Anonymous Monk on May 17, 2005 at 14:13 UTC
    sorry, i mean labelling the peaks. perhaps place a number next to each peak on the graph