plot.funpca {funpca}R Documentation

Plot fitted components

Description

Plots fitted signals and shows acf/pacf for the each one. Additionally a plot for all curves is added at the beginning.

Usage

## S3 method for class 'funpca'
plot(x,...)

Arguments

x

funpca object.

...

Other arguments to be called by plot().

Details

Plot of the fitted results.

Value

The function returns the selected plots.

Author(s)

Francisco Rosales

References

Rosales, F.
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)
plot(x)


[Package funpca version 9.0 Index]