R Shiny renderImage() does not recognize object 'input' [duplicate]

主宰稳场 提交于 2019-12-11 12:13:41

问题


Why does renderImage() not recognize input in the code sample below:

library(d3heatmap)
library(shiny)
library(ggplot2)


    ui <- fluidPage(
      h1("A heatmap demo"),
      selectInput("palette", "Palette", c("YlOrRd", "RdYlBu", "Greens", "Blues")),
      checkboxInput("cluster", "Apply clustering"),
      downloadButton('downloadPlot', 'Download Heatmap'),
      d3heatmapOutput("heatmap")
)

    server <- function(input, output, session) {

      output$heatmap <- renderD3heatmap({
        d3heatmap(
          scale(mtcars),
          colors = input$palette,
          dendrogram = if (input$cluster) "both" else "none"
) })

    output$downloadPlot <- renderImage(
        d3heatmap(scale(mtcars), colors = input$palette, dendrogram = if (input$cluster) "both" else "none"), 
        env = parent.frame(), 
        quoted = FALSE, 
        deleteFile = FALSE
        )

    }

shinyApp(ui = ui, server = server)

This is my error:

Error in match.arg(dendrogram) : object 'input' not found

When I remove the dendrogram = if (input$cluster) "both" else "none" line, I get the following error concerning input again:

Error in toPaletteFunc(pal) : object 'input' not found

It seems a bit counterintuitive that the object input isn't found, as I've explicitly defined it upstairs with: server <- function(input, output, session).

I've already examined existing Stack Overflow posts that generate a similar error message (e.g., R Shiny error: object input not found).

Code sample above was inspired by: https://cran.r-project.org/web/packages/d3heatmap/d3heatmap.pdf


回答1:


d3heatmap() produce the htmlwidgets class object. We can use saveWidget() function from the htmlwidgets package to save plot.

library(d3heatmap)
library(shiny)
library(htmlwidgets)

ui <- fluidPage(
    h1("A heatmap demo"),
    selectInput("palette", "Palette", c("YlOrRd", "RdYlBu", "Greens", "Blues")),
    checkboxInput("cluster", "Apply clustering"),
    downloadButton('download', 'Download Heatmap'),
    d3heatmapOutput("heatmap")
)
server <- function(input, output, session) {
    plot <- reactive({
        d3heatmap(
            scale(mtcars),
            colors = input$palette,
            dendrogram = if (input$cluster) "both" else "none"
        )
    })
    output$heatmap <- renderD3heatmap({
        plot()
    })
    output$download <- downloadHandler(
        filename = function() {
            paste0("d3heatmap-", tolower(input$palette), ".html")
        },
        content = function(file) {
            saveWidget(plot(), file)
        }
    )
}

shinyApp(ui = ui, server = server)

If you need save a plot as png see this discussion: https://github.com/ramnathv/htmlwidgets/issues/95. In short: now htmlwidgets does not support export plots as png or svg. You can see exportwidget and webshot packages as workground.



来源:https://stackoverflow.com/questions/34478268/r-shiny-renderimage-does-not-recognize-object-input

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!