Skip to content

dstoeckel/HypothesisTests.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HypothesisTests.jl

Build Status Coverage Status HypothesisTests HypothesisTests

This package implements several hypothesis tests in Julia.

Quick start

Some examples:

using HypothesisTests

pvalue(OneSampleTTest(x))
pvalue(OneSampleTTest(x), tail=:left)
pvalue(OneSampleTTest(x), tail=:right)
ci(OneSampleTTest(x))
ci(OneSampleTTest(x, tail=:left))
ci(OneSampleTTest(x, tail=:right))
OneSampleTTest(x).t
OneSampleTTest(x).df

pvalue(OneSampleTTest(x, y))
pvalue(EqualVarianceTTest(x, y))
pvalue(UnequalVarianceTTest(x, y))

pvalue(MannWhitneyUTest(x, y))
pvalue(SignedRankTest(x, y))
pvalue(SignedRankTest(x))

Documentation

Full documentation available at Read the Docs.

About

Hypothesis tests for Julia

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Julia 100.0%