powered by
Add y axis title to plot
# S4 method for Iheatmap add_row_title( p, title, textangle = ifelse(side == "left", -90, 90), font = get_layout(p)$font, side = c("left", "right"), size = 0.1, buffer = 0.01, xname = NULL, yname = current_yaxis(p) )
Iheatmap-class object, which can be printed to generate an interactive graphic
Iheatmap-class
iheatmap object
title of axis
angle of text
list of plotly font attributes, see https://plotly.com/javascript/reference/#layout-font
side of plot on which to add subplot
relative size of subplot relative to main heatmap
amount of space to leave empty before this plot, relative to size of first heatmap
internal name for xaxis
internal name for yaxis
Alicia Schep
add_col_title, iheatmap, add_row_labels
add_col_title
iheatmap
add_row_labels
mat <- matrix(rnorm(20), ncol = 5, nrow = 4) hm <- iheatmap(mat) %>% add_row_title("Samples") # Print heatmap if interactive session if (interactive()) hm
Run the code above in your browser using DataLab