Description Usage Arguments Details Value Examples
Return feature selected nets based on given criteria
1 | callFeatSel(netScores, fsCutoff, fsPctPass)
|
netScores |
(matrix) matrix of net scores |
fsCutoff |
(integer) net must score at least this much in a split to 'pass' the threshold |
fsPctPass |
(numeric 0 to 1) net must pass at least this percent of splits to be considered feature-selected |
given the output of genNetScores.R and criteria for defining feature-selected (FS) nets, returns subset of nets that pass criteria. Net must score <fsCutoff> for at least <fsPctPass> considered feature-selected.
(char) names of nets that pass feature-selection
1 2 3 4 5 | data(featScores)
passed <- lapply(featScores, function(x) {
callFeatSel(x,10,0.7) # score 10/10 in >=70% of trials
})
print(passed)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.