py_slice {rpymat} | R Documentation |
Slice index in 'Python' arrays
Description
Slice index in 'Python' arrays
Usage
py_slice(...)
Arguments
... |
passing to |
Value
Index slice instance
Examples
if(interactive() && dir.exists(env_path())) {
x <- np_array(array(seq(20), c(4, 5)))
# equivalent to x[::2]
x[py_slice(NULL, NULL, 2L)]
}
[Package rpymat version 0.1.7 Index]