array_extract {mark} | R Documentation |
Array extract
Description
Extract dimensions from an array
Usage
array_extract(.arr, ..., default = "1")
Arguments
.arr |
An array |
... |
A named list by array dimension number and the value |
default |
The default dimension index |
Value
A value from the array arr
Examples
x <- array(rep(NA, 27), dim = c(3, 3, 3))
x[1, 2, 3] <- TRUE
x[1, 2, 3]
x
array_extract(x, `2` = 2, `3` = 3)
[Package mark version 0.8.0 Index]