plot.ICS-S3 {ICS} | R Documentation |
Scatterplot Matrix of Component Scores from the ICS Transformation
Description
Produces a scatterplot matrix of the component scores of an invariant coordinate system obtained via an ICS transformation.
Usage
## S3 method for class 'ICS'
plot(x, select = NULL, index = NULL, ...)
Arguments
x |
an object inheriting from class |
select |
an integer, character, or logical vector specifying which
components to plot. If |
index |
an integer vector specifying which components to plot, or
|
... |
additional arguments to be passed down to
|
Author(s)
Andreas Alfons and Aurore Archimbaud
See Also
ICS()
gen_kurtosis()
, coef()
,
components()
, and fitted()
methods
Examples
data("iris")
X <- iris[,-5]
out <- ICS(X)
plot(out)
plot(out, select = c(1,4))