Description Usage Arguments Details Value Examples
View source: R/z.register_methods.R
Register new clustering methods
1 |
... |
A named list of clustering functions, see Details. |
The user-defined functions should accept at least one argument which is the input matrix.
The second optional argument should always be ...
so that parameters
for the clustering function can be passed by control
argument from cluster_terms
, simplifyGO
or simplifyEnrichment
.
If users forget to add ...
, it is added internally.
Please note, the user-defined function should automatically identify the optimized number of clusters.
The function should return a vector of cluster labels. Internally it is converted to numeric labels.
No value is returned.
1 2 3 4 5 6 | register_clustering_methods(
# assume there are 5 groups
random = function(mat, ...) sample(5, nrow(mat), replace = TRUE)
)
all_clustering_methods()
remove_clustering_methods("random")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.