add_row_clusters | R Documentation |
Add row groups and order rows based on groups
## S4 method for signature 'Iheatmap'
add_row_clusters(
p,
clusters,
name = "Row<br>Clusters",
reorder = TRUE,
side = c("left", "right"),
yname = current_yaxis(p),
...
)
p |
iheatmap object |
clusters |
cluster assignments, should be vector of integers, characters, or factors |
name |
name of colorbar indicating cluster membership |
reorder |
reorder rows based on clusters? default is TRUE |
side |
side of plot on which to add subplot |
yname |
name of yaxis |
... |
additional arguments to pass to |
This function is very similar to add_row_groups
; the
main difference is that with this function rows will get reordered based on
the groups.
Iheatmap-class
object, which can be printed to generate
an interactive graphic
Alicia Schep
add_row_clustering
, add_col_clusters
,
iheatmap
mat <- matrix(rnorm(20), ncol = 5, nrow = 4)
clusters <- c("A","B","A","B")
hm <- iheatmap(mat) %>% add_row_clusters(clusters)
# Print heatmap if interactive session
if (interactive()) hm
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.