View source: R/cluster_signatures.R
cluster_signatures | R Documentation |
Hierarchical clustering of signatures based on cosine similarity
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
plot_contribution_heatmap
## 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.