Get Data Frame Columns Except those Specified by Name
columns_of_df_except.Rd
This function returns the columns of a data frame excluding those specified.
Examples
df <- data.frame(a = 1:3, b = 4:6, c = 7:9)
columns_of_df_except(df, c("b", "c"))
#> [1] 1 2 3