Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
onforminput_ :: Text -> Attributelucid Lucid.Html5 The onforminput attribute.
before :: Extract source => Int -> source -> sourceregex-base Text.Regex.Base.RegexLike before is a renamed take.
mrBefore :: MatchResult a -> aregex-base Text.Regex.Base.RegexLike No documentation available.
module Statistics.Distribution.
DiscreteUniform The discrete uniform distribution. There are two parametrizations of this distribution. First is the probability distribution on an inclusive interval {1, ..., n}. This is parametrized with n only, where p_1, ..., p_n = 1/n. (discreteUniform). The second parametrization is the uniform distribution on {a, ..., b} with probabilities p_a, ..., p_b = 1/(a-b+1). This is parametrized with a and b. (discreteUniformAB)
-
statistics Statistics.Distribution.DiscreteUniform The discrete uniform distribution.
discreteUniform :: Int -> DiscreteUniformstatistics Statistics.Distribution.DiscreteUniform Construct discrete uniform distribution on support {1, ..., n}. Range n must be >0.
discreteUniformAB :: Int -> Int -> DiscreteUniformstatistics Statistics.Distribution.DiscreteUniform Construct discrete uniform distribution on support {a, ..., b}.
module Statistics.Distribution.
Transform Transformations over distributions
-
statistics Statistics.Distribution.Transform Linear transformation applied to distribution.
LinearTransform μ σ _ x' = μ + σ·x
LinearTransform :: Double -> Double -> d -> LinearTransform dstatistics Statistics.Distribution.Transform No documentation available.