Learn R Programming

eel (version 1.1)

summary.EEL: Summarizing EEL objects

Description

The function prints a summary of EEL objects.

Usage

"summary"(object,...)

Arguments

object
An EEL object.
...
Additional arguments affecting the summary produced.

Value

The function prints a summary of EEL objects including
theta
the point at which the EEL is to be evaluated;
estimating equation
the estimating equation at which the paremeters are defined;
log oel ratio
empirical log likelihood ratio for the point theta;
prime image
prime-image of theta defined by the similarity mapping in EEL calculation;
expansion factor
value of the expansion factor $$\gamma(x,\theta)$$;
log eel ratio
value of the extended empirical log likelihood ratio.

See Also

EEL,print.EEL, EEL_est

Examples

Run this code
# EXAMPLE: computing the EEL for the mean of a bivariate random variable
# Generating a sample of n=40 bivariate observations. 
# For this example, we do this through a univariate normal random number generator.

uninorm<- rnorm(40*2,5,1)                          
multnorm<-matrix(uninorm,ncol=2)

# To calculate the EEL for a point theta=c(5,3), use
obj=EEL(x=multnorm,theta=c(5,3))

summary(obj)

Run the code above in your browser using DataLab