Multi-key, single-key
In addition to locations
, you will work with the teachers
dataset in this exercise. It contains information about the teacher for each subject. The teacher of each subject does not change between semesters. Your goal is to build a new data.table
containing the room allocation for each subject, using the teachers
and locations
data.table
s.
Cet exercice fait partie du cours
Joining Data with data.table in R
Instructions
- Identify the key column(s) for joining
teachers
andlocations
and assign it as a character vector in the formc("teachers_join_key" = "locations_join_key")
to thejoin_key
variable. - Using the
data.table
syntax, right joinlocations
toteachers
using thejoin_key
variable.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Identify and set the keys
join_key <- ___
# Right join
___