View source: R/design.lattice.R
design.lattice | R Documentation |
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
)
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 |
kinds <- c("Wichmann-Hill", "Marsaglia-Multicarry", "Super-Duper", "Mersenne-Twister", "Knuth-TAOCP", "user-supplied", "Knuth-TAOCP-2002", "default" )
parameters |
Design parameters |
statistics |
Design statistics |
sketch |
Design sketch |
book |
Fieldbook |
Felipe de Mendiburu
FIELD PLOT TECHNIQUE. Erwin L. LeCLERG. 2nd ed., 1962, Burgess Publishing Company, Minnesota
design.ab
,
design.alpha
,design.bib
, design.crd
, design.cyclic
, design.dau
,
design.graeco
, design.split
,
design.lsd
, design.rcbd
,
design.strip
library(agricolae)
# triple lattice
trt<-LETTERS[1:9]
outdesign<-design.lattice(trt,r=3,serie=2) # triple lattice design ( 9 trt)
# simple lattice
trt<-1:100
outdesign<-design.lattice(trt,r=2,serie=3) # simple lattice design, 10x10
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.