CRAN_Status_Badge Project Status: Active - The project has reached a stable, usable state and is being actively developed. downloads

shinyHeatmaply

Shiny application and Shiny gadget for the heatmaply pacakge. Functionality of the heatmaply package is accessed through Shiny UI.

We introduce a functionality that saves to disk a self contained copy of the htmlwidget as an html file with your data and specifications you set from the UI, so it can be embedded in webpages, blogposts and online web appendices for academic publications.

Video Introduction:

shinyHeatmaply

Install

install.packages('shinyHeatmaply')
devtools::install_github('yonicd/shinyHeatmaply')

Shiny App or Shiny Gadget?

Launching

Application:

library(shiny)
library(heatmaply)
# If you didn't get shinyHeatmaply yet, you can run it through github:
# runGitHub("yonicd/shinyHeatmaply",subdir = 'inst/shinyapp')
# or just use your locally installed package:
library(shinyHeatmaply)
runApp(system.file("shinyapp", package = "shinyHeatmaply"))

Gadget:

library(shinyHeatmaply)

#single data.frame
data(mtcars)
launch_heatmaply(mtcars)

#list
data(iris)
launch_heatmaply(list('Example1'=mtcars,'Example2'=iris))

Example of saved htmlwidget Output