Learn R Programming

MaxMC (version 0.1.2)

print.mc: Print a Summary of a mc Object

Description

This is a method for the function print() for objects of the class mc.

Usage

# S3 method for mc
print(x, digits = getOption("digits"), ...)

Value

The mc object is returned invisibly.

Arguments

x

an object used to select a method.

digits

minimal number of significant digits, see print.default.

...

further arguments passed to or from other methods.

Examples

Run this code
## Example
# Set seed
set.seed(999)

# Generate sample data
y <- rgamma(8, shape = 2, rate = 1)

# Set data generating process function
dgp <- function(y)  rgamma(length(y), shape = 2, rate = 1)

# Set the statistic function to the Kolomogorov-Smirnov test for gamma distribution
statistic <- function(y){
    out <- ks.test(y, "pgamma", shape = 2, rate = 1)
    return(out$statistic)
}

# Apply the Monte Carlo test with tie-breaker
est <- mc(y, statistic = statistic, dgp = dgp, N = 999, type = "two-tailed")

# Print result of object of class 'mc'
print(est)

Run the code above in your browser using DataLab