Description Usage Arguments Value Author(s) References Examples
View source: R/estimateGraph.R
Estimates the structure of the FANOVA graph by estimating the total interaction indices for the graph edges (a particular case of superset importance introduced by Liu and Owen, 2006), the main effect indices for the graph vertices and the overall variance for normalizing the indices and finding the clique structure of the estimated graph.
1 2 3 |
f.mat |
vectorized function for which the FANOVA graph shall be estimated |
d |
integer, number of input factors (vertices) |
q |
a vector of character strings of quantile functions corresponding to the factors distributions, it can be a single character string meaning same distribution for all, if not specified |
q.arg |
a list of lists of quantile functions parameters of the distributions in |
n.tot |
optional integer, total number of function evaluations, instead of |
method |
character string specifying the estimation method of the total interaction indices, to be chosen between |
n.lo |
optional integer, only if |
n.mc |
optional integer, only if |
n.fast |
optional integer, only if |
L |
optional integer, only if |
M |
optional integer, only if |
n.pf |
optional integer, only if |
n.main |
integer, number of Monte Carlo Simulations for computing main effect indices |
confint |
optional Boolean, if |
print.loop.index |
optional Boolean, if |
... |
additional arguments to be passed to the function |
an object of class graphlist
containing the graph structure which includes
d |
number of input factors |
tii |
matrix containing the unscaled total interaction indices and if |
i1 |
matrix containing the unscaled main effect indices |
V |
overall variance |
tii.scaled |
matrix containing the scaled total interaction indices |
cliques |
list of cliques |
J. Fruth, T. Muehlenstaedt
Fruth, J.; Roustant, O.; Kuhnt, S. (2013+) Total interaction index: A variance-based sensitivity index for second-order interaction screening.
Janon, A.; Klein, T.; Lagnoux, A.; Nodet, M.; Prieur, C. (2013) Asymptotic normality and efficiency of two Sobol index estimators.
Liu, R.; Owen, A.B. (2006) Estimating mean dimensionality of analysis of variance decompositions, Journal of the American Statistical Association, 101 474, 712-721.
Mara, T.A (2009) Extension of the RBD-FAST method to the computation of global sensitivity indices, Reliability Engineering & System Safety, 94 no. 8, 1274-1281.
Muehlenstaedt, T.; Roustant, O.; Carraro, L.; Kuhnt, S. (2011) Data-driven Kriging models based on FANOVA-decomposition, Statistics and Computing.
Sobol', I. M. (1993) Sensitivity estimates for nonlinear mathematical models, Mathematical Modeling and Computational Experiment, 1, 407-414.
1 2 3 4 5 6 | # Ishigami function, true analytical values: D12 = D23 = 0, D13 =~ 3.374
q.arg = list(list(min=-pi, max=pi), list(min=-pi, max=pi), list(min=-pi, max=pi))
estimateGraph(f.mat=ishigami.fun, d=3, q.arg=q.arg, n.tot=10000, method="LiuOwen")
estimateGraph(f.mat=ishigami.fun, d=3, q.arg=q.arg, n.tot=10000, method="FixFast")
estimateGraph(f.mat=ishigami.fun, d=3, q.arg=q.arg, n.tot=10000, method="RBD")
estimateGraph(f.mat=ishigami.fun, d=3, q.arg=q.arg, n.tot=10000, method="PickFreeze")
|
Loading required package: sensitivity
Loading required package: igraph
Attaching package: 'igraph'
The following objects are masked from 'package:stats':
decompose, spectrum
The following object is masked from 'package:base':
union
Loading required package: DiceKriging
Warning message:
no DISPLAY variable so Tk is not available
Overall variance
[1] 13.55881
Cliques
2
13
Scaled total interaction indices
totalInt
X1*X2 0.0000000
X1*X3 0.2722276
X2*X3 0.0000000
Overall variance
[1] 14.52122
Cliques
123
Scaled total interaction indices
[,1]
X1*X2 0.002099524
X1*X3 0.227098323
X2*X3 0.003716544
Overall variance
[1] 13.88653
Cliques
13
23
Scaled total interaction indices
[,1]
X1*X2 -0.001761127
X1*X3 0.310391559
X2*X3 0.019999125
Overall variance
[1] 13.73376
Cliques
13
12
Scaled total interaction indices
[,1]
X1*X2 0.003757655
X1*X3 0.253974431
X2*X3 -0.023405432
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.