从Shiny(R)下载png

sba*_*sba 14 png r download shiny

我对Shiny(和R)很陌生,并且正在努力将我在Shiny制作的情节导出为png文件.

我看了这两个线程,但无法弄清楚:

保存在闪亮的应用程序中制作的图片 Shiny downloadHandler不保存PNG文件

我设法在ui中创建下载按钮,服务器似乎也在做我想做的一切.当我点击预览窗口中的下载按钮时,弹出窗口会要求我指定文件位置和名称,但不保存任何文件.当我在浏览器窗口中执行相同操作时,会创建一个png文件但它是空的.

任何见解都非常感谢!

ui.R

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")
                  )
      ))
)
Run Code Online (Sandbox Code Playgroud)

server.R

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()
      })    

  })  
Run Code Online (Sandbox Code Playgroud)

cde*_*man 17

针对闪亮讨论谷歌小组讨论了这种奇怪场景的解决方法.您可以做的只是将您的被动plotInput语句更改为正常功能.不知道为什么downloadHandler不和反应对象玩得好.

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

# into this
plotInput <- function(){...}
Run Code Online (Sandbox Code Playgroud)

您还可以删除downloadHandler调用中的print语句:

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