Density function, distribution function, and quantile function for the Weibull distribution with a threshold parameter.
pweibull3(q, shape, scale, threshold)
dweibull3
returns the density, pweibull3
returns the distribution function, and qweibull3
returns the quantile function for the Weibull distribution with a threshold.
A numeric vector of quantiles.
The shape parameter of the Weibull distribution. Default is 1.
The scale parameter of the Weibull distribution. Default is 1.
The threshold (or location) parameter of the Weibull distribution. Default is 0.
The Weibull distribution with the scale
parameter alpha, shape
parameter c, and threshold
parameter zeta has a density function given by:
The cumulative distribution function is given by:
dweibull3(x = 1, scale = 1, shape = 5, threshold = 0)
temp <- pweibull3(q = 1, scale = 1, shape = 5, threshold = 0)
temp
qweibull3(p = temp, scale = 1, shape = 5, threshold = 0)
Run the code above in your browser using DataLab