I don't want to reassign the subsetted table with assign() or <- operator.
in classical way, I'll do this;
library(data.table)
iris2 <- iris
setDT(iris2)
iris2 <- iris2[Sepal.Width < 5,]
but if I prefer reassigning the table it takes too much from my memory, is there an option like one of the column dropping options (iris2[,Sepal.Width := NULL]) ?