Slide 22
Slide 22 text
Rubyplot: older workable API
Simple Bar plot
1 require ’rubyplot’
3 plot = Rubyplot::Bar.new(400)
plot. title = ’My Graph’
5 plot.data([1, 2, 3, 4, 4, 3], label : ’Apples oranges Watermelon’)
plot.data([4, 8, 7, 9, 8, 9], label : ’Oranges’)
7 plot.data([2, 3, 1, 5, 6, 8], label : ’Watermelon’)
plot.data([9, 9, 10, 8, 7, 9], label : ’Peaches’)
9 plot. labels = { 0 => ’2003’, 2 => ’2004’, 4 => ’2005’ }