JL
Особенно если весь код прочитать.
Суть-то в том, что у читателя возник именно этот.
Size: a a a
JL
R
AB
AB
AB
AB
AB
JL
AB
АК
AB
R
IY
AB
IY
АК
АК
x <- data.table::data.table(a = 1:3)
> data.table::address(x)
[1] "0x55a73d0fe200"
> y <- x
> data.table::address(y)
[1] "0x55a73d0fe200"
> x[, b := 1]
> data.table::address(x)
[1] "0x55a73d0fe200"
> data.table::address(y)
[1] "0x55a73d0fe200"
> x <- x[1:2]
> data.table::address(x)
[1] "0x55a73da3a020"
> data.table::address(y)
[1] "0x55a73d0fe200"
> x
a b
1: 1 1
2: 2 1
> y
a b
1: 1 1
2: 2 1
3: 3 1
AB
AB
АК