View source: R/Estimate.Weibull.R
weibull.threshold | R Documentation |
Calculates the estimate of the threshold parameter.
weibull.threshold(x, a, interval.threshold, extendInt="downX")
x |
a numeric vector of observations. |
a |
the offset fraction to be used; typically in (0,1). |
interval.threshold |
a vector containing the end-points of the interval to be estimated for the threshold parameter. |
extendInt |
character string specifying if the interval c(left,right) should be extended or directly produce an error when f() has no differing signs at the endpoints. The default, "downX", keep lowering the the left end of the interval so that f() has different signs. See |
The three-parameter Weibull distribution has the cumulative distribution function
F(x) = 1 -\exp\Big[-\Big( \frac{x-\theta}{\beta}\Big)^{\alpha}\Big],
where x>\theta
.
The threshold parameter (\theta
) is estimated
by maximizing the correlation function from the Weibull plot.
The choice of a
follows ppoints
function.
If interval.threshold
is missing, the interval is initially given
by (min(x)-sd(x), min(x))
. If this interval does not include
the estimate, its lower bound is extended (see also uniroot
).
weibull.threshold
returns a numeric value.
Chanseok Park
Park, C. (2018).
A Note on the Existence of the Location Parameter Estimate of the Three-Parameter Weibull Model Using the Weibull Plot.
Mathematical Problems in Engineering, 2018, 6056975.
\Sexpr[results=rd]{tools:::Rd_expr_doi("10.1155/2018/6056975")}
Park, C. (2017).
Weibullness test and parameter estimation of the three-parameter
Weibull model using the sample correlation coefficient.
International Journal of Industrial Engineering - Theory,
Applications and Practice,
24(4), 376-391.
\Sexpr[results=rd]{tools:::Rd_expr_doi("10.23055/ijietap.2017.24.4.2848")}
weibull.mle
for the maximum likelihood estimate.
weibull.wp
for the parameter estimation using the Weibull plot.
# Data
data = c(355,725,884,462,1092,190,166,172,188,224,267,298,355,471,
154,101,76,811,80,249,752,305,301,386,667,212,186,127,
121,214,242,237,355,210,253,400,401,514,211,285)
weibull.threshold(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.