Learn R Programming

s2dverification (version 2.10.3)

Mean1Dim: Averages An Array Along A Dimension

Description

Averages the array along the posdim dimension along the user specified dimension. The user can specify a subset of the dimension to take the mean along.

Usage

Mean1Dim(var, posdim, narm = TRUE, limits = NULL)

Arguments

var

Matrix to average.

posdim

Dimension to average along.

narm

Ignore NA (TRUE) values or not (FALSE).

limits

Limits to average between. Default is to take the mean along the entire dimension.

Value

Array with one dimension less than the input array, containing the average along the posdim dimension.

Examples

Run this code
# NOT RUN {
a <- array(rnorm(24), dim = c(2, 3, 4))
print(a)
print(Mean1Dim(a, 2))
# }

Run the code above in your browser using DataLab