You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Submitted by: Garrett See; Assigned to: Arun ; R-Forge link
The following did not give an error in 1.9.2, but does in 1.9.3. Using svn revision 1263:
library(data.table)
# data.table 1.9.3Forhelp type: help("data.table")
a <- data.table(BOD, key="Time")
b <- data.table(BOD, key="Time")[Time < 0] # zero row data.table
merge(a,b, all=TRUE) # works fine
# Time demand.x demand.y
#1: 18.3 NA
#2: 210.3 NA
#3: 319.0 NA
#4: 416.0 NA
#5: 515.6 NA
#6: 719.8 NA
merge(b,a, all=TRUE) # error
# Error in setcolorder(dt, c(setdiff(names(dt), end), end)) :
# neworder is length 2 but x has 3 columns.
Submitted by: Garrett See; Assigned to: Arun ; R-Forge link
The following did not give an error in 1.9.2, but does in 1.9.3. Using svn revision 1263:
Originally reported on the mailing list
The text was updated successfully, but these errors were encountered: