inplace-sweep {inplace} | R Documentation |
Sweep
sweep1_in_place(x, STATS, FUN = c("-", "+", "*", "/")) sweep2_in_place(x, STATS, FUN = c("-", "+", "*", "/"))
x |
a matrix. |
STATS |
the summary statistic which is to be swept out. |
FUN |
the function to be used to carry out the sweep. |
NULL
, invisibly.
x <- matrix(1:6, 2) sweep(x, 2, 1:3) x sweep2_in_place(x, 1:3) x