Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would get find an average from an array?

Say

[0,4,8,2,5,0,2,6]

would give 3.375

Thanks!

share|improve this question
6  
If you're getting 21.75 as the average of those numbers, something's very wrong... – ceejayoz Aug 27 '09 at 14:06
1  
dotty, not sure how you got 21.75 but the average/mean for that set of data is 3.375 and the sum is 27. i'm not sure what sort of aggregation function would yield 21.75. Please double check and make sure that average is really what you're after! – Paul Sasik Aug 27 '09 at 14:07
I have NO idea where i got 21.75 from. Must had press something like 0+48+2+5+0+2+6 on the calculator! – dotty Aug 27 '09 at 14:19
6  
Since this is also tagged ruby-on-rails, active record calculations are worth looking into if you are averaging an ActiveRecord array. Person.average(:age, :country => 'Brazil') returns the average age of people from Brazil. Pretty cool! – Kyle Heironimus Oct 27 '10 at 17:35

9 Answers

up vote 77 down vote accepted

Try this:

arr = [5, 6, 7, 8]
arr.inject{ |sum, el| sum + el }.to_f / arr.size
=> 6.5

Note the .to_f, which you'll want for avoiding any problems from integer division. You can also do:

arr = [5, 6, 7, 8]
arr.inject(0.0) { |sum, el| sum + el } / arr.size
=> 6.5

You can define it as part of Array as another commenter has suggested, but you need to avoid integer division or your results will be wrong. Also, this isn't generally applicable to every possible element type (obviously, an average only makes sense for things that can be averaged). But if you want to go that route, use this:

  class Array
    def sum
      inject(0.0) { |result, el| result + el }
    end

    def mean 
      sum / size
    end
  end

If you haven't seen inject before, it's not as magical as it might appear. It iterates over each element and then applies an accumulator value to it. The accumulator is then handed to the next element. In this case, our accumulator is simply an integer that reflects the sum of all the previous elements.

Edit: Commenter Dave Ray proposed a nice improvement.

Edit: Commenter Glenn Jackman's proposal, using arr.inject(:+).to_f, is nice too but perhaps a bit too clever if you don't know what's going on. The :+ is a symbol; when passed to inject, it applies the method named by the symbol (in this case, the addition operation) to each element against the accumulator value.

share|improve this answer
4  
You can eliminate to_f and ? operator by passing an initial value to inject: arr.inject(0.0) { |sum,el| sum + el } / arr.size. – Dave Ray Aug 27 '09 at 14:37
27  
Or: arr.inject(:+).to_f / arr.size # => 3.375 – glenn jackman Aug 27 '09 at 15:11
@glenn: That's nice too, but I think the Symbol#to_proc automatic conversion is just a bit too clever for a StackOverflow answer. – John Feminella Aug 27 '09 at 16:39
1  
I don't think this warrants adding to the Array class, since it's not generalizable to all the types that Arrays can contain. – Sarah Mei Aug 27 '09 at 17:12
7  
@John: That's not exactly Symbol#to_proc conversion — it's part of the inject interface, mentioned in the documentation. The to_proc operator is &. – Chuck Aug 27 '09 at 18:53
show 3 more comments
a = [0,4,8,2,5,0,2,6]
a.instance_eval { reduce(:+) / size.to_f } #=> 3.375
share|improve this answer
Hi, Corban. I'm looking for some documentation on ":+". Does that fit into a "class" of symbols that a function, like reduce, can use? Thank you. – Zachary Young Jul 26 '11 at 2:16
This one could be considered too clever, but very useful when you're inside of the console session and don't want to be extending Array class or storing Array in separate variable, so +1 definitely! – dolzenko Oct 3 '11 at 8:57
I don't think it is too clever. I think it solves the problem idiomatically. I.e., it uses reduce, which is exactly correct. Programmers should be encouraged to understand what is correct, why it is correct, and then propagate. For a trivial operation like average, true, one doesn't need to be "clever". But by understanding what "reduce" is for a trivial case, one can then start applying it to much more complex problems. upvote. – pduey Feb 7 '12 at 17:50
1  
why the need for instance_eval here? – tybro0103 May 9 '12 at 16:13
1  
instance_eval lets you run the code while only specifying a once, so it can be chained with other commands. I.e. random_average = Array.new(10) { rand(10) }.instance_eval { reduce(:+) / size.to_f } instead of random = Array.new(10) { rand(10) }; random_average = random.reduce(:+) / random.size – Benjamin Manns Jul 10 '12 at 17:56

I believe the simplest answer is

list.reduce(:+).to_f / list.size
share|improve this answer

I was hoping for Math.average(values), but no such luck.

values = [0,4,8,2,5,0,2,6]
average = values.sum / values.size.to_f

edit: formatting

share|improve this answer
1  
I think this might be a Rails Extension, so not a general ruby case answer. Still gave you an upvote anyway. – taelor Jun 28 '11 at 18:19
I didn't realize #sum was added by Rails! Thanks for pointing that out. – Denny Abraham Jul 26 '11 at 11:29
My choice to solve the average from array problem – David Mauricio Jul 19 '12 at 5:19

Why not just:

list.sum.to_f / list.size

It's more readable and easier to write.

share|improve this answer
Array#sum is only available in Rails. – Derek Dahmer Apr 23 at 16:06
a = [0,4,8,2,5,0,2,6]
sum = 0
a.each { |b| sum += b }
average = sum / a.length
share|improve this answer
3  
This will return incorrect values because of integer division. For example, if a is [2, 3], the expected result is 2.5, but you'll return 2. – John Feminella Aug 27 '09 at 14:03
Thanks, that's why I voted your answer up – erik Aug 27 '09 at 14:04

Don't have ruby on this pc, but something to this extent should work:

values = [0,4,8,2,5,0,2,6]
total = 0.0
values.each do |val|
 total += val
end

average = total/values.size
share|improve this answer
class Array
  def sum 
    inject( nil ) { |sum,x| sum ? sum+x : x }
  end

  def mean 
    sum.to_f / size.to_f
  end
end

[0,4,8,2,5,0,2,6].mean
share|improve this answer
2  
This returns incorrect values because of integer division. Try it with, for example, [2,3].mean, which returns 2 instead of 2.5. – John Feminella Aug 27 '09 at 14:06
1  
Needs more floatyness. – Andy Gaskell Aug 27 '09 at 14:08
1  
Why should an empty array have a sum of nil rather than 0? – Andrew Grimm May 23 '11 at 11:59
1  
Because you can get the difference between [] and [0]. And I think everybody who want a real mean can make use of to_i or replace the above nil with an 0 – astropanic May 23 '11 at 12:58
[1,2].tap { |a| @asize = a.size }.inject(:+).to_f/@asize

Short but using instance variable

share|improve this answer
I'd do a_size = nil; [1,2].tap { |a| a_size = a.size }.inject(:+).to_f/a_size rather than create an instance variable. – Andrew Grimm Aug 1 '11 at 23:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.