8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
While you can create a data table with a complex column and you can manipulate tit, it doesn't work with expressions in i or in by.
i
by
library(data.table) packageVersion("data.table") #> [1] '1.10.5' dt <- data.table(y = 1, x = complex(1, 1, 1)) dt[y == 1, x := x*0] #> Error in `[.data.table`(dt, y == 1, `:=`(x, x * 0)): Unsupported type 'complex' dt #> y x #> 1: 1 1+1i dt[, x, by = y] #> Error in `[.data.table`(dt, , x, by = y): Type 15 in .SD column 0 dt[, x := x*0] dt #> y x #> 1: 1 0+0i
The text was updated successfully, but these errors were encountered:
more or less a dup of #1444.
Sorry, something went wrong.
No branches or pull requests
While you can create a data table with a complex column and you can manipulate tit, it doesn't work with expressions in
i
or inby
.The text was updated successfully, but these errors were encountered: