plot.enpls.od | R Documentation |
Plot enpls.od object
## S3 method for class 'enpls.od'
plot(
x,
criterion = c("quantile", "sd"),
prob = 0.05,
sdtimes = 3L,
alpha = 1,
main = NULL,
...
)
x |
An object of class |
criterion |
Criterion of being classified as an outlier,
can be |
prob |
Quantile probability as the cut-off value. |
sdtimes |
Times of standard deviation as the cut-off value. |
alpha |
An alpha transparency value for points, a real number in (0, 1]. |
main |
Plot title. |
... |
Additional graphical parameters for |
Nan Xiao <https://nanx.me>
See enpls.od
for outlier detection with
ensemble partial least squares regressions.
data("alkanes")
x <- alkanes$x
y <- alkanes$y
set.seed(42)
od <- enpls.od(x, y, reptimes = 50)
plot(od, criterion = "quantile")
plot(od, criterion = "sd")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.