SIMPLE and TRIPLE lattice designs. It randomizes treatments in k x k lattice.

design.lattice(
  trt,
  r = 3,
  serie = 2,
  seed = 0,
  kinds = "Super-Duper",
  randomization = TRUE
)

Arguments

trt

treatments

r

r=2(simple) or r=3(triple) lattice

serie

number plot, 1: 11,12; 2: 101,102; 3: 1001,1002

seed

seed

kinds

method for to randomize

randomization

TRUE or FALSE - randomize

Value

parameters

Design parameters

statistics

Design statistics

sketch

Design sketch

book

Fieldbook

Details

kinds <- c("Wichmann-Hill", "Marsaglia-Multicarry", "Super-Duper", "Mersenne-Twister", "Knuth-TAOCP", "user-supplied", "Knuth-TAOCP-2002", "default" )

References

FIELD PLOT TECHNIQUE. Erwin L. LeCLERG. 2nd ed., 1962, Burgess Publishing Company, Minnesota

See also

Examples

library(agricolae) # triple lattice trt<-LETTERS[1:9] outdesign<-design.lattice(trt,r=3,serie=2) # triple lattice design ( 9 trt)
#> #> Lattice design, triple 3 x 3 #> #> Efficiency factor #> (E ) 0.7272727 #> #> <<< Book >>>
# simple lattice trt<-1:100 outdesign<-design.lattice(trt,r=2,serie=3) # simple lattice design, 10x10
#> #> Lattice design, simple 10 x 10 #> #> Efficiency factor #> (E ) 0.8461538 #> #> <<< Book >>>