我对Shiny(和R)很陌生,并努力将我在Shiny中制作的绘图导出到png文件。

我查看了以下两个线程,但无法弄清楚:

Save plots made in a shiny app
Shiny downloadHandler doesn't save PNG files

我设法在ui中创建了下载按钮,并且服务器似乎也在执行我希望它执行的所有操作。当我在预览窗口中点击下载按钮时,一个弹出窗口要求我指定文件位置和名称,但没有保存文件。当我在浏览器窗口中执行相同操作时,会创建一个png文件,但它为空。

非常感谢任何见解!

用户界面

library(shiny)

shinyUI(fluidPage(
  titlePanel("This is a scatterplot"),

  sidebarLayout(
    sidebarPanel(

      fileInput('datafile', 'Choose CSV file',
                accept=c('text/csv', 'text/comma-separated-values,text/plain')),

      uiOutput("varselect1"),

      uiOutput("varselect2"),

      downloadButton('downloadPlot', 'Download Plot')

      ),

    mainPanel(
          h4("Here is your scatterplot"),
          plotOutput("plot1")
                  )
      ))
)


服务器

library(foreign)

shinyServer(function(session,input, output) {

    DataInput <- reactive({
      infile <- input$datafile
      if (is.null(infile)) {

        return(NULL)
      }
      read.csv(infile$datapath)
    })


    output$varselect1 <- renderUI({

      if (identical(DataInput(), '') || identical(DataInput(),data.frame())) return(NULL)

      cols <- names(DataInput())
      selectInput("var1", "Select a variable:",choices=c("---",cols[3:length(cols)]), selected=("---"))

    })

    output$varselect2 <- renderUI({

      if (identical(DataInput(), '') || identical(DataInput(),data.frame())) return(NULL)

      cols <- names(DataInput())
      selectInput("var2", "Select a variable:",choices=c("---",cols[3:length(cols)]), selected=("---"))

    })



    plotInput <- reactive({

      a <- which(names(DataInput())==input$var1)
      x_lab <- as.numeric(DataInput()[,a])


      b <- which(names(DataInput())==input$var2)
      y_lab <- as.numeric(DataInput()[,b])

      main.text <- paste("Scatterplot of the variables",colnames(DataInput())[a],"and", colnames(DataInput())[b],sep = " ", collapse = NULL)

      plot(x_lab, y_lab, main=main.text, xlab=colnames(DataInput())[a], ylab=colnames(DataInput())[b], xlim=c(min(x_lab),max(x_lab)*1.05), ylim=c(min(y_lab), max(y_lab)*1.05))

      observations <- DataInput()[,1]

      text(x_lab, y_lab, labels=observations, pos=3)


    })

    output$plot1 <- renderPlot({
          print(plotInput())
    })


    output$downloadPlot <- downloadHandler(
      filename = "Shinyplot.png",
      content = function(file) {
        png(file)
        print(plotInput())
        dev.off()
      })

  })

最佳答案

shiny-discuss google group上讨论了这种奇怪情况的解决方法。您可以做的只是将您的反应式plotInput语句更改为普通函数。不知道为什么downloadHandler与反应性对象配合不好。

# change
plotInput <- reactive({...})

# into this
plotInput <- function(){...}


您还可以在downloadHandler调用中删除打印语句:

output$downloadPlot <- downloadHandler(
      filename = "Shinyplot.png",
      content = function(file) {
        png(file)
        plotInput()
        dev.off()
      })

关于r - 从Shiny(R)下载png,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26764481/

10-16 15:58