I am trying to use the select function to delete several columns but I keep getting a message saying that the column trip_id does not exist. But it does.
all_trips<-all_trips %>%
select(-c(trip_id, gender, birthyear)
Any help you can give me I will surely appreciate it!
Thanks
Jesus
Please post the output of
dput(head(all_trips))