1.2.3 • Published 6 years ago

fisher-tukey v1.2.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

fisher-tukey

You can get the values of Fisher and Tukey tables. Work in the same way as qt and qtukey in R.

Package description

CSVs were created which contain the values of the tables with an alpha of 0.05

Fisher Distribution

F-distribution is a continuous probability distribution that arises frequently as the null distribution of a test statistic, most notably in the analysis of variance (ANOVA)

Tukey's range table

Tukey range test can be used in an ANOVA to find means that are significantly different from each other.

Install

npm install fisher-tukey

Usage

// We require or npm package
const fisher_tukey = require('fisher-tukey')

// We call the funtions
const qfisher = fisher_tukey.qfisher;
const qtukey = fisher_tukey.qtukey;

// These functions needs only twe parameters
let result1 = qfisher(2,2); // df1 = 2 df2 = 2 in this case result1 = 19
let result2 = qtukey(3,5); // df = 3  k = 5 the function must return 7.50165937594084
1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

0.1.0

6 years ago