Tagged Questions
The gd-graph tag has no wiki summary.
4
votes
3answers
440 views
How can I rearrange my data to be (x,y) coordinates for GD::Graph?
I am writing a program that takes in an input file from the user. The file has bunch of numbers in it and I will read the numbers in the file and create a plot based on those numbers using GD::Graph.
...
2
votes
2answers
431 views
How do I keep GD::Graph from showing points outside of the graphing area?
I am making some plots in Perl using GD::Graph and some of the data is outside the area I would like to display, but instead of being truncated off the chart outside the graphing area, it is being ...
1
vote
1answer
135 views
(Perl's) GD Graph - Limit of plotted data?
Haven't had many good experiences with GD::Graph when trying to plot larger data arrays.
What i have is two arrays, one is 2mln float/integer values, the other - various length but less than 2 ...
1
vote
0answers
177 views
Why can't I change the font size or type in GD::Graph?
I'm using the GD::bars module in Perl v 5.8, but I can't seem to get the font size on my graphs x and y labels and values to change. Here's the relevant code I am using:
use GD::Graph::bars3d;
use ...
0
votes
4answers
231 views
How do I set up the data structure to make pie charts in GD::Graph?
I am writting a Perl script to create pie graph using GD::Graph::pie with these arrays:
@Array1 = ("A", "B", "C", "D");
$array2 = [
['upto 100 values'],
['upto 100 values'],
['upto ...
0
votes
1answer
174 views
How can I set options with variables in GD::Graph?
I am creating graphs using GD::Graph::lines. For option set, I have to write fixed values for options e.g. x_label => "label" as per below code:
my $mygraph = GD::Graph::lines->new($x, $y);
...
-2
votes
2answers
256 views
How can I round off the elements in a Perl array to just two decimal places?
I have an array with a few elements:
MSN = 34.3433423432434%
Chrome = 12.4343434353534%
Gtalk = 32.23233543543532%
...
And I'm passing this array as y-axis labels to use with a ...