print.summary.pcanon {dae} | R Documentation |
Prints the values in an summary.pcanon
object
Description
Prints a summary.pcanon
object, which is also a
data.frame
, in a pretty format.
Usage
## S3 method for class 'summary.pcanon'
print(x, aliasing.print = TRUE, ...)
Arguments
x |
A |
aliasing.print |
A |
... |
further arguments passed to |
Value
No value is returned.
Author(s)
Chris Brien
See Also
Examples
## 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)
[Package dae version 3.2.28 Index]