Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Perf.Stats
Description
Statistical choices for multiple performance measurements.
Synopsis
- average :: [Double] -> Double
- median :: [Double] -> Double
- tenth :: [Double] -> Double
- averageI :: Integral a => [a] -> Double
- data StatDType
- statD :: StatDType -> [Double] -> Double
- statDs :: StatDType -> [[Double]] -> [Double]
- parseStatD :: Parser StatDType
- addStat :: (Ord k, Monad m) => k -> s -> StateT (Map k s) m ()
- ordy :: Int -> [Text]
- allStats :: Int -> Map [Text] [[Double]] -> Map [Text] [Double]
- statify :: Ord a => StatDType -> Map a [[Double]] -> Map [a] [Double]
Documentation
Command-line options for type of statistic.
Constructors
StatAverage | |
StatMedian | |
StatBest |