Last chance! 50% off unlimited learning
Sale ends in
shape1
$= a$ and
shape2
$= b$ has density
rbeta
Beta(shape1, shape2)
.
This object is a beta distribution."AbscontDistribution"
, directly.
Class "UnivariateDistribution"
, by class "AbscontDistribution"
.
Class "Distribution"
, by class "AbscontDistribution"
.BetaParameter-class
AbscontDistribution-class
Reals-class
rbeta
B <- Beta(shape1 = 1, shape2 = 1)
# B is a beta distribution with shape1 = 1 and shape2 = 1.
r(B)(1) # one random number generated from this distribution, e.g. 0.6979795
d(B)(1) # Density of this distribution is 1 for x=1.
p(B)(1) # Probability that x < 1 is 1.
q(B)(.1) # Probability that x < 0.1 is 0.1.
shape1(B) # shape1 of this distribution is 1.
shape1(B) <- 2 # shape1 of this distribution is now 2.
Run the code above in your browser using DataLab