oalg-base-1.1.4.0: Algebraic structures on oriented entities and limits as a tool kit to solve algebraic problems.
Copyright(c) Erich Gut
LicenseBSD3
Maintainerzerich.gut@gmail.com
Safe HaskellSafe-Inferred
LanguageHaskell2010

OAlg.Data.Statistics

Contents

Description

a tool kit for making statistics.

Synopsis

Statistic

mkStatisticW :: Ord x => [x -> String] -> [(Int, x)] -> (Int, [(Double, [String], x)]) Source #

makes the statistics of the given list of wight, value pairs.

mkStatistic :: Ord x => [x -> String] -> [x] -> (Int, [(Double, [String], x)]) Source #

makes the statistics of the given list of values.

putStatisticW :: (Show x, Ord x) => [x -> String] -> [(Int, x)] -> IO () Source #

puts the statistics of the given list of wight, values pairs.

putStatistic :: (Show x, Ord x) => [x -> String] -> [x] -> IO () Source #

puts the statistics of the given list of values.