statistics-0.16.1.2: A library of statistical types, data, and functions
Copyright (c) 2011 Aleksey Khudyakov
License BSD3
Maintainer bos@serpentine.com
Stability experimental
Portability portable
Safe Haskell None
Language Haskell2010

Statistics.Distribution.StudentT

Description

Student-T distribution

Synopsis

Documentation

data StudentT Source #

Student-T distribution

Instances

Instances details
Eq StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

Data StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

Methods

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

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

toConstr :: StudentT -> Constr Source #

dataTypeOf :: StudentT -> DataType Source #

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

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

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

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

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

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

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

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

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

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

Read StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

Show StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

Generic StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

ToJSON StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

FromJSON StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

Binary StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

ContGen StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

Entropy StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

MaybeEntropy StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

MaybeVariance StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

MaybeMean StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

ContDistr StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

Distribution StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

type Rep StudentT Source #
Instance details

Defined in Statistics.Distribution.StudentT

type Rep StudentT = D1 (' MetaData "StudentT" "Statistics.Distribution.StudentT" "statistics-0.16.1.2-IkOne9g3oJ1vhHVSRLPUO" ' True ) ( C1 (' MetaCons "StudentT" ' PrefixI ' True ) ( S1 (' MetaSel (' Just "studentTndf") ' NoSourceUnpackedness ' NoSourceStrictness ' DecidedLazy ) ( Rec0 Double )))

Constructors

studentT :: Double -> StudentT Source #

Create Student-T distribution. Number of parameters must be positive.

studentTE :: Double -> Maybe StudentT Source #

Create Student-T distribution. Number of parameters must be positive.

studentTUnstandardized Source #

Arguments

:: Double

Number of degrees of freedom

-> Double

Central value (0 for standard Student T distribution)

-> Double

Scale parameter

-> LinearTransform StudentT

Create an unstandardized Student-t distribution.

Accessors