statistics-0.16.1.0: A library of statistical types, data, and functions
Copyright(c) 2010 Alexey Khudyakov
LicenseBSD3
Maintainerbos@serpentine.com
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Statistics.Distribution.ChiSquared

Contents

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 Source #

Chi-squared distribution

Instances

Instances details
Eq ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Data ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.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 :: forall r r'. (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 Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Show ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Generic ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Associated Types

type Rep ChiSquared :: Type -> Type #

ToJSON ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

FromJSON ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Binary ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

ContGen ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Methods

genContVar :: StatefulGen g m => ChiSquared -> g -> m Double Source #

Entropy ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

MaybeEntropy ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Variance ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

MaybeVariance ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Mean ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

MaybeMean ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

ContDistr ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

Distribution ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

type Rep ChiSquared Source # 
Instance details

Defined in Statistics.Distribution.ChiSquared

type Rep ChiSquared = D1 ('MetaData "ChiSquared" "Statistics.Distribution.ChiSquared" "statistics-0.16.1.0-Enynx6Q4EvxI2Qo45Shyhp" 'True) (C1 ('MetaCons "ChiSquared" 'PrefixI 'True) (S1 ('MetaSel ('Just "chiSquaredNDF") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Int)))

chiSquaredNDF :: ChiSquared -> Int Source #

Get number of degrees of freedom

Constructors

chiSquared :: Int -> ChiSquared Source #

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

chiSquaredE :: Int -> Maybe ChiSquared Source #

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