gpt4 book ai didi

php - PHP 中的 Z 分数到百分位数

转载 作者:可可西里 更新时间:2023-11-01 00:48:54 25 4
gpt4 key购买 nike

我需要一个 z-scorepercentile PHP计算器。是否有适合 PHP 的简单公式或已经编写的函数。我应该使用什么?

最佳答案

最简单的方法是 aboulang2002 at yahoo dot com's contribution 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";
?>

关于php - PHP 中的 Z 分数到百分位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11603228/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com