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

I am trying to calculate Z-scores using PHP. Essentially, I am looking for the most efficient way to calculate the mean and standard deviation of a data set (PHP array). Any suggestions on how to do this in PHP?

I am trying to do this in the smallest number of steps.

share|improve this question

4 Answers

up vote 10 down vote accepted

to calculate the mean you can do:

$mean = array_sum($array)/count($array)

standard deviation is like so:

// Function to calculate square of value - mean
function sd_square($x, $mean) { return pow($x - $mean,2); }

// Function to calculate standard deviation (uses sd_square)    
function sd($array) {
    // square root of sum of squares devided by N-1
    return sqrt(array_sum(array_map("sd_square", $array, array_fill(0,count($array), (array_sum($array) / count($array)) ) ) ) / (count($array)-1) );
}

right off this page

share|improve this answer

How about using the built in statistics package like stats_standard_deviation and stats_harmonic_mean. I can't find a function for standard means, but if you know anything about statistics, I'm sure you can figure something out using the built-in functions.

share|improve this answer
My God....That was an unnecessary down vote 7 months after the fact. – rockerest Oct 23 '11 at 16:53
1  
Have an upvote then :-) Given that this was the best answer ("smallest number of steps" and (probably) "most efficient way"). (Maybe someone was unhappy about saying built-in; you have to do "sudo pecl install stats" and then edit php.ini) – Darren Cook Nov 4 '11 at 8:35
@DarrenCook Ha, thanks! – rockerest Nov 5 '11 at 2:20

Well, then there is the little issue that the php "built" in stats_standard_deviation returns a different value from the sd() function Neal presents above. I checked using Excel STDDEV and it matches Neal, but interestingly, the stats_standard_deviation seems to be returning a 95% confidence level... not exactly what Excel CONFIDENCE function returns, but pretty close.

share|improve this answer
   function standard_deviation($aValues)
{
    $fMean = array_sum($aValues) / count($aValues);
    //print_r($fMean);
    $fVariance = 0.0;
    foreach ($aValues as $i)
    {
        $fVariance += pow($i - $fMean, 2);

    }       
    $size = count($aValues) - 1;
    return (float) sqrt($fVariance)/sqrt($size);
}
share|improve this answer

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.