Description Usage Arguments Value See Also Examples
View source: R/cluster_signatures.R
Hierarchical clustering of signatures based on cosine similarity
1 | cluster_signatures(signatures, method = "complete")
|
signatures |
Matrix with 96 trinucleotides (rows) and any number of signatures (columns) |
method |
The agglomeration method to be used for hierarchical clustering. This should be one of "ward.D", "ward.D2", "single", "complete", "average" (= UPGMA), "mcquitty" (= WPGMA), "median" (= WPGMC) or "centroid" (= UPGMC). Default = "complete". |
hclust object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Get signatures
signatures <- get_known_signatures()
## See the 'mut_matrix()' example for how we obtained the mutation matrix:
mut_mat <- readRDS(system.file("states/mut_mat_data.rds",
package = "MutationalPatterns"
))
## Hierarchically cluster the cancer signatures based on cosine similarity
hclust_signatures <- cluster_signatures(signatures)
## Plot dendrogram
plot(hclust_signatures)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.