print.fmanovatrp {fdANOVA} | R Documentation |
Print "fmanovatrp" object
Description
Prints the brief summary of the testing procedures based on random projections for multivariate analysis of variance for functional data, i.e., the Wp, LHp, Pp and Rp tests.
Usage
## S3 method for class 'fmanovatrp'
print(x, ...)
Arguments
x |
an " |
... |
additional arguments not used. |
Details
The function prints out the p-values of the tests based on random projections for FMANOVA problem performed by the fmanova.trp
function.
Author(s)
Tomasz Gorecki, Lukasz Smaga
See Also
fmanova.trp
, summary.fmanovatrp
Examples
# gait data (both features)
library(fda)
gait.data.frame <- as.data.frame(gait)
x.gait <- vector("list", 2)
x.gait[[1]] <- as.matrix(gait.data.frame[, 1:39])
x.gait[[2]] <- as.matrix(gait.data.frame[, 40:78])
# vector of group labels
group.label.gait <- rep(1:3, each = 13)
# the tests based on random projections with the Gaussian white noise generated for projections
set.seed(123)
fmanova1 <- fmanova.trp(x.gait, group.label.gait, k = c(1, 5, 10, 15, 20))
print(fmanova1)
[Package fdANOVA version 0.1.2 Index]