Beta | R Documentation |
Create a Beta distribution
Beta(alpha = 1, beta = 1)
alpha |
The alpha parameter. |
beta |
The beta parameter. |
A beta
object.
Other continuous distributions:
Cauchy()
,
ChiSquare()
,
Erlang()
,
Exponential()
,
FisherF()
,
Frechet()
,
GEV()
,
GP()
,
Gamma()
,
Gumbel()
,
LogNormal()
,
Logistic()
,
Normal()
,
RevWeibull()
,
StudentsT()
,
Tukey()
,
Uniform()
,
Weibull()
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)
mean(X)
variance(X)
skewness(X)
kurtosis(X)
cdf(X, quantile(X, 0.7))
quantile(X, cdf(X, 0.7))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.