| weibull_dist | R Documentation |
Creates an S3 object representing a Weibull distribution with the given shape and scale parameters. The Weibull PDF is
f(t) = (shape/scale)(t/scale)^{shape-1} \exp(-(t/scale)^{shape})
for t > 0.
weibull_dist(shape, scale)
shape |
Positive scalar shape parameter. |
scale |
Positive scalar scale parameter. |
A weibull_dist object with classes
c("weibull_dist", "univariate_dist", "continuous_dist", "dist").
x <- weibull_dist(shape = 2, scale = 3)
mean(x)
vcov(x)
format(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.