We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Submitted by: Michele Carriero; Assigned to: Arun ; R-Forge link
Hello, please consider the following two assignments to an element of a list column, which I think should not give the same result:
library(data.table) dt <- data.table(id=1:2, comment=vector(mode="list", length=2)) dt[1L, comment := 1] a<-dt$comment dt[1L, comment := list(list(1))] b<-dt$comment > identical(a, b) # [1] TRUE
This possible bug came up after a Arun's answer on SO:
The text was updated successfully, but these errors were encountered:
arunsrinivasan
No branches or pull requests
Submitted by: Michele Carriero; Assigned to: Arun ; R-Forge link
Hello, please consider the following two assignments to an element of a list column, which I think should not give the same result:
This possible bug came up after a Arun's answer on SO:
The text was updated successfully, but these errors were encountered: