Learn R Programming

safi (version 1.0)

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

Description

An initial design object is created.

Usage

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

Run this code
# 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 

Run the code above in your browser using DataLab