``` r DT = data.table(x=1:2, y=5:6) DT[, .BY, by=x]$.BY # [[1]] # [1] 2 # [[2]] # [1] 2 ``` The first list element should be `1`.
The first list element should be
1.