View source: R/reportSensitivityAnalysis.R
sequentialBifurcation | R Documentation |
sequentialBifurcation
is a wrapper function to
sb
from the sensitivity
package.
sequentialBifurcation( fun, lower, upper, k, interaction = FALSE, verbosity = 0, ... )
fun |
function |
lower |
bound of natural variables. Determines the number of parameters (variables). |
upper |
bound of natural variables |
k |
|
interaction |
|
verbosity |
|
... |
optional parameters passed to fun |
The model without interaction is
Y = beta_0 + sum_{i=1}^p beta_i X_i
,
while the model with two-factor interactions is
Y = beta_0 + sum_{i=1}^p beta_i X_i + sum_{1 <= i < j <= p} gamma_{ij} X_i X_j
.
In both cases, the factors are assumed to be uniformly distributed on [-1,1].
This is a difference with Bettonvil et al. where the factors vary across [0,1] in the former case, while [-1,1] in the latter.
Another difference with Bettonvil et al. is that in the current implementation, the groups are splitted right in the middle.
sa list
with sensitivity information (effects) for subgroups.
B. Bettonvil and J. P. C. Kleijnen, 1996, Searching for important factors in simulation models with many factors: sequential bifurcations, European Journal of Operational Research, 96, 180–194.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.