Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I create graphs in Perl on Windows?

Tags:

graph

perl

report

How do I use Perl to create graphs?

I'm running scheduled job that creates text reports. I'd like to move this to the next step (for the management) and also create some graphs that go along with this. Is this possible / feasible? It'd be great if I could do this using Office some how.

update: solutions i'm going to investigate in this order

  • Spreadsheet::WriteExcel (this seems to now have changed from the last time i investigated this .... wait, this was suggested by the author of the module. cool.)
  • GD Graph - this is now available for ActivePerl(wasn't last time i looked)
  • SVG
  • Open Charts look interesting.
  • Chartdirector
like image 874
Alex Avatar asked Sep 15 '08 16:09

Alex


People also ask

Which Microsoft app is best for graphs?

Excel is better with graphs than Access.

What program can I use to make a chart?

You can make a chart in Word or Excel. If you have lots of data to chart, create your chart in Excel, and then copy from Excel to another Office program.


2 Answers

GD and GD::Graph are probably your best bets, you can use them to create images that you can then embed into whatever you need.

like image 65
shelfoo Avatar answered Oct 28 '22 14:10

shelfoo


All of the methods mentioned above are really good, but personally I like SVG::TT::Graph. I really like the power that SVG gives you to draw really nice-looking graphs.

like image 7
Dave Cross Avatar answered Oct 28 '22 13:10

Dave Cross