rank-product-0.2.0.1: src/Statistics/Types.hs
{- Types
Gregory W. Schwartz
Collects the types used in the program
-}
module Statistics.Types where
-- Standard
-- Cabal
-- Local
-- Basic
newtype Permutations = Permutations Int
newtype Entity = Entity { unEntity :: [Double] } deriving (Show)
newtype RankEntity = RankEntity { unRankEntity :: [Double] } deriving (Show)
newtype RankProductEntity = RankProductEntity
{ unRankProductEntity :: Double
} deriving (Show)
newtype PValue = PValue { unPValue :: Double } deriving (Show)
-- Advanced
data Sort = Ascending | Descending deriving (Eq, Ord, Read, Show)