publish.summary.aov {Publish} | R Documentation |
Format summary table of aov results
Description
Format summary table of aov results
Usage
## S3 method for class 'summary.aov'
publish(
object,
print = TRUE,
handler = "sprintf",
digits = c(2, 4),
nsmall = digits,
...
)
Arguments
object |
glm object |
print |
Logical. Decide about whether or not to print the results. |
handler |
see |
digits |
see |
nsmall |
see |
... |
used to transport further arguments |
Examples
data(Diabetes)
f <- glm(bp.1s~age+chol+gender+location,data=Diabetes)
publish(summary(aov(f)),digits=c(1,2))
[Package Publish version 2023.01.17 Index]