Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Instead of sticking with the hardcoded values above, I would like to read in the data from different files. ( data in a comma delimited format )use GD::Graph::lines; use GD::Graph::Map; @data = ( [ qw( Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec) ], [ reverse(4, 3, 5, 6, 3, 1.5, -1, -3, -4, -6, -7, -8)], [ (4, 3, 5, 6, 3, 1.5, -1, -3, -4, -6, -7, -8)], [ (2, 2, 2, 5, 5, 4.5,1.5, 2, 3, 5, 4, 3)], );
Once the data is in the arrays, I should be able to just push the exisiting arraysopen IN, "<header_data.dat"; @myheader = <IN>; close IN; open IN, "<daily_data1.dat"; @mydata1 = <IN>; close IN; open IN, "<daily_data2.dat"; @mydata2 = <IN>; close IN; open IN, "<daily_data3.dat"; @mydata3 = <IN>; close IN;
$my_graph = new GD::Graph::lines(); $my_graph->set( x_label => 'Month', y_label => 'Measure of success', title => 'A Multiple Line Graph', y_max_value => 8, y_min_value => -8, y_tick_number => 16, y_label_skip => 2, box_axis => 0, line_width => 3, zero_axis_only => 1, x_label_position => 1, y_label_position => 1, x_label_skip => 3, x_tick_offset => 2, ); $my_graph->set_legend("Us", "Them", "Others"); open PNG, ">sample52.png"; binmode PNG; #only for Windows like platforms print PNG ($my_graph->plot(\@data))->png; close PNG; $map = new GD::Graph::Map($my_graph, info => '%l'); $HTML = $map->imagemap("sample52.png", \@data); __END__
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Graphing basics..
by Ovid (Cardinal) on Feb 28, 2003 at 02:30 UTC | |
by Anonymous Monk on Feb 28, 2003 at 03:26 UTC | |
|
Re: Graphing basics..
by Anonymous Monk on Feb 28, 2003 at 01:48 UTC | |
|
Re: Graphing basics..
by tall_man (Parson) on Feb 28, 2003 at 05:32 UTC | |
by Anonymous Monk on Mar 01, 2003 at 20:10 UTC |