vote up 4 vote down star
1

My language is PHP, but the algorithm should be fairly universal.

I have an associative array of (let's say) ratings and number of times that rating has been given.

$ratings = array(
    1 => 1,
    2 => 3,
    3 => 6,
    4 => 3,
    5 => 3
);

This is the equivalent of: [1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 5, 5], but given the numbers I'm working with, it would be quite inefficient to convert from the first form to the second.

What would be the algorithm to calculate the mean of the above numbers?

flag

67% accept rate

3 Answers

vote up 12 vote down check

Try this:

$total = 0;
$count = 0;
foreach($ratings as $number=>$frequency) {
  $total += $number * $frequency;
  $count += $frequency;
}
return $total / $count;
link|flag
You might have to convert one of the numbers to double in the return line, I can't remember whether PHP does integer division. – Ray Hidayat Jan 29 at 3:11
PHP's cool with all that! – nickf Jan 29 at 3:12
If there was a "duel the accepted answer" button, I would click it here :) – Sparr Jan 29 at 4:07
vote up 8 vote down

Wouldn't this work?

$total = 0;
$sum = 0;
foreach ($ratings as $k => $v) {
  $total += $k * $v;
  $sum += $v;
}
echo $total / $sum;

EDIT: Well, I look silly, since someone beat me to it. Oh well.

link|flag
Sorry! Our code is pretty much exactly the same though! – Ray Hidayat Jan 29 at 3:16
Yeah, I noticed that - that's pretty crazy. – Sasha Jan 29 at 3:17
+1 for the effort. :) – andyk Jan 29 at 5:50
vote up 2 vote down

Doubt I can beat the accepted answer, but I find that built in looping functions run faster than scripted loops. Not sure how well the calls to $multiply are going to be optimized. If this is really slow then I expect someone will point it out in a comment.

function multiply( $k , $v ) { return $k * $v; }
return array_sum( array_map( 'multiply' , array_keys($ratings) , $ratings ) ) / array_sum( $ratings );
link|flag
+1 for the PHP implementation. As for performance though: With an array of 10000 'points' each with between 0 and 255 votes, averaged 100 times: Your function: 4.294s, Accepted solution: 3.45115s – nickf Jan 29 at 4:50
So close! It's actually not quite that close when I benchmark it myself, but still in the running. I notice you edited out my incorrect lambda function syntax, if you have PHP 5.3 you should give it a try with an anonymous function defined inline in the array_map. – Sparr Jan 29 at 21:38

Your Answer

Get an OpenID
or

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