ComeçarComece de graça

Anti-joins

Anti-joins are useful when you want to filter rows in one table not found in the other. Your goal is to filter the population so that it does not contain the state capitals, and filter the area so that it only contains administrative areas, not the major Australian states.

Este exercício faz parte do curso

Joining Data with data.table in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Anti-join capitals to population
population[___]
Editar e executar o código