本文整理汇总了PHP中Rating::pnormaldist方法的典型用法代码示例。如果您正苦于以下问题:PHP Rating::pnormaldist方法的具体用法?PHP Rating::pnormaldist怎么用?PHP Rating::pnormaldist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Rating
的用法示例。
在下文中一共展示了Rating::pnormaldist方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ratingAverage
public static function ratingAverage($positive, $total, $power = '0.05')
{
if ($total == 0)
return 0;
$z = Rating::pnormaldist(1-$power/2,0,1);
//print $z;
$p = 1.0 * $positive / $total;
$to_sqrt = ($p*(1-$p)+$z*$z/(4*$total))/$total;
if ($to_sqrt < 0) {
$to_sqrt = 0.;
}
$sqrt = sqrt($to_sqrt);
$s = ($p + $z*$z/(2*$total) - $z * $sqrt)/(1+$z*$z/$total);
//print "z = $z total = $total p = $p to_sqrt = $to_sqrt s = $s";
//print '($p*(1-$p)+$z*$z/(4*$total))/$total): ' . ($p*(1-$p)+$z*$z/(4*$total))/$total . "\n";
return $s;
}