I am trying to use the GD::Graph module to plot a chart that will have militay hour number on the x-axis and a count on the y-axis. I have indexes for my hash table for 'hour' and 'count'. I would like to use the GD::Graph::lines function. Below is the example code that I am trying to plot my data but it gives me errors.
# This is the original data from the perldoc examples
# @data=(["1st","2nd","3rd"],
# [9,4,7]);
# I have a hash table with $data[$index]{'hour'} and $data[$index]{'c
+ount'}
#
$graph= GD::Graph::lines->new(400,300);
$graph->set(
x_label => 'Hour',
y_label => 'Transaction Volume',
title => 'Number of transactions per hour',
y_max_value => 20,
y_label_skip => 1,
y_tick_number => 1);
$gd = $graph->plot(\@data);
open (IMG,'>file.png') or die $!;
binmode IMG;
print IMG $gd->png;
close IMG;
Any ideas? Thanks in advance!!
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.