plot.icss | R Documentation |
Plots the output of the ICSS algorithm.
## S3 method for class 'icss'
plot(x, type = "std", title = NULL, ...)
x |
An object with the output of icss or micss. |
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.