meanrow {compositions} | R Documentation |
Computes the arithmetic mean.
meanRow(x,..., na.action=get(getOption("na.action"))) meanCol(x,..., na.action=get(getOption("na.action")))
x |
a numeric vector or matrix of data |
... |
arguments to mean |
na.action |
The na.action to be used: one of
na.omit ,na.fail ,na.pass |
Computes the arithmetic means of the rows (meanRow) or columns (meanCol) of x.
The arithmetic means of the rows (meanRow) or columns (meanCol) of x.
K.Gerald v.d. Boogaart http://www.stat.boogaart.de
data(SimulatedAmounts) meanCol(sa.tnormals) meanRow(sa.tnormals)