حاسبة نقاط p-value chi-square
تعثر هذه الآلة الحاسبة على القيمة p المرتبطة بدرجة مربع كاي المعينة ودرجات الحرية المحددة.
القيمة P: 0.359472
function calc() {
//get input values var x2 = +document.getElementById('x2').value; var df = +document.getElementById('df').value;
//calculate SE var p = 1-jStat.chisquare.cdf(x2, df);
//output probabilities document.getElementById('p').innerHTML = p.toFixed(6); }