everything_except: Get symbols for all columns except ...

View source: R/utilities.R

everything_exceptR Documentation

Get symbols for all columns except ...

Description

This convenience function performs a set difference between the columns of .DF and the variable names (or symbols) given in ....

Usage

everything_except(.DF, ..., .symbols = TRUE)

Arguments

.DF

A data frame whose variable names are to be differenced.

...

A string, strings, vector of strings, or list of strings representing column names to be subtracted from the names of .DF/

.symbols

A boolean that defines the return type: TRUE for symbols, FALSE for strings.

Value

A vector of symbols (when .symbols = TRUE) or strings (when symbol = FALSE) containing all variables names except those given in ....

Examples

DF <- data.frame(a = c(1, 2), b = c(3, 4), c = c(5, 6))
everything_except(DF, "a", "b")
everything_except(DF, "a", "b", symbols = FALSE)
everything_except(DF, c("a", "b"))
everything_except(DF, list("a", "b"))

matsindf documentation built on Aug. 18, 2023, 5:06 p.m.