GD::Graph
Help and Information with Perl's GD::Graph moduleSitemap:
Sample Listsample11.plsample12.plsample13.plsample14.plsample15.plsample16.plsample17.plsample18.plsample19.plsample1A.plsample1B.plsample21.plsample22.plsample23.plsample31.plsample41.plsample42.plsample51.plsample52.plsample53.plsample54.plsample55.plsample56.plsample57.plsample61.plsample62.plsample63.plsample64.plsample71.plsample91.plsample92.plsample93.plsample95.pl |
sample42.plUse the left-hand navigation menu to view the other samples included in the GD::Graph package, or use the links at the top to view other sections of the website. Generated Chartsample42.gif:![]() Code to generate these graphs:use GD::Graph::linespoints;
require 'save.pl'; print STDERR "Processing sample42\n"; @data = read_data_from_csv("sample42.dat") or die "Cannot read data from sample42.dat"; $my_graph = new GD::Graph::linespoints( ); $my_graph->set( x_label => 'X Label', y_label => 'Y label', title => 'A Lines and Points Graph, reading a CSV file', y_max_value => 80, y_tick_number => 6, y_label_skip => 2, markers => [ 1, 5 ], transparent => 0, ); $my_graph->set_legend( 'data set 1', 'data set 2' ); $my_graph->plot(\@data); save_chart($my_graph, 'sample42'); sub read_data_from_csv { my $fn = shift; my @d = (); open(ZZZ, $fn) || return (); while ( { chomp; # you might want Text::CSV here my @row = split /,/; for (my $i = 0; $i <= $#row; $i++) { undef $row[$i] if ($row[$i] eq 'undef'); push @{$d[$i]}, $row[$i]; } } close (ZZZ); return @d; } |
