score_combine_methods {iteremoval} | R Documentation |
Score combine methods of function
feature.removal
.
To combine the feature score vectors of g1 and g0. The method
used in feature.removal
must have three parameters in order,
g1.score.feature
, g0.score.feature
, and offset
.
See details in the help page of function feature.removal
.
linear_combine(g1.score.feature, g0.score.feature, offset = 1)
g1.score.feature |
feature score vector for g1. |
g0.score.feature |
feature score vector for g0. |
offset |
adjusts the proportion of |
g1.score.feature * offset + g0.score.feature
.
linear_combine(0.2, 0.3, 2) linear_combine(1:2, 3:4, 1)