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
options(datatable.WhenJisSymbolThenCallingScope = T)
When setting options(datatable.WhenJisSymbolThenCallingScope = T), it fails to protect special symbols in j. For example:
j
options(datatable.WhenJisSymbolThenCallingScope = T) DT <- data.table(a = c(1, 1, 2)) DT[, .N, by = a]
This gives a Null data.table (0 rows and 0 cols), while it should in fact produce the group counts.
Null data.table (0 rows and 0 cols)
The text was updated successfully, but these errors were encountered:
Ah yes. Thank you. Will fix.
Sorry, something went wrong.
dd24120
No branches or pull requests
When setting
options(datatable.WhenJisSymbolThenCallingScope = T)
, it fails to protect special symbols inj
. For example:This gives a
Null data.table (0 rows and 0 cols)
, while it should in fact produce the group counts.The text was updated successfully, but these errors were encountered: