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
To reproduce, try:
DT <- data.table(x = as.complex(1:5)) DT[1] ## Error in `[.data.table`(DT, 1) : Unknown column type 'complex'
Similarly:
DT <- data.table(x = as.raw(1:5)) DT[1] ## Error in `[.data.table`(DT, 1) : Unknown column type 'raw'
The problem appears to be originating from the line:
ans[[target]] = .Call(CsubsetVector,x[[source]],irows)
Loosely related issue: #602
The text was updated successfully, but these errors were encountered:
687a386
Updated README for #982.
9a1f4d4
arunsrinivasan
No branches or pull requests
To reproduce, try:
Similarly:
The problem appears to be originating from the line:
Loosely related issue: #602
The text was updated successfully, but these errors were encountered: