print.EEL: Printing EEL objects

Description Usage Arguments Value Author(s) See Also Examples

Description

The function prints the extended empirical log likelihood ratio.

Usage

1
2
## S3 method for class 'EEL'
print(x,...)

Arguments

x

EEL object.

...

Further arguments passed to or from other methods.

Value

The function prints the extended empirical log likelihood ratio value of the EEL object.

Author(s)

Yu Zhang

See Also

EEL

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))

print(obj)

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