vote up 1 vote down star
1

What's the easiest way to build a plot of a function under Ruby? Any suggestions as to the special graphical library?

update: under windows only :-(

flag

4 Answers

vote up 0 vote down check

Is gnuplot a possible option?:

require 'gnuplot.rb'
Gnuplot.open { |gp|
    Gnuplot::Plot.new( gp ) { |plot|
        plot.output "testgnu.pdf"
        plot.terminal "pdf colour size 27cm,19cm"

        plot.xrange "[-10:10]"
        plot.title  "Sin Wave Example"
        plot.ylabel "x"
        plot.xlabel "sin(x)"

        plot.data << Gnuplot::DataSet.new( "sin(x)" ) { |ds|
            ds.with = "lines"
            ds.linewidth = 4
        }
        plot.data << Gnuplot::DataSet.new( "cos(x)" ) { |ds|
            ds.with = "impulses"
            ds.linewidth = 4
        }
    }
}
link|flag
gnuplot is very sweet, but somehow I cannot get the examples running. Just installed the gem. Running 1.8.6 on Windows. Any ideas/required plugins? – gmile Oct 13 at 19:10
Sorry if this wasn't obvious, but have you got gnuplot itself installed? The Ruby bit is only the bindings, AFAIK – Brent.Longborough Oct 13 at 23:29
vote up 0 vote down

This is my go-to graphing library: SVG::Graph

link|flag
This one's the only worked for me. But - can I produce continuous function graph instead of just dotted? – gmile Oct 13 at 19:34
vote up 0 vote down

I really like tioga. It can produce incredibly high quality, publication-ready graphs in latex.

link|flag
tioga is for POSIX OS Family only :-( – gmile Oct 13 at 19:35
ah, got that after your windows update. – Peter Oct 13 at 19:49
vote up 0 vote down

use SVG::Graph::Line like this:

require 'SVG/Graph/Line'

  fields = %w(Jan Feb Mar);
  data_sales_02 = [12, 45, 21]
  data_sales_03 = [15, 30, 40]

  graph = SVG::Graph::Line.new({
          :height => 500,
          :width => 300,
    :fields => fields,
  })

  graph.add_data({
          :data => data_sales_02,
    :title => 'Sales 2002',
  })

  graph.add_data({
          :data => data_sales_03,
    :title => 'Sales 2003',
  })

  print "Content-type: image/svg+xml\r\n\r\n";
  print graph.burn();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.