summary.owt {onewaytests} | R Documentation |
Summary Method for One-Way Test Results
Description
Provides a concise summary of the results from an one-way test in the package.
Usage
## S3 method for class 'owt'
summary(object, detail = TRUE, ...)
Arguments
object |
An object of class |
detail |
a logical for printing detail of the one-way tests. |
... |
Additional arguments. |
Details
This method is specifically designed for objects of class owt
. It prints test method, dependent variable, grouping variable, test statistic, degrees of freedom, p-value, and any relevant notes.
Value
Prints a summary to the console.
Author(s)
Merve Kasikci, Osman Dag
Examples
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)
[Package onewaytests version 3.1 Index]