Description Usage Arguments Value Note See Also Examples
Methods to extract a design data frame from an object.
1 2 | ## S4 method for signature 'planordesign'
getDesign( object )
|
object |
object of the class. |
A data frame which contains the design.
Applied on a planordesign
object,
it is the same as function as.data.frame
,
without returning any attributes.
Class where this method applies:
planordesign
.
1 2 3 4 5 6 7 | ### Creation of a planordesign 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)
P0 <- planor.design(key=K0, select=1)
### Method getDesign on the planordesign object
show(getDesign(P0))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.