foo <- function(data, select = NULL, exclude = NULL, regex = FALSE) {
.select_nse(select, data, exclude = exclude, regex = regex, ignore_case = FALSE)
}
test_that(".select_nse needs data", {
expect_error(foo(select = "Sepal.Length", data = NULL), regexp = "must be provided")
})
test_that(".select_nse needs a data frame or something coercible to a dataframe", {
expect_identical(
foo(select = "Sepal.Length", data = as.matrix(head(iris))),
"Sepal.Length"
)
expect_error(
foo(select = "Sepal.Length", data = list(1:3, 1:2)),
regexp = "must be a data frame"
)
})
test_that(".select_nse: arg 'select' works", {
expect_identical(
foo(iris, select = NULL),
names(iris)
)
expect_identical(
foo(iris, Petal.Length),
"Petal.Length"
)
expect_identical(
foo(iris, c("Petal.Length", "Sepal.Width")),
c("Petal.Length", "Sepal.Width")
)
expect_identical(
foo(iris, c(3, 2)),
c("Petal.Length", "Sepal.Width")
)
expect_identical(
foo(iris, 1:5),
names(iris)
)
expect_identical(
foo(iris, is.numeric),
c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width")
)
expect_identical(
foo(iris, is.numeric()),
c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width")
)
expect_identical(
extract_column_names(iris, sepal.length, ignore_case = TRUE),
"Sepal.Length"
)
expect_identical(
foo(iris, starts_with("Petal")),
c("Petal.Length", "Petal.Width")
)
expect_identical(
foo(iris, ends_with("Length")),
c("Sepal.Length", "Petal.Length")
)
expect_identical(
foo(iris, contains("Length")),
c("Sepal.Length", "Petal.Length")
)
expect_identical(
foo(iris, regex("Length$")),
c("Sepal.Length", "Petal.Length")
)
expect_identical(
foo(iris, "Len", regex = TRUE),
c("Sepal.Length", "Petal.Length")
)
})
test_that(".select_nse: arg 'exclude' works", {
expect_identical(
foo(iris, exclude = c("Petal.Length", "Sepal.Width")),
c("Sepal.Length", "Petal.Width", "Species")
)
expect_identical(
foo(iris, exclude = c(3, 2)),
c("Sepal.Length", "Petal.Width", "Species")
)
expect_identical(
foo(iris, exclude = starts_with("Petal")),
c("Sepal.Length", "Sepal.Width", "Species")
)
expect_identical(
foo(iris, exclude = ends_with("Length")),
c("Sepal.Width", "Petal.Width", "Species")
)
expect_identical(
foo(iris, exclude = contains("Length")),
c("Sepal.Width", "Petal.Width", "Species")
)
expect_identical(
foo(iris, exclude = regex("Length$")),
c("Sepal.Width", "Petal.Width", "Species")
)
})
test_that(".select_nse: args 'select' and 'exclude' at the same time", {
expect_identical(
foo(iris, select = contains("Length"), exclude = starts_with("Petal")),
"Sepal.Length"
)
expect_identical(
foo(iris, select = contains("Length"), exclude = contains("Length")),
character(0)
)
})
test_that(".select_nse: misc", {
iris2 <- iris[, 1:3]
expect_identical(
foo(iris, select = names(iris2)),
c("Sepal.Length", "Sepal.Width", "Petal.Length")
)
expect_identical(
foo(iris, select = names(iris2)[2]),
"Sepal.Width"
)
})
test_that(".select_nse: works with function and namespace", {
model <- lm(Petal.Length ~ Petal.Width, data = iris)
out <- data_select(iris, insight::find_predictors(model, effects = "fixed", flatten = TRUE))
expect_identical(out, iris["Petal.Width"])
fun <- function(x) {
data_select(iris, x)
}
out <- fun(insight::find_predictors(model, effects = "fixed", flatten = TRUE))
expect_identical(out, iris["Petal.Width"])
x <- "Sepal.Length"
out <- fun(insight::find_predictors(model, effects = "fixed", flatten = TRUE))
expect_identical(out, iris["Petal.Width"])
})
test_that(".select_nse: allow character vector with :", {
data(mtcars)
out <- data_select(mtcars, c("cyl:hp", "wt", "vs:gear"))
expect_named(out, c("cyl", "disp", "hp", "wt", "vs", "am", "gear"))
out <- data_select(mtcars, c("cyl:hp", "wta", "vs:gear"))
expect_named(out, c("cyl", "disp", "hp", "vs", "am", "gear"))
out <- data_select(mtcars, c("hp:cyl", "wta", "vs:gear"))
expect_named(out, c("hp", "disp", "cyl", "vs", "am", "gear"))
out <- data_select(mtcars, c("cyl:hq", "wt", "vs:gear"))
expect_named(out, c("wt", "vs", "am", "gear"))
expect_warning(
center(mtcars, c("cyl:hp", "wta", "vs:gear"), verbose = TRUE),
regex = "Did you mean \"wt\""
)
expect_warning(
center(mtcars, c("cyl:hq", "wt", "vs:gear"), verbose = TRUE),
regex = "Did you mean one of \"hp\""
)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.