print.fanovatests {fdANOVA} | R Documentation |
Prints the brief summary of the FANOVA tests.
## S3 method for class 'fanovatests'
print(x, ...)
x |
an " |
... |
additional arguments not used. |
The function prints out the values of test statistics and p-values of the FANOVA tests performed by the fanova.tests
function.
Tomasz Gorecki, Lukasz Smaga
fanova.tests
, summary.fanovatests
# This example may run some time.
# gait data (the first feature)
library(fda)
gait.data.frame <- as.data.frame(gait)
x.gait <- as.matrix(gait.data.frame[, 1:39])
# vector of group labels
group.label.gait <- rep(1:3, each = 13)
# all FANOVA tests with default parameters
set.seed(123)
fanova1 <- fanova.tests(x.gait, group.label.gait)
print(fanova1)