เครื่องคำนวณค่าวิกฤตของ chi square
เครื่องคิดเลขนี้จะค้นหา ค่าไคสแควร์วิกฤต สำหรับระดับความเป็นอิสระและระดับนัยสำคัญที่กำหนด
X 2 ค่าวิกฤต = 22.36203
function calc() {
//get input values var p = +document.getElementById('p').value; var df = +document.getElementById('df').value;
//calculate critical value var x2 = jStat.chisquare.inv(1-p, df);
//output probabilities document.getElementById('x2').innerHTML = x2.toFixed(5); }