Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upError in `fintersect` if the first data table contains a column called "y" #3034
Comments
|
Thank you for reporting, will fix for coming release. |
|
good catch! |
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))).