summary.EEL: Summarizing EEL objects

Description Usage Arguments Value Author(s) See Also Examples

Description

The function prints a summary of EEL objects.

Usage

1
2
## S3 method for class 'EEL'
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.

Author(s)

Yu Zhang

See Also

EEL,print.EEL, EEL_est

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# 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)

eel documentation built on May 2, 2019, 5:11 a.m.