I have the following query:
library(dplyr)
FinalQueryDplyr <- PostsWithFavorite %>%
  inner_join(Users, by = c("OwnerUserId" = "Id"), keep = FALSE) %>%
  select(DisplayName, Age, Location, FavoriteTotal, MostFavoriteQuestion, MostFavoriteQuestionLikes) %>%
  select(-c(OwnerUserId)) %>%
  arrange(desc(FavoriteTotal))
As you can see, I use the OwnerUserId column as the joining column between 2 data frames.
I want the result data frame to only have other columns, without the OwnerUserId column visible.
Even though I 'deselect' the OwnerUserId column 2 times in said query: 
- once by not including it in the first selectclause
- once by explicitly deselecting it with select(-c(OwnerUserId))
It is still visible in the result:
OwnerUserId DisplayName Age Location FavoriteTotal MostFavoriteQuestion MostFavoriteQuestionLikes
How can I get rid of the column that was used as a joining column in dplyr?
 
    