| screeplot.ICS-S3 {ICS} | R Documentation | 
Screeplot for an ICS Object
Description
Plots the kurtosis measures of an ICS object against its index number.
Two versions of this screeplot are available.
Usage
## S3 method for class 'ICS'
screeplot(
  x,
  index = NULL,
  type = "barplot",
  main = deparse(substitute(x)),
  ylab = "generalized kurtosis",
  xlab = "component",
  names.arg = index,
  labels = TRUE,
  ...
)
Arguments
| x | object of class  | 
| index | index of the components to be plottes. If NULL all components are used. | 
| type | "barplot" if a barplot or "lines" if a line plot is preferred. | 
| main | main title of the plot. | 
| ylab | y-axis label. | 
| xlab | x-axis label. | 
| names.arg | names.arg argument passed on to "barplot". | 
| labels | 
 | 
| ... | other arguments for the plotting functions. | 
Author(s)
Andreas Alfons and Aurore Archimbaud
See Also
ICS()
gen_kurtosis()  method
Examples
X <- iris[,-5]
out <- ICS(X)
screeplot(out)
screeplot(out, type = "lines")
[Package ICS version 1.4-1 Index]