作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
java中有没有像this in php这样的实现?
<?php
/**
* Returns conditional probability of $A given $B and $Data.
* $Data is an indexed array. Each element of the $Data array
* consists of an A measurement and B measurment on a sample
* item.
*/
function getConditionalProbabilty($A, $B, $Data) {
$NumAB = 0;
$NumB = 0;
$NumData = count($Data);
for ($i=0; $i < $NumData; $i++) {
if (in_array($B, $Data[$i])) {
$NumB++;
if (in_array($A, $Data[$i])) {
$NumAB++;
}
}
}
return $NumAB / $NumB;
}
?>
<?php
require "getConditionalProbability.php";
/**
* The elements of the $Data array use this coding convention:
*
* +cancer - patient has cancer
* -cancer - patient does not have cancer
* +test - patient tested positive on cancer test
* -test - patient tested negative on cancer test
*/
$Data[0] = array("+cancer", "+test");
$Data[1] = array("-cancer", "-test");
$Data[2] = array("+cancer", "+test");
$Data[3] = array("-cancer", "+test");
// specify query variable $A and conditioning variable $B
$A = "+cancer";
$B = "+test";
// compute the conditional probability of having cancer given 1)
// a positive test and 2) a sample of covariation data
$probability = getConditionalProbabilty($A, $B, $Data);
echo "P($A|$B) = $probability";
// P(+cancer|+test) = 0.66666666666667
?>
最佳答案
据我所知标准 JDK 中没有,尽管它是一个非常简单的函数,您可以自己编写它,Java 版本几乎可以直接翻译。尽管有 3rd 方库,例如 this如果您计划做很多此类事情,那么来自 apache 的一个处理统计和数学函数的函数。
关于java - 使用Java实现贝叶斯推理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5427391/
我是一名优秀的程序员,十分优秀!