summary.fanovatests: Print "fanovatests" object

Description Usage Arguments Details Author(s) See Also Examples

Description

Prints the summary of the FANOVA tests.

Usage

1
2
## S3 method for class 'fanovatests'
summary(object, ...)

Arguments

object

an "fanovatests" object.

...

additional arguments not used.

Details

The function prints out the information about the data, the values of test statistics, the p-values and used parameters for the FANOVA tests performed by the fanova.tests function.

Author(s)

Tomasz Gorecki, Lukasz Smaga

See Also

fanova.tests, print.fanovatests

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# 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)
summary(fanova1)

fdANOVA documentation built on May 2, 2019, 2:43 a.m.