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

I need a z-score to percentile calculator in PHP. Is there a simple formula suitable to PHP or an already written function. What should I use?

share|improve this question
What's Z-Code and what's Percentile? You'll probably want to ask this question on Mathematics – Madara Uchiha Jul 22 '12 at 19:14
2  
Maybe this is what you want?: z-Scores(standard deviation and mean) in PHP – Joshua Lückers Jul 22 '12 at 19:26
@Truth This is inappropriate for M.SE - it's a PHP question, not a mathematics question. – Chris Taylor Jul 23 '12 at 9:26
2  
@JoshuaLückers That question isn't helpful for this one. That's about how to calculate a z-score from a sample, whereas this is about how to compute percentiles from z-scores (i.e. how to implement the Normal CDF). – Chris Taylor Jul 23 '12 at 9:29
1  
@ChrisTaylor Sorry about that, I misunderstood your question. – Joshua Lückers Jul 25 '12 at 9:39

1 Answer

up vote 3 down vote accepted

Simplest way is aboulang2002 at yahoo dot com's contribute on PHP manual:

<?
function erf($x)
{
    $pi = 3.1415927;
    $a = (8*($pi - 3))/(3*$pi*(4 - $pi));
    $x2 = $x * $x;

    $ax2 = $a * $x2;
    $num = (4/$pi) + $ax2;
    $denom = 1 + $ax2;

    $inner = (-$x2)*$num/$denom;
    $erf2 = 1 - exp($inner);

    return sqrt($erf2);
}

function cdf($n)
{
    if($n < 0)
    {
            return (1 - erf($n / sqrt(2)))/2;
    }
    else
    {
            return (1 + erf($n / sqrt(2)))/2;
    }
}

$zscore = MYZSCORE;
print 'Percentile: ' . cdf($zscore) * 100 . "\n";
?> 
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.