mlewb | R Documentation |
This function for estimating parameter of the three-parameter Weibull distribution.
mlewb(x, shape, scale, location)
x |
vector of quantiles. |
shape |
shape parameter, where |
scale |
scale parameter, where |
location |
location parameter, where |
the estimated shape, scale and location values of the three-parameter Weibull distribution.
the result of this function may produce a Warning message, but not effect to the estimated parameter.
Johnson, N. L., Kotz, S. and Balakrishnan, N. (1995) Continuous Univariate Distributions, volume 1, chapter 21. Wiley, New York.
x<- rtpwb(1000,2,3,1) #n=1000 large sample
mlewb(x,2,3,1)
x<- rtpwb(50,2,3,1) #n=50 medium sample
mlewb(x,2,3,1)
x<- rtpwb(10,2,3,1) #n=10 small sample
mlewb(x,2,3,1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.