| Copyright | (c) 2011 Aleksey Khudyakov |
|---|---|
| License | BSD3 |
| Maintainer | bos@serpentine.com |
| Stability | experimental |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Statistics.Distribution.StudentT
Contents
Description
Student-T distribution
Documentation
Student-T distribution
Instances
Instances details
Instance details
Defined in Statistics.Distribution.StudentT
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 #
gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StudentT #
toConstr :: StudentT -> Constr #
dataTypeOf :: StudentT -> DataType #
dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c StudentT) #
dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StudentT) #
gmapT :: (forall b. Data b => b -> b) -> StudentT -> StudentT #
gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StudentT -> r #
gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StudentT -> r #
gmapQ :: (forall d. Data d => d -> u) -> StudentT -> [u] #
gmapQi :: Int -> (forall d. Data d => d -> u) -> StudentT -> u #
gmapM :: Monad m => (forall d. Data d => d -> m d) -> StudentT -> m StudentT #
gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StudentT -> m StudentT #
gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StudentT -> m StudentT #
Instance details
Defined in Statistics.Distribution.StudentT
Associated Types
Instance details
Defined in Statistics.Distribution.StudentT
Instance details
Defined in Statistics.Distribution.StudentT
Methods
genContVar :: StatefulGen g m => StudentT -> g -> m Double Source #
Instance details
Defined in Statistics.Distribution.StudentT
Instance details
Defined in Statistics.Distribution.StudentT
Instance details
Defined in Statistics.Distribution.StudentT
Instance details
Defined in Statistics.Distribution.StudentT
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
Number of degrees of freedom
Central value (0 for standard Student T distribution)
Scale parameter
Create an unstandardized Student-t distribution.
Accessors
studentTndf :: StudentT -> Double Source #