Is it normal that the description in the Global Environment does not update, when I add a column to my data table? And why do I have to call the object twice when I assign it to DT when adding the column?
rm(list=ls())
if(!require(data.table)) { install.packages("data.table"); require(data.table)}
DT<-data.table(v1 = runif(50, 0, 10), v2 = runif(50, 0, 10))
DT[,v3:=v1+v2]
DT
DT<-DT[,v4:=v1+v2]
DT
DT