Learn R Programming

NSM3 (version 1.1)

e.mc: Function to compute the Monte Carlo P-value for the observed Epstein E statistic

Description

This is the Monte Carlo approximation to the function "epstein".

Usage

e.mc(x, alternative = "two.sided", exact=FALSE,
     min.reps = 100, max.reps = 1000, delta = 10^-3)

Arguments

Value

The function returns a list with two elements:Ethe value of the Epstein statisticpthe corresponding probability

Examples

Run this code
ex11.1<-c(42, 43, 51, 61, 66, 69, 71, 81, 82, 82)
Ep <- e.mc(ex11.1, alt="ifr", exact=TRUE)
Ep$E
Ep$p

#Large Sample Approximation
Ep.lsa <- e.mc(ex11.1, alt="ifr")

table11.2<-c(487, 18, 100, 7, 98, 5, 85, 91, 43, 230, 3, 130)
Ep=e.mc(table11.2,alt="i", exact=TRUE)
#Failing to converge
Ep=e.mc(table11.2,alt="i", exact=TRUE, min.reps=5, max.reps=5)

Run the code above in your browser using DataLab