weight_methods: Weight methods

Description Usage Arguments Value Examples

Description

Weight methods of function feature.removal.

Usage

1
2
3
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

1
2
3
4
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))

iteremoval documentation built on Nov. 8, 2020, 11:12 p.m.