Description Objects from the Class Slots Extends Methods Author(s) See Also Examples
An S4 class to represent a list of design key solutions.
Objects are created by
planor.designkey
, when the search is recursive.
a list of objects of class
designkey
.
an object of class
designfactors
which contains the factors
specifications.
a list which contains the model and estimate specifications.
the number of units in the design.
Class list
, from data part.
Class vector
, by class list, distance 2.
NOT YET IMPLEMENTED.
extract one design key in the list.
extract one design key in the list. See
pick
method.
build a design from one design key in the
list. See
planor.design
method.
display the object. See
show
method.
summarize the design properties.
See summary
method.
Monod, H. and Bouvier, A.
Creator function: planor.designkey
1 2 3 4 5 6 7 8 9 10 11 12 | showClass("listofdesignkeys")
### Creation of a listofdesignkeys object
K0 <- planor.designkey(factors=c("R","C","U","A","B1","B2"),
nlevels=c(3,2,2,3,2,2), model=~R*C + (A+B1+B2)^2, estimate=~A:B1+A:B2,
nunits=12, base=~R+C+U, max.sol=2)
### Method show
show(K0)
### Method length
length(K0)
### Extract component. The two following two commands are equivalent
K <- K0[2]
K <- pick(K0,2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.