array_extract: Array extract

View source: R/array.R

array_extractR 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)

mark documentation built on Oct. 23, 2023, 9:06 a.m.