mogest / graphene

Graphing for Ruby

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basic Usage
===========

fibonacci_sequence = (0..10).inject([0,1]){|seq, index| seq << seq[-2] + seq[-1]; seq}
data = fibonacci_sequence.each_with_index.to_a    # data can be a array of two-value arrays, [[0, 0], [1, 1], [1, 2], [2, 3], [3, 4]]

chart = Graphene::Chart.new
chart.plot(data)                                  # plot, histogram, or bar

chart.to_svg

About

Graphing for Ruby

License:MIT License


Languages

Language:Ruby 100.0%