to_plotly {iheatmapr} | R Documentation |
Convert Iheatmap to plotly spec
Description
Function to convert link{Iheatmap-class}
object to a plotly spec
either as a list or json
Usage
to_plotly_list(p)
to_plotly_json(p)
Arguments
p |
|
Value
Returns a JSON for a plotly spec for to_plotly_spec and as a list of same plotly object for to_plotly_list.
Examples
mat <- matrix(rnorm(24), nrow = 6)
hm_json <- iheatmap(mat) %>% to_plotly_json()
hm_list <- iheatmap(mat) %>% to_plotly_list()
[Package iheatmapr version 0.7.1 Index]