plot.ladle: Plotting an Object of Class ladle

plot.ladleR 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 "all", then all components of S in the ladle object are plotted. If "k", then only the k components are plotted, which are considered interesting according to the ladle estimator. This is only meaningful if the estimated 'k' is at least 2.

...

other arguments passed on to pairs if the components are a numeric matrix or to plot.ts, plot.zoo or plot.xts if the components are from the corresponding class.

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)

ICtest documentation built on May 18, 2022, 9:05 a.m.