Description Usage Arguments Details Value Author(s) See Also Examples
Register user-defined top-value methods
1 |
... |
A named list of functions. |
The user-defined function should accept one argument which is the data matrix where the scores are calculated by rows. Rows with top scores are treated as "top rows" in cola analysis. Following is how we register "SD" (standard deviation) top-value method:
1 | register_top_value_methods(SD = function(mat) apply(mat, 1, sd))
|
Of course, you can use rowSds
to give a faster calculation of row SD:
1 | register_top_value_methods(SD = rowSds)
|
The registered top-value method will be used as defaults in run_all_consensus_partition_methods
.
To remove a top-value method, use remove_top_value_methods
.
There are four default top-value methods:
standard deviation, by rowSds
.
coefficient variance, calculated as sd/(mean+s)
where s
is the 10^th percentile of all row means.
median absolute deviation, by rowMads
.
the ATC
method.
No value is returned.
Zuguang Gu <z.gu@dkfz.de>
all_top_value_methods
lists all registered top-value methods.
1 2 3 4 5 6 | all_top_value_methods()
register_top_value_methods(
ATC_spearman = function(mat) ATC(mat, method = "spearman")
)
all_top_value_methods()
remove_top_value_methods("ATC_spearman")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.