這是做這件事。
代碼
def freq_by_bin(nbr_bins, *values)
nbr_bins.times.to_a.product([0]).to_h.tap { |h|
values.each { |v| h.update({ (v*nbr_bins).to_i=>1 }) { |_,o,_| o+1 } } }
end
例
values = [0.30, 0.25, 0.63, 0.94, 0.08, 0.94, 0.01,
0.41, 0.28, 0.69, 0.61, 0.12, 0.66]
freq_by_bin(10, *values)
#=> {0=>2, 1=>1, 2=>2, 3=>1, 4=>1,
# 5=>0, 6=>4, 7=>0, 8=>0, 9=>2}
def histogram(nbr_bins, *values)
h = freq_by_bin(nbr_bins, *values)
puts "\nfreq"
h.values.max.downto(0) do |n|
print "%2d|" % n
puts nbr_bins.times.with_object(' ') { |i,row|
row << ((h[i]==n) ? ' X ' : ' ') }
end
puts " __"+"___"*nbr_bins
puts nbr_bins.times.each_with_object(' ') { |i,row| row << "%2d " % i }
end
histogram(10, *values)
freq
4| X
3|
2| X X X
1| X X X
0| X X X
________________________________
0 1 2 3 4 5 6 7 8 9
注意
此代碼不起作用。直方圖[任何]是一個Fixnum,你不能打電話給它推動 – emaillenin
@emaillenin哎呀,你是正確的!我的意思是說,是一個數組的數組,我的壞! – cjhin
應該是'Array.new(n){[]}'以避免所有插槽引用相同的數組。 – tadman