bs.mle {bsgof}R Documentation

Maximum likelihood estimates of Birnbaum-Saunders distribution

Description

Calculates the maximum likelihood estimates of Birnbaum-Saunders distribution.

Usage

bs.mle(x)

Arguments

x

a numeric vector of observations.

Details

The Birnbaum-Saunders distribution has the probability density function

f(x) = \frac{1}{\sqrt{2\pi}} \exp\left[-\frac{1}{2\alpha^{2}} \left(\frac{x}{\beta}+\frac{\beta}{x}-2\right) \right] \frac{x^{-\frac{3}{2}} (x+\beta)}{2\alpha\sqrt{\beta}}

where x>0, \alpha>0, and \beta>0. The parameters are estimated using the maximum likelihood method.

Value

An object of class "bs.estimate", a list with parameter estimates.

Author(s)

Chanseok Park

References

Birnbaum, Z. W. and Saunders, S. C. (1969). Estimation for a Family of Life Distributions with Applications to Fatigue. J. Appl. Probab. 6(2): 328-347.

See Also

bs.mme for the parameter estimation using the methof of moments.

Examples

# Aluminum-Coupons data set from Birnbaum and Saunders (1969).
data = c(0.37, 0.706, 0.716, 0.746, 0.785, 0.797, 0.844, 0.855, 0.858,
0.886, 0.886, 0.93, 0.96, 0.988, 0.99, 1, 1.01, 1.016, 1.018, 
1.02, 1.055, 1.085, 1.102, 1.102, 1.108, 1.115, 1.12, 1.134, 
1.14, 1.199, 1.2, 1.2, 1.203, 1.222, 1.235, 1.238, 1.252, 1.258,
1.262, 1.269, 1.27, 1.29, 1.293, 1.3, 1.31, 1.313, 1.315, 1.33,
1.355, 1.39, 1.416, 1.419, 1.42, 1.42, 1.45, 1.452, 1.475, 1.478,
1.481, 1.485, 1.502, 1.505, 1.513, 1.522, 1.522, 1.53, 1.54,
1.56, 1.567, 1.578, 1.594, 1.602, 1.604, 1.608, 1.63, 1.642,
1.674, 1.73, 1.75, 1.75, 1.763, 1.768, 1.781, 1.782, 1.792, 1.82,
1.868, 1.881, 1.89, 1.893, 1.895, 1.91, 1.923, 1.94, 1.945, 2.023,
2.1, 2.13, 2.215, 2.268, 2.44)

bs.mle(data)

[Package bsgof version 0.23.8 Index]