sens.bayes.control {ICAOD} | R Documentation |
Returns Control Parameters for Approximating The Integrals In The Bayesian Sensitivity Functions
Description
This function returns two lists each corresponds to an implemented integration method for approximating the integrals in the sensitivity (derivative) functions for the Bayesian optimality criteria.
Usage
sens.bayes.control(
method = c("cubature", "quadrature"),
cubature = list(tol = 1e-05, maxEval = 50000, absError = 0),
quadrature = list(type = c("GLe", "GHe"), level = 6, ndConstruction = "product",
level.trans = FALSE)
)
Arguments
method |
A character denotes which method to be used to approximate the integrals in Bayesian criteria.
|
cubature |
A list that will be passed to the arguments of the |
quadrature |
A list that will be passed to the arguments of the |
Value
A list of control parameters for approximating the integrals.
Examples
sens.bayes.control()
sens.bayes.control(cubature = list(maxEval = 50000))
sens.bayes.control(quadrature = list(level = 4))