createSafiDesign: Creating an initial DoE for a given number of (functional)...

Description Usage Arguments Value References Examples

View source: R/createSafiDesign.R

Description

An initial design object is created.

Usage

1
createSafiDesign(method = "SB", mirrored.runs.included = FALSE, d.f = 1, variable.names)

Arguments

method

a character string specifying the evaluation method to be chose from "SB" and "other". Currently only "SB", sequential bifurcation, is implemented. For "other" the DoE has to be added to the object manually.

mirrored.runs.included

boolean. If TRUE mirror runs will be included in the design.

d.f

number of (functional) inputs

variable.names

optional variable names (if NULL names are set to x1,x2,...)

Value

safidesign object containing DoE, split.points and d.f, mirrored.runs.included and method

References

Fruth, J.; Roustant, O.; Kuhnt, S. (2014) Sequential designs for sensitivity analysis of functional inputs in computer experiments, Reliability Engineering & System Safety, doi: 10.1016/j.ress.2014.07.018, preprint on HAL: http://hal.archives-ouvertes.fr/hal-00943509.

Bettonvil, B. (1995) Factor screening by sequential bifurcation, Communications in Statistics-Simulation and Computation, 24, 165-185.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# one input
s.d <- createSafiDesign()
s.d

# two inputs
s.d <- createSafiDesign(d.f = 2)
s.d

# including mirrored runs
s.d <- createSafiDesign(d.f = 2, mirrored.runs.included = TRUE)
s.d 

safi documentation built on May 30, 2017, 8:07 a.m.