Class: EverydayCliUtils::Histogram
- Inherits:
-
Object
- Object
- EverydayCliUtils::Histogram
- Defined in:
- lib/everyday-cli-utils/histogram.rb
Class Method Summary collapse
- .add_averages(height, ks, lines, mi, step, width) ⇒ Object
- .add_graph(counts, height, lines, max_y, width) ⇒ Object
- .setup(collection, height, width) ⇒ Object
Class Method Details
.add_averages(height, ks, lines, mi, step, width) ⇒ Object
29 30 31 32 |
# File 'lib/everyday-cli-utils/histogram.rb', line 29 def self.add_averages(height, ks, lines, mi, step, width) lines[height] = ' ' * width ks.each { |v| lines[height][((v - mi) / step).to_i] = '|' } end |
.add_graph(counts, height, lines, max_y, width) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/everyday-cli-utils/histogram.rb', line 17 def self.add_graph(counts, height, lines, max_y, width) (0...width).each { |i| h = ((counts[i].to_f / max_y.to_f) * height.to_f).round ((height - h)...height).each { |j| lines[j][i] = '#' } if h == 0 && counts[i] > 0 lines[height - 1][i] = '_' end } end |
.setup(collection, height, width) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/everyday-cli-utils/histogram.rb', line 5 def self.setup(collection, height, width) mi = collection.min ma = collection.max diff = ma - mi step = diff.to_f / (width.to_f - 1) counts = Array.new(width, 0) collection.each { |v| counts[((v - mi).to_f / step.to_f).floor] += 1 } max_y = counts.max lines = Array.new(height) { ' ' * width } return counts, lines, max_y, mi, step end |