UNPKG

w-statistic

Version:
24 lines (16 loc) 470 B
import studentTInv from './src/studentTInv.mjs' async function test() { console.log(await studentTInv(35, 0.95)) // => 1.6909241978049958 console.log(await studentTInv(35, 0.5)) // => -0 console.log(await studentTInv(35, 0.05)) // => -1.6909241978049974 console.log(await studentTInv(15, 0.95)) // => 1.7613101151015698 } test() .catch((err) => { console.log(err) }) //node g.studentTInv.mjs