代码之家  ›  专栏  ›  技术社区  ›  JohnCoene

R闪亮下载.RData

  •  0
  • JohnCoene  · 技术社区  · 5 年前

    如何允许闪亮应用程序的用户下载 .RData

    ui <- fluidPage(
      downloadButton("dl", "Download")
    )
    
    server <- function(input, output, session){
    
      react <- reactive(mtcars)
    
      output$dl <- downloadHandler(
        filename = function() {
          paste("data.RData")
        },
        content = function(file) {
          save(react(), file = file)
        }
      )
    }
    
    shinyApp(ui, server)
    

    以上错误:

    Listening on http://127.0.0.1:5473
    Warning: Error in save: object ‘react()’ not found
      [No stack trace available]
    
    0 回复  |  直到 5 年前