View source: R/projs.canon.v5.r
print.summary.pcanon | R Documentation |
summary.pcanon
objectPrints a summary.pcanon
object, which is also a
data.frame
, in a pretty format.
## S3 method for class 'summary.pcanon'
print(x, aliasing.print = TRUE, ...)
x |
A |
aliasing.print |
A |
... |
further arguments passed to |
No value is returned.
Chris Brien
summary.pcanon
## PBIBD(2) from p. 379 of Cochran and Cox (1957) Experimental Designs.
## 2nd edn Wiley, New York
PBIBD2.unit <- list(Block = 6, Unit = 4)
PBIBD2.nest <- list(Unit = "Block")
trt <- factor(c(1,4,2,5, 2,5,3,6, 3,6,1,4, 4,1,5,2, 5,2,6,3, 6,3,4,1))
PBIBD2.lay <- designRandomize(allocated = trt,
recipient = PBIBD2.unit,
nested.recipients = PBIBD2.nest)
##obtain combined decomposition and summarize
unit.trt.canon <- designAnatomy(list(unit=~ Block/Unit, trt=~ trt),
data = PBIBD2.lay)
summ <- summary(unit.trt.canon, which = c("aeff","eeff","order"))
print(summ)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.