powered by
Create a lens into a specific slice of a specific dimension of a multidimensional object. Not to be confused with dplyr slice.
slice_l(dimension, slice, drop = FALSE)
the dimension to slice
the slice index
whether or not to drop dimensions with length 1. Only applies to view.
# NOT RUN { (x <- matrix(1:4, ncol = 2)) view(x, slice_l(1, 2)) # x[2,, drop = FALSE] view(x, slice_l(2, 2)) # x[,2, drop = FALSE] set(x, slice_l(1,1), c(10,20)) # }
Run the code above in your browser using DataLab