library(shiny)
#library(d3heatmap)
# library(plotly)
library(heatmaply)
shinyUI(fluidPage(
titlePanel("CellMiner Heatmap"),
sidebarLayout(
sidebarPanel(
textInput("geneList", "Gene List:", "TP53 BRAF PTEN")
),
mainPanel(
# d3heatmapOutput("heatmap")
plotlyOutput("heatmap")
)
)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.