Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Perl module for chart drawing?

by lostjimmy (Chaplain)
on Dec 19, 2008 at 18:33 UTC ( [id://731619]=note: print w/replies, xml ) Need Help??


in reply to Perl module for chart drawing?

I've always found gnuplot to be very easy to use. You can pipe commands to it from Perl, but there is also Chart::Gnuplot, which I have never used.

Replies are listed 'Best First'.
Re^2: Perl module for chart drawing?
by Anonymous Monk on Dec 01, 2015 at 07:41 UTC
    with above script, was testing module and facing error saying "sh: convert: command not found". Please help me .
      used script for test
      use Chart::Gnuplot::Pie; # Create the pie chart object my $chart = Chart::Gnuplot::Pie->new( output => "pie.png", title => "Sample Pie"); # Data set my $dataSet = Chart::Gnuplot::Pie::DataSet->new( data => [ ['Item 1', 7500], ['Item 2', 3500], ['Item 3', 2000], ['Item 4', 4500], ], ); # Plot a 2D pie chart $chart->plot2d($dataSet);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://731619]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-03-28 20:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found