Identifying observations unique to a table
An additional data.table has been loaded into your R session, middle_east, along with the gdp list of data tables from the previous exercise. The middle_east data table contains the set of countries in the Middle East, a geopolitical region which spans parts of Europe, Africa, and Asia. All countries in the middle_east data table appear in one or more data tables in the gdp list. Your goal is to print data tables containing all countries in Africa, Europe, and Asia, that are not found in the middle_east.
Este exercício faz parte do curso
Joining Data with data.table in R
Instruções do exercício
- Print a new
data.tablecontaining rows fromgdp$africathat are not present inmiddle_east. - Print a new
data.tablecontaining rows fromgdp$asiathat are not present inmiddle_east. - Print a new
data.tablecontaining rows fromgdp$europethat are not present inmiddle_east.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Which countries are in Africa but not considered part of the middle east?
___
# Which countries are in Asia but not considered part of the middle east?
___
# Which countries are in Europe but not considered part of the middle east?
___