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
order
The order function in data.table (or forder according to the error message) doesn't work as expected. Replacing it with base::order works though:
forder
base::order
DT <- data.table(a = 1:4, b = 8:5) for (i in c("a", "b")) print(DT[order(DT[, i, with = FALSE])])
This gives the following error in the current data.table development version (1.9.3):
Error in forder(DT, DT[, i, with = FALSE]) : Column '1' is type 'list' which is not supported for ordering currently.
The text was updated successfully, but these errors were encountered:
e9104d7
arunsrinivasan
No branches or pull requests
The
order
function in data.table (orforder
according to the error message) doesn't work as expected. Replacing it withbase::order
works though:This gives the following error in the current data.table development version (1.9.3):
The text was updated successfully, but these errors were encountered: