plot.ladle {ICtest} | R Documentation |
Plotting an Object of Class ladle
Description
An object of class ladle contains always the source components as estimated by the corresponding statistical method. This function either plots all of the components or only this considered interesting according to the ladle estimate.
Usage
## S3 method for class 'ladle'
plot(x, which = "all", ...)
Arguments
x |
an object of class ladle. |
which |
if |
... |
other arguments passed on to |
Details
If the component matrix has the class mts
, xts
or zoo
, then a time series plot will be plotted. Otherwise, the pairwise scatter plot matrix will be plotted.
Author(s)
Klaus Nordhausen
See Also
pairs
, plot.ts
, plot.zoo
, plot.xts
Examples
n <- 1000
X <- cbind(rexp(n), rt(n,5), rnorm(n), rnorm(n), rnorm(n), rnorm(n))
test <- FOBIladle(X)
plot(test)