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
fintersect
library(data.table) dtA <- data.table(y = 1) dtB <- data.table(y = 2) fintersect(dtA, dtB) #> Error in funique(y): is.data.table(x) is not TRUE
The issue is in:
data.table/R/setops.R
Line 70 in 659657a
I guess the solution could be to substitute funique(y) with something like funique(get("y", envir = parent.frame(3))).
funique(y)
funique(get("y", envir = parent.frame(3)))
The text was updated successfully, but these errors were encountered:
Thank you for reporting, will fix for coming release.
Sorry, something went wrong.
good catch!
No branches or pull requests
The issue is in:
data.table/R/setops.R
Line 70 in 659657a
I guess the solution could be to substitute
funique(y)
with something likefunique(get("y", envir = parent.frame(3)))
.The text was updated successfully, but these errors were encountered: