```r dt = data.table(a=1,b=2)[0,] first(dt) # a b #1: NA NA head(dt, 1) #Empty data.table (0 rows and 2 cols): a,b ```