fisher-test-wasm
v0.1.4
Published
This package is based on the [fishers_exact](https://docs.rs/fishers_exact/latest/fishers_exact/) Rust crate. It was compiled to WebAssembly using [wasm-pack](https://rustwasm.github.io/wasm-pack/) as a part of the [Genome browser](https://exbio.wzw.tum.d
Downloads
4
Readme
Fisher's exact test in javascript using WebAssembly
This package is based on the fishers_exact Rust crate. It was compiled to WebAssembly using wasm-pack as a part of the Genome browser project.
Usage
import {fisher} from 'fisher-test';
const p: {
two_tail_pvalue: number,
less_pvalue: number,
greater_pvalue: number,
} = fisher(1, 2, 3, 4);