FMbounds: Fisher Matrix bounds

Description Usage Arguments Details Value References Examples

Description

Generates the asymptotic bounds by means of the information matrix.

Usage

1
FMbounds(x, dist="weibull", CL=.95, unrel=NULL, debias=NULL, show=FALSE)

Arguments

x

A dataframe such as generated by mleframe with column names 'left', 'right' and optionally 'qty'. Exact failure data (occurrences) have same time entered in both 'left' and 'right' columns. Suspension data has last known life[time] entered in 'left' column and -1 entered in 'right' column. The left(early) interval bound for left-censored data must be entered as zero. (NA is not accepted).

dist

A string defining a distribution to be fit. Implemented distributions are "weibull" (default) and "lognormal". (Only 2-parameter models are accepted.)

CL

A scalar for the double-sided confidence interval of interest. Default = 0.95, for 95

unrel

An optional vector of unreliability values to be used as the descriptive quantiles at which the bounds will be calculated.

debias

A place holder for an optional string argument indicating the adjustment to be applied to the shape or standard deviation parameter of the fitted data. NOT YET IMPLEMEMENTED.

show

A logical determining whether a crude graphic of the bounds shall be displayed.

Details

An "observed" information matrix is derived numerically as the hessian by means of optimHess. From the variance-covariance matrix (inverse of the hessian) variation of life(-time) at given quantiles is determined.

Value

Returns a dataframe holding values of percentiles, lower, datum, and upper values of the bound.

References

Dr. Robert B. Abernethy, (2008) "The New Weibull Handbook, Fifth Edition" John I. McCool, (2012) "Using the Weibull Distribution: Reliability, Modeling and Inference"

Examples

1
2
3
set.seed(4321)
data<-rlnorm(30,2,1.2)
asymptotic_bounds<-FMbounds(mleframe(data[7:30],data[1:6]), dist="lognormal")

abremDebias documentation built on May 2, 2019, 5:17 p.m.