1. Learn
  2. /
  3. Courses
  4. /
  5. Joining Data with data.table in R

Exercise

Concatenating data.table variables

Three data.tables containing Ebola case numbers reported in Guinea to the World Health Organisation for three weeks at the height of the 2014 Ebola outbreak have been loaded into your R session: ebola_W50, ebola_W51, and ebola_W52. Your goal is to create a single data.table containing the case numbers in each region of Guinea across all three weeks.

Instructions 1/3

undefined XP
    1
    2
    3

Concatenate ebola_W50 and ebola_W51 (in that order) using the rbind() function.