I am a newbie to R and I have to concatenate two lists of around 2 millions of observations and 25 variables. To be more precise, I have obtained the two lists by reading two large CSVs with the following R code lines:
require(data.table)
setwd("/Users/cart")
DT2017 <- fread("BNR_2017.csv")
DT2018 <- fread("BNR_2018.csv")
Now, I would like to concatenate the DT2017
and DT2018
lists in a single one of around 4 millions observations and 25 variables.