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

Copyright(c) 2010 Alexey Khudyakov
LicenseBSD3
Maintainerbos@serpentine.com
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Statistics.Distribution.ChiSquared

Description

The chi-squared distribution. This is a continuous probability distribution of sum of squares of k independent standard normal distributions. It's commonly used in statistical tests

Synopsis

Documentation

data ChiSquared #

Chi-squared distribution

Instances

Eq ChiSquared # 
Data ChiSquared # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ChiSquared -> c ChiSquared #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ChiSquared #

toConstr :: ChiSquared -> Constr #

dataTypeOf :: ChiSquared -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ChiSquared) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ChiSquared) #

gmapT :: (forall b. Data b => b -> b) -> ChiSquared -> ChiSquared #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ChiSquared -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ChiSquared -> r #

gmapQ :: (forall d. Data d => d -> u) -> ChiSquared -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ChiSquared -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ChiSquared -> m ChiSquared #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ChiSquared -> m ChiSquared #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ChiSquared -> m ChiSquared #

Read ChiSquared # 
Show ChiSquared # 
Generic ChiSquared # 

Associated Types

type Rep ChiSquared :: * -> * #

ToJSON ChiSquared # 
FromJSON ChiSquared # 
Binary ChiSquared # 
ContGen ChiSquared # 

Methods

genContVar :: PrimMonad m => ChiSquared -> Gen (PrimState m) -> m Double #

Entropy ChiSquared # 

Methods

entropy :: ChiSquared -> Double #

MaybeEntropy ChiSquared # 
Variance ChiSquared # 
MaybeVariance ChiSquared # 
Mean ChiSquared # 

Methods

mean :: ChiSquared -> Double #

MaybeMean ChiSquared # 
ContDistr ChiSquared # 
Distribution ChiSquared # 
type Rep ChiSquared # 
type Rep ChiSquared = D1 (MetaData "ChiSquared" "Statistics.Distribution.ChiSquared" "statistics-0.13.3.0-BiEAUT1kslI4cQhfIgfmy" True) (C1 (MetaCons "ChiSquared" PrefixI False) (S1 (MetaSel (Nothing Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Int)))

chiSquared :: Int -> ChiSquared #

Construct chi-squared distribution. Number of degrees of freedom must be positive.

chiSquaredNDF :: ChiSquared -> Int #

Get number of degrees of freedom