File: timeseries.rb

package info (click to toggle)
ruby-svg-graph 1.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 684 kB
  • ctags: 177
  • sloc: ruby: 2,939; xml: 453; makefile: 8
file content (58 lines) | stat: -rw-r--r-- 1,375 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'SVG/Graph/TimeSeries'


title = "Plot"
#data1 = []
#(rand(10)+5).times{
#  data1 << rand(20)
#  data1 << rand(20)
#}
data1 = ["6/17/74", 11, "1/11/74", 7, "4/13/04 17:31", 11, "9/11/01", 9, "9/1/85", 2, "9/1/88", 1, "1/15/95", 13]
#data2 = []
#(rand(10)+5).times{
#  data2 << rand(20)
#  data2 << rand(20)
#}
data2 = ["8/1/73", 18, "10/21/76", 15, "01/11/80", 4, "4/3/83", 14, "6/23/86", 6, "9/13/89", 12, "12/3/92", 6, "2/24/96", 17, "5/16/99", 12, "8/5/02", 7]
data3 = ["1/1/78", 5, "1/1/83", 13, "1/1/93", 10, "1/1/03", 5]


graph = SVG::Graph::TimeSeries.new( {
  :width => 640,
  :height => 480,
  :graph_title => title,
  :show_graph_title => true,
  :no_css => true,
  :key => true,
  :scale_x_integers => true,
  :scale_y_integers => true,
  :show_data_values => true,
  :show_x_guidelines => true,
  :show_x_title => true,
  :x_title => "Time",
  :show_y_title => true,
  :y_title => "Units",
  :y_title_text_direction => :bt,
  :stagger_x_labels => true,
  :x_label_format => "%Y",
  :min_x_value => "1/1/73",
  :timescale_divisions => "5 years",
  :add_popups => true,
  :popup_format => "%m/%d/%y",
  #:area_fill => true,
  :min_y_value => 0,
})
graph.add_data( 
  :data => data1,
  :title => "Ice Cream"
  )
graph.add_data( 
  :data => data2,
  :title => "Ice Cream Cones"
)
graph.add_data( 
  :data => data3,
  :title => "Sprinkles"
)
puts graph.burn