add_col_plot | R Documentation |
Add a scatter or line plot with one point per column of the main heatmap
## S4 method for signature 'Iheatmap'
add_col_plot(
p,
y,
...,
mode = c("lines+markers", "lines", "markers"),
color = NULL,
tracename = NA_character_,
showlegend = !is.na(tracename),
side = c("top", "bottom"),
layout = list(),
size = 0.2,
buffer = 0.02,
xname = current_xaxis(p),
yname = NULL,
pname = if (!is.na(tracename)) tracename else "col_plot"
)
p |
iheatmap object |
y |
y axis values |
... |
additional arguments to add to plotly scatter trace, see https://plotly.com/javascript/reference/#scatter |
mode |
mode of plot – one of "lines+markers","lines", or "markers" |
color |
color of bars |
tracename |
name of trace (for legend and hover) |
showlegend |
show in legend? |
side |
side of plot on which to add subplot |
layout |
yaxis layout list |
size |
relative size of subplot relative to main heatmap |
buffer |
amount of space to leave empty before this plot, relative to size of first heatmap |
xname |
internal name of xaxis |
yname |
internal name of yaxis |
pname |
internal name of plot |
Iheatmap-class
object, which can be printed to generate
an interactive graphic
Alicia Schep
add_col_signal
, iheatmap
,
add_col_barplot
mat <- matrix(rnorm(20), ncol = 5, nrow = 4)
hm <- iheatmap(mat) %>% add_col_plot(y = 1:5, tracename = "Strength")
# 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.