Get Data Frame Column Names Except Specified
names_of_df_except.Rd
This function returns the column names of a data frame excluding those specified.
Examples
df <- data.frame(a = 1:3, b = 4:6, c = 7:9)
names_of_df_except(df, c("b", "c"))
#> [1] "a"