weight_methods {iteremoval} | R Documentation |
Weight methods of function feature.removal
.
reciprocal_colSums(gx.signal) ones(gx.signal)
gx.signal |
The first parameter of the weight method used in
|
1 / (1 + colSums(gx.signal, na.rm=T))
.
1
.
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))