Safe Haskell | None |
---|---|
Language | Haskell98 |
Synopsis
- data Test distr = Test {
- testSignificance :: !(PValue Double)
- testStatistics :: !Double
- testDistribution :: distr
- isSignificant :: PValue Double -> Test d -> TestResult
- data TestResult
- significant :: Bool -> TestResult
- data PositionTest
Documentation
Result of statistical test.
Test | |
|
Instances
Functor Test Source # | |
Eq distr => Eq (Test distr) Source # | |
Data distr => Data (Test distr) Source # | |
Defined in Statistics.Test.Types gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Test distr -> c (Test distr) # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Test distr) # toConstr :: Test distr -> Constr # dataTypeOf :: Test distr -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c (Test distr)) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (Test distr)) # gmapT :: (forall b. Data b => b -> b) -> Test distr -> Test distr # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Test distr -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Test distr -> r # gmapQ :: (forall d. Data d => d -> u) -> Test distr -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Test distr -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Test distr -> m (Test distr) # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Test distr -> m (Test distr) # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Test distr -> m (Test distr) # | |
Ord distr => Ord (Test distr) Source # | |
Show distr => Show (Test distr) Source # | |
Generic (Test distr) Source # | |
NFData d => NFData (Test d) Source # | |
Defined in Statistics.Test.Types | |
ToJSON d => ToJSON (Test d) Source # | |
Defined in Statistics.Test.Types | |
FromJSON d => FromJSON (Test d) Source # | |
Binary d => Binary (Test d) Source # | |
type Rep (Test distr) Source # | |
Defined in Statistics.Test.Types type Rep (Test distr) = D1 (MetaData "Test" "Statistics.Test.Types" "statistics-0.15.0.0-AkglZgHZAgx3cdskkvnxTn" False) (C1 (MetaCons "Test" PrefixI True) (S1 (MetaSel (Just "testSignificance") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (PValue Double)) :*: (S1 (MetaSel (Just "testStatistics") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Double) :*: S1 (MetaSel (Just "testDistribution") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 distr)))) |
isSignificant :: PValue Double -> Test d -> TestResult Source #
Check whether test is significant for given p-value.
data TestResult Source #
Result of hypothesis testing
Significant | Null hypothesis should be rejected |
NotSignificant | Data is compatible with hypothesis |
Instances
significant :: Bool -> TestResult Source #
significant if parameter is True
, not significant otherwise
data PositionTest Source #
Test type for test which compare positional (mean,median etc.) information of samples.
SamplesDiffer | Test whether samples differ in position. Null hypothesis is samples are not different |
AGreater | Test if first sample (A) is larger than second (B). Null hypothesis is first sample is not larger than second. |
BGreater | Test if second sample is larger than first. |