Averages An Array Along A Dimension
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.
Mean1Dim(var, posdim, narm = TRUE, limits = NULL)
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. |
Array with one dimension less than the input array, containing the average along the posdim dimension.
History:
0.1 - 2011-04 (V. Guemas, virginie.guemas@ic3.cat) - Original code
1.0 - 2013-09 (N. Manubens, nicolau.manubens@ic3.cat) - Formatting to R CRAN
a <- array(rnorm(24), dim = c(2, 3, 4)) print(a) print(Mean1Dim(a, 2))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.