R Shiny: Using variables from output for further calculation outside of function
问题 My shiny app looks as follows so far (extract): ui <- fluidPage( headerPanel("title"), sidebarLayout( sidebarPanel( h4("header"), tags$hr(), # Input: Bilanzpositionen Passiv ---- fileInput("file1", "Kollektive hochladen", multiple = TRUE, accept = c("text/csv", "text/comma-separated-values,text/plain", ".csv")), ) ) ) # # # # # server <- function(input, output) { output$contents <- renderTable({ req(input$file1) bipop <- read.csv(input$file1$datapath, sep = input$sep, quote = input$quote) if