Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What graphing packages/APIs exist for Perl?

I'm doing some research on online Graphing packages for different languages and would like to know what current up-to-date graphing packages there are for Perl which are worth investigating

Minimum desired capabilities should include the kind which Google offers through its API

A brief synopsis of the key benefits of the recommended package / API would be appreciated

like image 752
j pimmel Avatar asked Jan 20 '09 07:01

j pimmel


5 Answers

I've been messing around with Chart::Clicker recently. Those translucent area charts do have something for them.

like image 173
JB. Avatar answered Nov 19 '22 10:11

JB.


You might find the answers to this similar question helpful How do I create graphs in Perl on Windows?

If it's web based then I do like using Flash based charts. I've used Chart::OFC and can highly recommend it. However note there is an Open Flash Chart 2 on its way and a reciprocal module Chart::OFC2 as already hit the CPAN.

For good commercial Flash charting then take a look at FusionCharts. I'm currently testing this myself and it does look quite good.

For non Flash commercial alternatives then look at ChartDirector. I've have used this successfully with other Perl/Python programmers in a couple of companies I've done work with.

like image 34
draegtun Avatar answered Nov 19 '22 08:11

draegtun


For graphing in Perl, I've used the GD and GD::Graph modules. GD::Graph can produce simple bar, line, and pie charts, and output several graphics formats, including PNG.

like image 36
ChrisN Avatar answered Nov 19 '22 09:11

ChrisN


I second the recommendation for Chart::Clicker. This is unquestionably the best pure Perl charting module.

BTW, I edited your tags to be "charting" instead of "graphing". In the computer world, graphs are those things with edges and nodes, charts are pretty pictures.

like image 31
jrockway Avatar answered Nov 19 '22 09:11

jrockway


It's not open-source (or free) but check out Chart Director - they have a free download (no time-limit), it's cross-platform (Windows/Linux/Solaris/FreeBSD/Mac) and the charts look better than what I've seen on CPAN.

The license is only $99 US.

like image 1
JDrago Avatar answered Nov 19 '22 08:11

JDrago