Learn R Programming

onewaytests (version 3.1)

print.summary.owt: Print Method for Summary of One-Way Test Results

Description

Prints the formatted summary of an owt object to the console.

Usage

# S3 method for summary.owt
print(x, ...)

Arguments

x

An object returned by summary.owt().

...

Additional arguments.

Author

Osman Dag

See Also

summary.owt

Examples

Run this code
out <- onewaytests(Sepal.Length ~ Species, data = iris, method = "aov", verbose = FALSE)
summary(out)
paircomp(out)

out <- aov.test(Sepal.Length ~ Species, data = iris, verbose = FALSE)
summary(out)

Run the code above in your browser using DataLab