Help!
I am trying to use GD::Graph using data returned from a DBI call. But the layout of the data is not what the GRAPH module is expecting. DBI returns (r1c1, r1c2, r1c3) (r2c1, r2c2, r2c3), etc... and the graph module is expecting (r1c1, r2c2...)(r1c2, r2c2...)
Here is my code so far...
#! perl -w
use CGI ':standard';
use GD::Graph::bars;
use DBI;
my $SQL = "SELECT A.YM, SUM(A.TC)FROM A GROUP BY A.YM ORDER BY A.YM
";
$dbh = DBI->connect('dbi:DB2:DB2W',"$mf_id" , "$mf_pw"); if ($DBI::err
+str) {print "$DBI::errstr";}
$sth = $dbh->prepare($SQL); if ($DBI::err
+str) {print "$DBI::errstr";}
$rc = $sth->execute; if ($DBI::err
+str) {print "$DBI::errstr";}
$data = $sth->fetchall_arrayref;
my $mygraph = GD::Graph::bars->new(800, 500);
$mygraph->set(
x_label => 'Month',
y_label => 'Transactions',
title => 'Number of Transactions per Month',
show_values => 1,
bar_spacing => 10,
) or warn $mygraph->error;
my $myimage = $mygraph->plot(\@$data) or die $mygraph->error;
print "Content-type: image/png\n\n";
print $myimage->png;
Thanks for the Help!
Edit:larsen, changed title, added <code> tags and fixed formatting.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.