print: Print method for objects 'sobolnp'

Description Usage Arguments Value Examples

Description

Print method for objects sobolnp

Usage

1
2
3
4
print(snp, ...)

## S3 method for class 'sobolnp'
print(snp, ...)

Arguments

snp

an object of class sobolnp

...

further arguments passed to the print function

Value

A formatted table with the results of the sobolnp function.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
ishigami.fun <- function(X) {
A <- 7
B <- 0.1
sin(X[, 1]) + A * sin(X[, 2])^2 + B * X[, 3]^4 * sin(X[, 1])
}

X <- matrix(runif(3*100, -pi, pi), ncol = 3)
Y <- ishigami.fun(X)

estimation <- sobolnp(Y = Y, X = X, nboot = 5)

print(estimation)

sobolnp documentation built on May 2, 2019, 6:37 a.m.

Related to print in sobolnp...