Description Usage Arguments Examples
Use d3heatmapOutput
to create a UI element, and renderD3heatmap
to render the heatmap.
1 2 3 | d3heatmapOutput(outputId, width = "100%", height = "400px")
renderD3heatmap(expr, env = parent.frame(), quoted = FALSE)
|
outputId |
Output variable to read from |
width, height |
The width and height of the map (see shinyWidgetOutput) |
expr |
An expression that generates a |
env |
The environment in which to evaluate |
quoted |
Is |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | library(d3heatmap)
library(shiny)
ui <- fluidPage(
h1("A heatmap demo"),
selectInput("palette", "Palette", c("YlOrRd", "RdYlBu", "Greens", "Blues")),
checkboxInput("cluster", "Apply clustering"),
d3heatmapOutput("heatmap")
)
server <- function(input, output, session) {
output$heatmap <- renderD3heatmap({
d3heatmap(
scale(mtcars),
colors = input$palette,
dendrogram = if (input$cluster) "both" else "none"
)
})
}
shinyApp(ui, server)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.