powered by
Plot enpls.od object
# S3 method for enpls.od plot(x, criterion = c("quantile", "sd"), prob = 0.05, sdtimes = 3L, alpha = 1, main = NULL, ...)
An object of class enpls.od.
enpls.od
Criterion of being classified as an outlier, can be "quantile" or "sd".
"quantile"
"sd"
Quantile probability as the cut-off value.
Times of standard deviation as the cut-off value.
An alpha transparency value for points, a real number in (0, 1].
Plot title.
Additional graphical parameters for plot.
plot
See enpls.od for outlier detection with ensemble partial least squares regressions.
# NOT RUN { 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") # }
Run the code above in your browser using DataLab