This function removes variables from a data frame, and is
intended to use within a pipe-workflow. remove_cols() is an
alias for remove_var().
Usage
remove_var(x, ...)
remove_cols(x, ...)
Value
x, with variables specified in ... removed.
Arguments
x
A vector or data frame.
...
Character vector with variable names, or unquoted names
of variables that should be removed from the data frame.
You may also use functions like : or tidyselect's
select-helpers.