inplace-sweep: Sweep

Description Usage Arguments Value Examples

Description

Sweep

Usage

1
2
3
sweep1_in_place(x, STATS, FUN = c("-", "+", "*", "/"))

sweep2_in_place(x, STATS, FUN = c("-", "+", "*", "/"))

Arguments

x

a matrix.

STATS

the summary statistic which is to be swept out.

FUN

the function to be used to carry out the sweep.

Value

NULL, invisibly.

Examples

1
2
3
4
5
x <- matrix(1:6, 2)
sweep(x, 2, 1:3)
x
sweep2_in_place(x, 1:3)
x

inplace documentation built on Aug. 24, 2020, 5:08 p.m.