What tags never appear on R questions?
The tags
table includes all Stack Overflow tags, but some have nothing to do with R
. How could you filter for just the tags that never appear on an R question? The tags
and question_tags
tables have been preloaded for you.
Cet exercice fait partie du cours
Joining Data with dplyr
Instructions
- Use a join to determine which tags never appear on an R question.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Using a join, filter for tags that are never on an R question
tags %>%
___