statistics-0.10.0.0: A library of statistical types, data, and functions

Statistics.Test.Types

Synopsis

Documentation

data TestType Source

Test type. Exact meaning depends on a specific test. But generally it's tested whether some statistics is too big (small) for OneTailed or whether it too big or too small for TwoTailed

Constructors

OneTailed 
TwoTailed 

data TestResult Source

Result of hypothesis testing

Constructors

Significant

Null hypothesis should be rejected

NotSignificant

Data is compatible with hypothesis

significant :: Bool -> TestResultSource

Significant if parameter is True, not significant otherwiser