I am trying to remove some columns in a dataframe. I want to know why it worked for a single column but not with multible columns e.g. this works
album2[,5]
x <-dplyr::select(dataset_df, -c('coloumn1', 'column2'))
This works for me.