case class Trinomial(p: Double, q: Double, n: Int, stream: Int) extends Variate
This class generates Trinomial random variates. While Binomial is based on trials with two outcomes, success (1) or failure (0). Trinomial is based on trials with three outcomes, high (2), medium (1) or low (0). This discrete RV models the result of 'n' trials.
Value parameters
n
the number of independent trials
p
the probability of high (2)
q
the probability of medium (1)
stream
the random number stream
Attributes
See also
onlinecourses.science.psu.edu/stat414/node/106 FIX - fails distribution test - maybe due to 'pf' method
Compute the probability function (pf): Either (a) the probability density function (pdf) for continuous RV's or (b) the probability mass function (pmf) for discrete RV's.
Compute the probability function (pf): Either (a) the probability density function (pdf) for continuous RV's or (b) the probability mass function (pmf) for discrete RV's.
Value parameters
z
the mass point whose probability density/mass is sought