powered by
Create a Beta distribution
Beta(alpha = 1, beta = 1)
The alpha parameter. alpha can be any value strictly greater than zero. Defaults to 1.
alpha
1
The beta parameter. beta can be any value strictly greater than zero. Defaults to 1.
beta
A beta object.
Other continuous distributions: Cauchy, ChiSquare, Exponential, FisherF, Gamma, LogNormal, Logistic, Normal, StudentsT, Tukey, Uniform, Weibull
Cauchy
ChiSquare
Exponential
FisherF
Gamma
LogNormal
Logistic
Normal
StudentsT
Tukey
Uniform
Weibull
# NOT RUN { set.seed(27) X <- Beta(1, 2) X random(X, 10) pdf(X, 0.7) log_pdf(X, 0.7) cdf(X, 0.7) quantile(X, 0.7) cdf(X, quantile(X, 0.7)) quantile(X, cdf(X, 0.7)) # }
Run the code above in your browser using DataLab