w-statistic
Version:
A tool for statistical analysis.
24 lines (16 loc) • 470 B
JavaScript
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