plot.icss {micss} | R Documentation |
Plots the output of the ICSS algorithm.
## S3 method for class 'icss'
plot(x, type = "std", title = NULL, ...)
x |
|
type |
Type of graphic. 3 possibilities: "std", which is the default, plots the absolute value of the variable and the standard deviation; "var" plots the squares of the variable and the variance; "res.std" plots the standardized residuals. |
title |
Title of the graphic. |
... |
Further arguments passed to or from other methods. |
No return value. It generates a plot the output of micss or icss
set.seed(2)
e <- c(stats::rnorm(200),3*stats::rnorm(200))
o <- micss(e)
plot.icss(o,title="Example of the MICSS algorithm")