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
On DelayedArray 0.19.4:
x <- list(matrix(runif(100), 10, 10)) lapply(x, "[", i=1:5, j=1:2, drop=FALSE) ## [[1]] ## [,1] [,2] ## [1,] 0.5664114 0.89343894 ## [2,] 0.9693973 0.07918907 ## [3,] 0.1310845 0.20746916 ## [4,] 0.6174420 0.48100379 ## [5,] 0.5324374 0.82014878 library(DelayedArray) y <- list(DelayedArray(x[[1]])) lapply(y, "[", i=1:5, j=1:2, drop=FALSE) ## Error in eval(subscript, envir = eframe, enclos = eframe) : ## '...' used in an incorrect context
Not 100% sure what's happening here, just that there's some voodoo stuff going on with sys.call().
sys.call()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On DelayedArray 0.19.4:
Not 100% sure what's happening here, just that there's some voodoo stuff going on with
sys.call()
.The text was updated successfully, but these errors were encountered: