Nothing
# Exits
if (!requireNamespace("caret", quietly = TRUE)) {
exit_file("Package 'caret' missing")
}
if (!requireNamespace("pls", quietly = TRUE)) {
exit_file("Package 'pls' missing")
}
# # Load required packages
# suppressMessages({
# library(caret)
# library(pls)
# })
# Generate Friedman benchmark data
friedman1 <- gen_friedman(seed = 101)
# Fit model(s)
fit <- pls::mvr(y ~ ., data = friedman1)
# Compute VI scores
vis <- vi_model(fit)
# Expectations for `vi_model()`
expect_identical(
current = vis$Importance,
target = caret::varImp(fit)$Overall
)
# Expectations for `get_feature_names()`
expect_identical(
current = vip:::get_feature_names.mvr(fit),
target = paste0("x", 1L:10L)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.