Changelog for monoid-statistics-1.1.1
Changes in 1.1.1
Unbox
instance forBinomAcc
is added.
Changes in 1.1.0
-
Type classes
CalcMean
andCalcVar
are generalized to useMonadThrow
to signal failure instead of usingMaybe
only -
Functions for computing standard deviation are placed into type classes. Sometimes we have standard deviation at hand, if distribution is parameterized by it for example.
-
Mean
now type synonym forMeanKBN
. -
WelfordMean
andKahanMean
are moved toD.M.S.Extra
module. -
Support for calculating weighted mean.
-
StatMonoid
instances for up to 4-tuples. -
Max
now works correctly (#2). -
PPair
for use in parallel computation is added.
Changes in 1.0.0.0
-
Type class definition changed: now it has both
addValue :: m → a → m
andsingletonMonoid :: a → m
-
Mean
renamed asWelfordMean
-
Unbox
instances added for all data types. -
BinomAcc
added.