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
!
j
Reproducible example
library(data.table) #v1.11.2 dt <- data.table(a = 1, b = NA) dt[, !is.na(dt), with = FALSE] # a # 1: 1 dt <- data.table(a = 1, b = 2) dt[, !is.na(dt), with = FALSE] ## Null data.table (0 rows and 0 cols) ## Should be # a b # 1: 1 2
Source on SO
I've investigated this and seem to found the bug. I would guess it is a relatively easy fix.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Reproducible example
Source on SO
I've investigated this and seem to found the bug. I would guess it is a relatively easy fix.
The text was updated successfully, but these errors were encountered: