View source: R/curve_constructors.R
Weibull | R Documentation |
This creates a Curve object for a Weibull distribution.
Curve objects contain all necessary information to describe a distribution, including functions and parameters describing it.
Parameterisation follows that used by pweibull etc. See Details for more information on parameterisation.
Weibull(alpha, beta = 1)
alpha |
Scale parameter for Weibull distribution. |
beta |
Shape parameter for Weibull distribution. Default is 1; an exponential distribution. |
The Weibull distribution with shape parameter beta and scale parameter alpha has parameterisation:
f(x) = (beta/alpha) (x/alpha)^(beta-1) exp(- (x/alpha)^beta)
F(x) = 1 - exp(- (x/alpha)^beta)
James Bell
Weibull(alpha=100,beta=0.8)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.