cdfplot {tpwb}R Documentation

Distribution function plot of the three-parameter Weibull distribution

Description

Distribution function plot of the three-parameter Weibull distribution with specified shape, scale and location.

Usage

cdfplot(x, shape, scale, location)

Arguments

x

vector of quantiles

shape

shape parameter (\beta) of the three-parameter Weibull distribution, where \beta >0.

scale

scale parameter (\alpha) of the three-parameter Weibull distribution, where \alpha > 0.

location

location parameter (\delta) of the three-parameter Weibull distribution, where \delta \ge 0.

Value

Distribution function plot of the three-parameter Weibull distribution.

References

Johnson, N. L., Kotz, S. and Balakrishnan, N. (1995) Continuous Univariate Distributions, volume 1, chapter 21. Wiley, New York.

Examples

x <- rtpwb(100,1.5,2,1)
cdfplot(x,1.5,2,1)


[Package tpwb version 0.1.0 Index]