| plot.fssa {Rfssa} | R Documentation | 
Plot Functional Singular Spectrum Analysis Objects
Description
This function is a plotting method for objects of class functional singular spectrum analysis (fssa).
It aids users in making decisions during the grouping stage of univariate or multivariate functional singular spectrum analysis.
Usage
## S3 method for class 'fssa'
plot(
  x,
  d = length(x$values),
  idx = 1:d,
  idy = idx + 1,
  contrib = TRUE,
  groups = as.list(1:d),
  lwd = 2,
  type = "values",
  vars = NULL,
  ylab = NA,
  main = NA,
  ...
)
Arguments
| x | An object of class  | 
| d | An integer representing the number of elementary components to plot. | 
| idx | A vector of indices specifying which eigen elements to plot. | 
| idy | A second vector of indices of eigen elements to plot (for  | 
| contrib | A logical value. If  | 
| groups | A list or vector of indices determining the grouping used for decomposition (for  | 
| lwd | A vector of line widths. | 
| type | The type of plot to be displayed. Possible types include: 
 | 
| vars | A numeric value specifying the variable number (used in plotting MFSSA  | 
| ylab | A character vector representing the names of variables. | 
| main | The main plot title. | 
| ... | Additional arguments to be passed to methods, such as graphical parameters. | 
See Also
Examples
data("Callcenter")
L <- 28
U <- fssa(Callcenter, L)
plot(U, type = "values", d = 10)
plot(U, type = "vectors", d = 4)
plot(U, type = "paired", d = 6)
plot(U, type = "lcurves", d = 4, vars = 1)
plot(U, type = "lheats", d = 4)
plot(U, type = "wcor", d = 10)