plot.weco {weco} | R Documentation |
Plot WECO results
Description
Generate plot with the observed data with abnormalities identified
Usage
## S3 method for class 'weco'
plot(x, ...)
Arguments
x |
A class weco vector returned from
weco.rule or weco.combine
|
... |
The function takes the following arguments
- start
First point for plotting
- end
Last point for plotting
- selected
Index of data points that will be highlighted
- runin
Number of running points that will be colored differently
- ref
Boolean. If true, reference lines will be given at 1, 2 and 3
times standard deviation
- ylim
Range of Y-axis
- cols
Color of each data point
|
See Also
weco.rule
, weco.combine
Examples
x <- rnorm(1000);
rst.comb <- weco.combine(x, lst.rules=list(list(1), list(2, k=9)));
plot(rst.comb, start=10, end=80, selected = c(60,70));
[Package
weco version 1.2
Index]