inst/tinytest/test-variable_selection.R

set_no_print(TRUE)

###############################################################################
# Suppressing some functions messages because they only output the information
# on how much time they took.
###############################################################################

dummy_df <- dummy_data(1000)


# Get inverse variable names from data frame works correct
var_names     <- c("state", "age", "sex", "education")
inverse_names <- dummy_df |> inverse(var_names)

var_count <- length(names(dummy_df))

expect_equal(length(var_names) + length((inverse_names)), var_count, info = "Get inverse variable names from data frame works correct")
expect_true(!all(var_names %in% inverse_names), info = "Get inverse variable names from data frame works correct")


# Get variable names between two variables
var_names <- dummy_df |> vars_between(state, person_id)

expect_equal(length(var_names), 5, info = "Get variable names between two variables")


# Get variable names from variable to the end
var_names <- dummy_df |> vars_between(body_weight)

expect_equal(length(var_names), 8, info = "Get variable names from variable to the end")


# Get variable names from beginning to position
var_names <- dummy_df |> vars_between(to = person_id)

expect_equal(length(var_names), 6, info = "Get variable names from beginning to position")

###############################################################################
# Warning checks
###############################################################################

# Providing not existing from-variable throws a warning
var_names <- dummy_df |> vars_between(test, person_id)

expect_warning(print_stack_as_messages("WARNING"), "'from' variable '", info = "Providing not existing from-variable throws a warning")

expect_equal(length(var_names), 6, info = "Providing not existing from-variable throws a warning")


# Providing not existing to-variable throws a warning
var_names <- dummy_df |> vars_between(state, test)

expect_warning(print_stack_as_messages("WARNING"), "'to' variable '", info = "Providing not existing to-variable throws a warning")

expect_equal(length(var_names), 19, info = "Providing not existing to-variable throws a warning")


# Providing more than one from or to variable throws a note
var_names <- dummy_df |> vars_between(c(state, age), income)

expect_message(print_stack_as_messages("NOTE"), "Only single variable names allowed for",
               info = "Providing more than one from or to variable throws a note")

expect_equal(length(var_names), 14, info = "Providing more than one from or to variable throws a note")


set_no_print()

Try the qol package in your browser

Any scripts or data that you put into this service are public.

qol documentation built on June 17, 2026, 1:07 a.m.