View source: R/5.3_Taguchi_designs_Functions.R
taguchiDesign | R Documentation |
Function to create a taguchi design.
taguchiDesign(design, randomize = TRUE, replicates = 1)
design |
A character string specifying the orthogonal array of the Taguchi design. The available options are:
|
randomize |
A logical value ( |
replicates |
An integer specifying the number of replicates for each run in the design. |
An overview of possible taguchi designs is possible with taguchiChoose
.
A taguchiDesign
returns an object of class taguchiDesign
.
facDesign
: for 2^k factorial designs.
rsmDesign
: for response surface designs.
fracDesign
: for fractional factorial design.
pbDesign
: for response surface designs.
gageRRDesign
: for gage designs.
tdo <- taguchiDesign("L9_3")
tdo$values(list(A = c("material 1", "material 2", "material 3"), B = c(29, 30, 35)))
tdo$names(c("Factor 1", "Factor 2", "Factor 3", "Factor 4"))
tdo$.response(rnorm(9))
tdo$summary()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.