Learn R Programming

r6qualitytools (version 1.0.1)

taguchiDesign: taguchiDesign: Taguchi Designs

Description

Function to create a taguchi design.

Usage

taguchiDesign(design, randomize = TRUE, replicates = 1)

Value

A taguchiDesign returns an object of class taguchiDesign.

Arguments

design

A character string specifying the orthogonal array of the Taguchi design. The available options are:

  • `L4_2" for three two-level factors.

  • `L8_2" for seven two-level factors.

  • `L9_3" for four three-level factors.

  • `L12_2" for 11 two-level factors.

  • `L16_2" for 16 two-level factors

  • `L16_4" for 16 four-level factors.

  • `L18_2_3" for one two-level and seven three-level factors.

  • `L25_5" for six five-level factors.

  • `L27_3" for 13 three-level factors.

  • `L32_2" for 32 two-level factors.

  • `L32_2_4" for one two-level factor and nine four-level factors.

  • `L36_2_3_a" for 11 two-level factors and 12 three-level factors.

  • `L36_2_3_b" for three two-level factors and 13 three-level factors.

  • `L50_2_5" for one two-level factor and eleven five-level factors.

  • `L8_4_2" for one four-level factor and four two-level factors.

  • `L16_4_2_a" for one four-level factor and 12 two-level factors.

  • `L16_4_2_b" for two four-level factors and nine two-level factors.

  • `L16_4_2_c" for three four-level factors and six two-level factors.

  • `L16_4_2_d" for five four-level factors and two two-level factors.

  • `L18_6_3" for one six-level factor and six three-level factors.

randomize

A logical value (TRUE/FALSE) that specifies whether to randomize the RunOrder of the design. By default, randomize is set to TRUE.

replicates

An integer specifying the number of replicates for each run in the design.

Details

An overview of possible taguchi designs is possible with taguchiChoose.

See Also

  • 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.

Examples

Run this code
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()

Run the code above in your browser using DataLab