reorder_rows | R Documentation |
Reorder the rows of an Iheatmap-class
object
## S4 method for signature 'IheatmapHorizontal,integer'
reorder_rows(p, row_order)
## S4 method for signature 'IheatmapVertical,integer'
reorder_rows(p, row_order, yname = current_yaxis(p))
p |
|
row_order |
integer vector |
yname |
name of yaxis to reorder, only applicable if object is oriented vertically |
Iheatmap-class
object, which can be printed to generate
an interactive graphic
Alicia Schep
add_row_clustering
, reorder_cols
mat <- matrix(rnorm(20), ncol = 5, nrow = 4)
dend <- hclust(dist(mat))
hm <- iheatmap(mat) %>% reorder_rows(dend$order)
# 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.