Class: AsciiCharts::Chart
- Inherits:
-
Object
- Object
- AsciiCharts::Chart
- Defined in:
- lib/ascii_charts.rb
Direct Known Subclasses
Constant Summary collapse
- DEFAULT_MAX_Y_VALS =
20
- DEFAULT_MIN_Y_VALS =
10
- STEPS =
[1, 2, 5]
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
- #all_ints ⇒ Object
- #draw ⇒ Object
- #from_step(val) ⇒ Object
-
#initialize(data, options = {}) ⇒ Chart
constructor
data is a sorted array of [x, y] pairs.
- #lines ⇒ Object
- #max_xval_width ⇒ Object
- #max_yval ⇒ Object
- #max_yval_width ⇒ Object
- #min_yval ⇒ Object
- #nearest_step(val) ⇒ Object
- #next_step_down(val) ⇒ Object
- #next_step_up(val) ⇒ Object
-
#round_value(val) ⇒ Object
round to nearest step size, making sure we curtail precision to same order of magnitude as the step size to avoid 0.4 + 0.2 = 0.6000000000000001.
- #rounded_data ⇒ Object
- #scan_data ⇒ Object
- #scan_y_range ⇒ Object
- #step_size ⇒ Object
- #to_step(num, order) ⇒ Object
- #to_string ⇒ Object
- #y_range ⇒ Object
Constructor Details
#initialize(data, options = {}) ⇒ Chart
data is a sorted array of [x, y] pairs
14 15 16 17 |
# File 'lib/ascii_charts.rb', line 14 def initialize(data, ={}) @data = data @options = end |
Instance Attribute Details
#data ⇒ Object (readonly)
Returns the value of attribute data.
7 8 9 |
# File 'lib/ascii_charts.rb', line 7 def data @data end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
7 8 9 |
# File 'lib/ascii_charts.rb', line 7 def @options end |
Instance Method Details
#all_ints ⇒ Object
136 137 138 139 140 141 |
# File 'lib/ascii_charts.rb', line 136 def all_ints if !defined? @all_ints scan_data end @all_ints end |
#draw ⇒ Object
215 216 217 |
# File 'lib/ascii_charts.rb', line 215 def draw lines.join("\n") end |
#from_step(val) ⇒ Object
62 63 64 65 66 67 68 69 70 |
# File 'lib/ascii_charts.rb', line 62 def from_step(val) if 0 == val [0, 0] else order = Math.log10(val).floor.to_i num = (val / (10 ** order)) [num, order] end end |
#lines ⇒ Object
211 212 213 |
# File 'lib/ascii_charts.rb', line 211 def lines raise "lines must be overridden" end |
#max_xval_width ⇒ Object
167 168 169 170 171 172 |
# File 'lib/ascii_charts.rb', line 167 def max_xval_width if !defined? @max_xval_width scan_data end @max_xval_width end |
#max_yval ⇒ Object
122 123 124 125 126 127 |
# File 'lib/ascii_charts.rb', line 122 def max_yval if !defined? @max_yval scan_data end @max_yval end |
#max_yval_width ⇒ Object
174 175 176 177 178 179 |
# File 'lib/ascii_charts.rb', line 174 def max_yval_width if !defined? @max_yval_width scan_y_range end @max_yval_width end |
#min_yval ⇒ Object
129 130 131 132 133 134 |
# File 'lib/ascii_charts.rb', line 129 def min_yval if !defined? @min_yval scan_data end @min_yval end |
#nearest_step(val) ⇒ Object
81 82 83 84 |
# File 'lib/ascii_charts.rb', line 81 def nearest_step(val) num, order = self.from_step(val) self.to_step(2, order) ##@@ end |
#next_step_down(val) ⇒ Object
96 97 98 99 100 101 102 103 104 |
# File 'lib/ascii_charts.rb', line 96 def next_step_down(val) num, order = self.from_step(val) next_index = STEPS.index(num.to_i) - 1 if -1 == next_index STEPS.size - 1 order -= 1 end self.to_step(STEPS[next_index], order) end |
#next_step_up(val) ⇒ Object
86 87 88 89 90 91 92 93 94 |
# File 'lib/ascii_charts.rb', line 86 def next_step_up(val) num, order = self.from_step(val) next_index = STEPS.index(num.to_i) + 1 if STEPS.size == next_index next_index = 0 order += 1 end self.to_step(STEPS[next_index], order) end |
#round_value(val) ⇒ Object
round to nearest step size, making sure we curtail precision to same order of magnitude as the step size to avoid 0.4 + 0.2 = 0.6000000000000001
107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/ascii_charts.rb', line 107 def round_value(val) remainder = val % self.step_size unprecised = if (remainder * 2) >= self.step_size (val - remainder) + self.step_size else val - remainder end if self.step_size < 1 precision = -Math.log10(self.step_size).floor (unprecised * (10 ** precision)).to_i.to_f / (10 ** precision) else unprecised end end |
#rounded_data ⇒ Object
20 21 22 |
# File 'lib/ascii_charts.rb', line 20 def rounded_data @rounded_data ||= self.data.map{|pair| [pair[0], self.round_value(pair[1])]} end |
#scan_data ⇒ Object
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/ascii_charts.rb', line 143 def scan_data @max_yval = 0 @min_yval = 0 @all_ints = true @max_xval_width = 1 self.data.each do |pair| if pair[1] > @max_yval @max_yval = pair[1] end if pair[1] < @min_yval @min_yval = pair[1] end if @all_ints && !pair[1].is_a?(Integer) @all_ints = false end if (xw = pair[0].to_s.length) > @max_xval_width @max_xval_width = xw end end end |
#scan_y_range ⇒ Object
181 182 183 184 185 186 187 188 189 |
# File 'lib/ascii_charts.rb', line 181 def scan_y_range @max_yval_width = 1 self.y_range.each do |yval| if (yw = yval.to_s.length) > @max_yval_width @max_yval_width = yw end end end |
#step_size ⇒ Object
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 |
# File 'lib/ascii_charts.rb', line 24 def step_size if !defined? @step_size if self.[:y_step_size] @step_size = self.[:y_step_size] else max_y_vals = self.[:max_y_vals] || DEFAULT_MAX_Y_VALS min_y_vals = self.[:max_y_vals] || DEFAULT_MIN_Y_VALS y_span = (self.max_yval - self.min_yval).to_f step_size = self.nearest_step( y_span.to_f / (self.data.size + 1) ) if @all_ints && (step_size < 1) step_size = 1 else while (y_span / step_size) < min_y_vals candidate_step_size = self.next_step_down(step_size) if @all_ints && (candidate_step_size < 1) ## don't go below one break end step_size = candidate_step_size end end #go up if we undershot, or were never over while (y_span / step_size) > max_y_vals step_size = self.next_step_up(step_size) end @step_size = step_size end if !@all_ints && @step_size.is_a?(Integer) @step_size = @step_size.to_f end end @step_size end |
#to_step(num, order) ⇒ Object
72 73 74 75 76 77 78 79 |
# File 'lib/ascii_charts.rb', line 72 def to_step(num, order) s = num * (10 ** order) if order < 0 s.to_f else s end end |
#to_string ⇒ Object
219 220 221 |
# File 'lib/ascii_charts.rb', line 219 def to_string draw end |
#y_range ⇒ Object
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/ascii_charts.rb', line 191 def y_range if !defined? @y_range @y_range = [] first_y = self.round_value(self.min_yval) if first_y > self.min_yval first_y = first_y - self.step_size end last_y = self.round_value(self.max_yval) if last_y < self.max_yval last_y = last_y + self.step_size end current_y = first_y while current_y <= last_y @y_range << current_y current_y = self.round_value(current_y + self.step_size) ## to avoid fp arithmetic oddness end end @y_range end |