BBB | R Documentation |
Generates confidence inference bounds by means of the beta binomial distribution applied to data ranks.
BBB(xdata, xfit,n=NULL, CI=.90, unrel=NULL, type="horizontal", nknots=NULL)
xdata |
A list containing either dpoints and/or dlines such as available from a wblr object. |
xfit |
A list containing dist and fit elements. A suitable object can be extracted from a wblr object containing the resuult of at least one modifying wblr.fit call.
Function |
n |
The total number of data entries fail, suspension, discovery and interval. This value is only required to be provided if not available from either xdata (as sum(xdata$lrq_frame$qty) or xfit (as attr(xfit$fit)$n), however, an entry for this argument will take precidence over the other argument sources. |
CI |
A scalar for the double-sided confidence interval of interest. Default = 0.9, for 90 |
unrel |
An optional vector of unreliability values to be used as the descriptive percentiles at which the bound quantiles will be calculated. |
type |
A string indicating the adjustment direction(s) for application of the beta binomial. Since both "horizontal" and "vertical" directions on the rank positions of failure data are considered valid, a smoothed spline can be created by appling both directions using "valid". An extrapolation of the smoothed spline is provided by using "extrapolated". |
nknots |
An optional number of knots to be used to form the smooth spline in the event that disjoints are formed at the junction of horizontal and vertical bounds. Usually, applying 75 to 80 result in a pleasing smoothness. |
This non-parametric approach calculates confidence bounds for quantiles and/or failure probabilities applying the CFD of the beta distribution at ranks and reverse ranks of the failure data including intervals. Although a result is provided for 3-parameter models, it does not reflect uncertainty in the third, translation parameter.
Returns a dataframe holding values of Prob, Lower, Fit, and Upper values for the bounds.
William Q. Meeker and Luis A. Escobar, (1998) "Statistical Methods for Reliability Data", Wiley-Interscience, New York
Robert B. Abernethy, (2008) "The New Weibull Handbook, Fifth Edition"
John I. McCool, (2012) "Using the Weibull Distribution: Reliability, Modeling and Inference"
Tim-Gunnar Hensel, (2017) "weibulltools", A package on CRAN.
set.seed(4321) obj<-wblr.fit(wblr(rweibull(10,1,1))) beta_binomial_bounds<-BBB(obj$data,xfit(obj))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.