Module
Statistics.Distribution.Normal
- Package
- purescript-stats
- Repository
- klangner/purescript-stats
#NormalDistribution Source
#normalDistr Source
normalDistr :: Number -> Number -> NormalDistributionCreate normal distribution from mean and standard deviation Use this function only when you are sure that sd > 0. Otherwise use safe normalDistrE
#normalDistrE Source
normalDistrE :: Number -> Number -> Maybe NormalDistributionCreate normal distribution in a safe way
#standard Source
standard :: NormalDistributionStandard normal distribution with mean equal to 0 and variance equal to 1
#fromSample Source
fromSample :: Sample Number -> Maybe NormalDistributionCreate distribution using parameters estimated from sample. Variance is estimated using maximum likelihood method (biased estimation).