sweep {base} | R Documentation |
sweep(x, MARGIN, STATS, FUN="-", ...)
x |
an array. |
MARGIN |
a giving the extents of |
STATS |
the summary statistic which is to be swept out. |
FUN |
the function to be used to carry out the sweep.
In the case of binary operators such as |
... |
optional arguments to |
An array with the same shape as x
, but with the summary
statistics swept out.
apply
.
data(attitude)
med.att <- apply(attitude, 2, median)
sweep(data.matrix(attitude), 2, med.att)# subtract the column medians