revdep/library.noindex/vip/old/vip/tinytest/test_pkg_caret.R

# Exits
if (!requireNamespace("caret", quietly = TRUE)) {
  exit_file("Package caret missing")
}

# # Load required packages
# suppressMessages({
#   library(caret)
# })

# Generate Friedman benchmark data
friedman1 <- gen_friedman(seed = 101)

# Fit model(s)
fit <- caret::train(y ~ ., friedman1, method = "lm")

# Compute VI scores
vis1 <- vi_model(fit)
vis2 <- caret::varImp(fit)

# Expectations for `vi_model()`
expect_identical(
  current = vis1$Importance,
  target = vis2$importance[vis1$Variable, , drop = TRUE]
)

# Expectations for `get_training_data()`
expect_identical(
  current = vip:::get_training_data.train(fit),
  target = subset(friedman1, select = -y)
)

# Expectations for `get_feature_names()`
expect_identical(
  current = vip:::get_feature_names.train(fit),
  target = paste0("x", 1L:10L)
)

# Call `vip::vip()` directly
p <- vip(fit, method = "model", type = "splits", pct = FALSE,
         include_type = TRUE)

# Expect `p` to be a `"gg" "ggplot"` object
expect_identical(
  current = class(p),
  target = c("gg", "ggplot")
)

# Display VIPs side by side
grid.arrange(
  vip(vis1, include_type = TRUE),
  # vip(vis2, include_type = TRUE),
  p,
  nrow = 1
)
AFIT-R/vip documentation built on Aug. 22, 2023, 8:59 a.m.