Nothing
require(FrF2)
### tests for Godolphin methodology
### colpick
## colpick for full factorial
colpick(6, 2) ## default
## character estimability requirement
colpick(6, 3, estimable=compromise(6, 4)$requirement)
## matrix estimability requirement
colpick(6, 3, estimable=rbind(4, c(1:3,5:6)))
## character design specification
colpick("6-1.1", 3, estimable=compromise(6, 4)$requirement)
## catlg design specification
colpick(catlg["6-1.1"], 3, estimable=compromise(6, 4)$requirement)
## impossible request
colpick(catlg["8-2.1"], 1)
## request that requires to suppress dominating filter
colpick("9-3.2", 2) ## (implemented with version 2.1)
## request with more than 50 factors (don't try to create the design!)
tail(colpick(55, 2)$clear2fis)
## phimax
phimax(8, 2) ## maximum possible
phimax(8, 2, c(4,3,1)) ## fewer
phimax(9, 4) ## all
## blockgencreate
X <- rbind(c(1,1,1,0,0,0,1),
c(1,1,0,1,1,1,0))
blockgencreate(X, 2)
## Xcalc
## gen character
Xcalc(rbind(c(1,1,0,0),c(0,1,1,1)),
gen=c("AB","BCD"))
## gen list
Xcalc(rbind(c(1,1,0,0),c(0,1,1,1)),
gen=list(c(1,2),2:4))
## gen Yates columns
Xcalc(rbind(c(1,1,0,0),c(0,1,1,1)),
gen=c(3,14))
## gen catlg
Xcalc(rbind(c(1,1,0,0),c(0,1,1,1)),
gen=catlg[nruns(catlg)==16 &
res(catlg)==4])
plangodolphin <- FF_from_X(colpick(4, 2)$X, randomize=FALSE)
cbind(run.order(plangodolphin), plangodolphin)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.