weight_methods {iteremoval}R Documentation

Weight methods

Description

Weight methods of function feature.removal.

Usage

reciprocal_colSums(gx.signal)

ones(gx.signal)

Arguments

gx.signal

The first parameter of the weight method used in feature.removal must be the exact word gx.signal.

Value

1 / (1 + colSums(gx.signal, na.rm=T)).

1.

Examples

gx.singal <- data.frame(x=1:5, t=2:6, k=c(3:6, NA))
reciprocal_colSums(gx.singal)
1 == ones(2)
1 == ones(c(4,6))

[Package iteremoval version 1.10.0 Index]