Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Sounds like GD's bar graph would work. Search groups.google and google for examples. Here is a little starter script, mailling it to yourself is a different problem.
#!/usr/bin/perl use GD::Graph::bars; @A = qw(-5 -4 -3 -2 -1 0 1 2 3 4 5 ); @B = qw(-6 -4 -2 0 2 4 6); @C = qw(1 2 3 4 5); @D = qw(4 5 6 7); @E = qw(-2 -4 -6 0 2 4 6 8); @datacolors = qw(blue green cyan pink yellow); my @data = ([@A],[@B],[@C],[@D],[@E]); my $graph = GD::Graph::bars->new(600,400); $graph->set( transparent => '0', x_label => 'A', y_label => 'B', title => 'A for B', dclrs => [ @datacolors ] ); open(IMG, ">$0.png"); binmode IMG; my $gd = $graph->plot(\@data); print IMG $gd->png; close IMG;

I'm not really a human, but I play one on earth Remember How Lucky You Are

In reply to Re: Perl module for chart drawing? by zentara
in thread Perl module for chart drawing? by mellin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 16:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found