print_robinv_uncertainty_1d: Excursion probability and maximum kriging mean plot in 1d

Description Usage Arguments Value Author(s) Examples

View source: R/print_robinv_uncertainty_1d.R

Description

Computes and can show two plots for functions with only one controlled parameters and one or several nuisance parameters. One plot is the maximum of the kriging mean (taken w.r.t. the nuisance parameters) computed on a grid of controlled parameter values. The second plot is the excursion probability, pn, which is computed using conditional simulations.

Usage

1
2
3
4
5
6
print_robinv_uncertainty_1d(model, T, lower, upper, opt.index, inv.index,
  control = NULL, onlycompute = FALSE, lwd = 1, cex.main = 1,
  cex.axis = 1, cex.lab = 1, cex.points = 1, pch.points = 17,
  color.up = "red", color.down = "blue", maxmkplot = TRUE,
  xlab1 = NULL, ylab1 = NULL, main1 = NULL, pnplot = TRUE,
  xlab2 = NULL, ylab2 = NULL, main2 = NULL, newpar = TRUE)

Arguments

model

The current kriging model. km object.

T

Target threshold.

lower

Array of size d. Lower bound of the input domain.

upper

Array of size d. Upper bound of the input domain.

opt.index

Array with integers corresponding to the indices of the nuisance parameters.

inv.index

Array with integers corresponding to the indices of the controlled parameters.

control

A list with fields that will control how the different quantities involved are computed. control$resolution is the number of points (in the space of the controlled parameters) where the computations are performed. A grid in dimension 1 of size resolution is used. The field n.optpoints controls the number of points (in the space of the nuisance parameters) taken to compute the maximum of the kriging mean, or to do conditional simulations. For the computation of the excursion probability, the fields n.optpoints.candidates, choose_optpoints, nsimu, unscale.opt.simulation.points are used in a similar way than in the integration_design_robinv function. See help on the integcontrol argument in that function.

onlycompute

Boolean. When FALSE, no plot is performed, but the maximum of the kriging mean (resp. the excursion probability pn) is still computed if maxmkplot=TRUE (resp. pnplot = TRUE).

lwd

Line width for the different plots involved in this function.

cex.main

Title size for the different plots involved in this function.

cex.axis

Axis label size for the different plots involved in this function.

cex.lab

Label size for the different plots involved in this function.

cex.points

Point size for the maximum kriging mean plot. Useless if maxmkplot=FALSE.

pch.points

Point pch for the maximum kriging mean plot. Useless if maxmkplot=FALSE.

color.up

Color of the points where there is threshold exceedance. Useless if maxmkplot=FALSE.

color.down

Color of the points where there is no threshold exceedance. Useless if maxmkplot=FALSE.

maxmkplot

Boolean. When TRUE, the maximum of the kriging mean (taken w.r.t. the nuisance parameters) is computed. It is also ploted if onlycompute=FALSE.

xlab1

x axis label for the maximum of the kriging mean plot.

ylab1

y axis label for the maximum of the kriging mean plot.

main1

Title of the maximum of the kriging mean plot.

pnplot

Boolean. When TRUE, the excursion probability function, pn, is computed. It is also ploted if onlycompute=FALSE.

xlab2

x axis label for the excursion probability plot.

ylab2

y axis label for the excursion probability plot.

main2

Title of the excursion probability plot.

newpar

Boolean. When TRUE, the par() function is called. Usefull only if the two plots available in this function are both performed.

Value

A list containing the important computed quantities: (i) all.points: the value of the controlled parameters, (ii) maxmk: array of the same size than all.points containing the maximum of the kriging mean taken w.r.t. the nuisance parameters, (iii) pn: array of the same size than all.points containing the excursion probability of the considered points (all.points), (iv) uncertainty: scalar equal to mean(pn*(1-pn)) giving a measure of the current global uncertainty on the excursion set, (v) colors.transluded: the colors used to plot the points on the maximum of kriging mean plot.

Author(s)

Clement Chevalier clement.chevalier@unine.ch

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
library(KrigInv)
library(randtoolbox)
myfun <- function(x) return(-1 * branin_robinv(x))
d <- 3

set.seed(8)

n0 <- 30
T <- -10
opt.index <- c(2,3)
inv.index <- c(1)
lower <- rep(0,times=d)
upper <- rep(1,times=d)

design <- matrix(runif(d*n0),nrow=n0)
response <- myfun(design)
model <- km(formula = ~1,design = design,response = response,covtype = "matern3_2")
control <- list(resolution = 100, n.optpoints = 300)
## Not run: 
print_robinv_uncertainty_1d(model=model,T=T,lower=lower,upper=upper,
                            opt.index = opt.index,inv.index = inv.index,
                            control = control)

## End(Not run)
########################################
# A more complicated example with scaling
library(KrigInv)
myfun <- function(x){ return(-1*branin_robinv(x) - 50*sin(min(100,1/x[3]))  ) }
d <- 3

set.seed(8)

n0 <- 60
T <- 40
opt.index <- c(2,3)
inv.index <- c(1)
lower <- rep(0,times=d)
upper <- rep(1,times=d)

design <- matrix(runif(d*n0),nrow=n0)
response <- apply(X = design,FUN = myfun,MARGIN = 1) 
knots.number <- c(0,3,3)
knots <- generate_knots(knots.number = knots.number , d = d)

model <- km(formula = ~1,design = design,response = response,covtype = "matern3_2",scaling = TRUE,knots=knots)
# have a look at model@covariance@eta

control <- list(resolution = 100, n.optpoints = 300, unscale.opt.simulation.points=TRUE)

## Not run: 
print_robinv_uncertainty_1d(model=model,T=T,lower=lower,upper=upper,
                            opt.index = opt.index,inv.index = inv.index,
                            control = control)

## End(Not run)

IRSN/RobustInv documentation built on Nov. 20, 2019, 10:46 p.m.