summary.funpca {funpca}R Documentation

funpca Summary

Description

Takes an funpca object produced by funpca and summarizes the information of the components fi (individual fits).

Usage

## S3 method for class 'funpca'
summary(object,...)

Arguments

object

funpca object.

...

further arguments to be passed to summary().

Value

The function gives basic statistics of the components resulting from applying funpca.

Author(s)

Francisco Rosales francisco.rosales-marticorena@protonmail.com

References

Rosales, F. and Krivobokova, T.
For more details see <https://ediss.uni-goettingen.de/handle/11858/00-1735-0000-0028-87F9-6>

See Also

plot.funpca (package funpca),

Examples


library(fda)
sdata <- NULL
data <- CanadianWeather$monthlyTemp
for(i in 1:ncol(data)) sdata <- cbind(sdata,spline(data[,i])$y)
x <- funpca(sdata, k=3)
summary(x)


[Package funpca version 9.0 Index]