Description Usage Arguments Examples
View source: R/launch_heatmaply.R
launch shiny app UI for heatmaply from R console
| 1 | launch_heatmaply(obj, plotHeight = 800, viewerType = "paneViewer")
 | 
| obj | data.frame or list of data.frames | 
| plotHeight | numeric that sets the height of the plot output (default 800px) | 
| viewerType | character of the viewer to be used to launch the app to c('paneViewer','dialogViewer','browserViewer') | 
| 1 2 3 4 5 6 7 8 9 10 | ## Not run: 
if(interactive()){
data(mtcars)
launch_heatmaply(mtcars)
data(iris)
launch_heatmaply(list('Example1'=mtcars,'Example2'=iris))
}
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.