launch_heatmaply {shinyHeatmaply} | R Documentation |
launch_heatmaply
Description
launch shiny app UI for heatmaply from R console
Usage
launch_heatmaply(obj, plotHeight = 800, viewerType = "paneViewer")
Arguments
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') |
Examples
## Not run:
if(interactive()){
data(mtcars)
launch_heatmaply(mtcars)
data(iris)
launch_heatmaply(list('Example1'=mtcars,'Example2'=iris))
}
## End(Not run)
[Package shinyHeatmaply version 0.2.0 Index]