Learn R Programming

Publish (version 2023.01.17)

publish.summary.aov: Format summary table of aov results

Description

Format summary table of aov results

Usage

# S3 method for 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 pubformat

digits

see pubformat

nsmall

see pubformat

...

used to transport further arguments

Examples

Run this code
 
data(Diabetes)
f <- glm(bp.1s~age+chol+gender+location,data=Diabetes)
publish(summary(aov(f)),digits=c(1,2))

Run the code above in your browser using DataLab