modify_along_dim {listarrays} | R Documentation |
Modify an array by mapping over 1 or more dimensions
Description
This function can be thought of as a version of base::apply()
that is
guaranteed to return a object of the same dimensions as it was input. It also
generally preserves attributes, as it's built on top of [<-
.
Usage
modify_along_dim(X, which_dim, .f, ...)
modify_along_rows(X, .f, ...)
modify_along_cols(X, .f, ...)
Arguments
X |
An array, or a list of arrays |
which_dim |
integer vector of dimensions to modify at |
.f |
a function or formula defining a function(same semantics as
|
... |
passed on to |
Value
An array, or if X
was a list, a list of arrays of the same shape as
was passed in.
Examples
x <- array(1:6, 1:3)
modify_along_dim(x, 3, ~mean(.x))
modify_along_dim(x, 3, ~.x/mean(.x))
[Package listarrays version 0.4.0 Index]