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
.
Diese Übung ist Teil des Kurses
Joining Data with data.table in R
Anleitung zur Übung
- Print a new
data.table
containing rows fromgdp$africa
that are not present inmiddle_east
. - Print a new
data.table
containing rows fromgdp$asia
that are not present inmiddle_east
. - Print a new
data.table
containing rows fromgdp$europe
that are not present inmiddle_east
.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# 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?
___