Learn R Programming

WLinfer (version 1.2.0)

MME_var: Asymptotic covariance matrix of estimators

Description

These four functions: MME_var, MMEm_var, MLE_var and MLEc_var provide asymptotic covariance matrixs for MME, modified MME, MLE, MLEc, repectively. All of these can be calculated to a closed form value.

Usage

MME_var(l, p, n)

MMEm_var(l, p, n)

MLE_var(l, p, n)

MLEc_var(l, p, n)

Value

A matrix of asymptotic covariance of lambda and phi.

Arguments

l

a numeric value.

p

a numeric value.

n

a numeric value.

Details

These functions implement formulas given in Hyoung-Moon Kim. et al. (2020).

References

Hyoung-Moon Kim. and Yu-Hyeong Jang. (2020). New Closed-Form Estimators for Weighted Lindley Distribution. , submitted.

Examples

Run this code
data <- fail_fiber
n <- length(data)
mme <- MME_WL(data)
modified_mme <- MMEm_WL(data)
mle <- MLE_WL(data, mme[2])
mlec <- MLEc_WL(data)
MME_var(mme[1],mme[2],n)
MMEm_var(modified_mme[1],modified_mme[2],n)
MLE_var(mle[1],mle[2],n)
MLEc_var(mlec[1],mlec[2],n)

Run the code above in your browser using DataLab