50% off | Unlimited Data & AI Learning
Get 50% off unlimited learning

enpls (version 5.6)

plot.enpls.ad: Plot enpls.ad object

Description

Plot enpls.ad object

Usage

"plot"(x, type = c("static", "interactive"), main = NULL, ...)

Arguments

x
An object of class enpls.ad.
type
Plot type. Can be "static" or "interactive".
main
Plot title, not used currently.
...
Additional graphical parameters, not used currently.

See Also

See enpls.ad for model applicability domain evaluation with ensemble partial least squares regressions.

Examples

Run this code
data("alkanes")
x = alkanes$x
y = alkanes$y

# training set
x.tr = x[1:100, ]
y.tr = y[1:100]

# two test sets
x.te = list("test.1" = x[101:150, ],
            "test.2" = x[151:207, ])
y.te = list("test.1" = y[101:150],
            "test.2" = y[151:207])

set.seed(42)
ad = enpls.ad(x.tr, y.tr, x.te, y.te,
              space = "variable", method = "mc",
              ratio = 0.9, reptimes = 50)
plot(ad)
# The interactive plot requires a HTML viewer
## Not run: 
# plot(ad, type = "interactive")## End(Not run)

Run the code above in your browser using DataLab