在Shiny app中阅读read_excel中的特定工作表

时间:2018-02-28 14:54:48

标签: shiny

我正在创建一个Shiny应用程序,它采用Excel文件并自动处理数据。我希望用户输入他们想要查看的特定Excel 的名称。我在UI中找不到使用textInput的方法,并在服务器中输入$ filesheet。我的代码可能有助于更好地理解这个问题:

UI

fileInput('file1', 'Insert File',
            accept = c(".xlsx"),
textInput('file1sheet','Name of Sheet (Case-Sensitive)')

SERVER

inFile1 <- input$file1
sheetname1 <- input$file1sheet
df1 <- read_excel(inFile1$datapath,sheet = sheetname1)

问题是sheetname1似乎不起作用,因为read_excel不会将其识别为正确的表达式。我尝试了一些东西,包括ShQuote和as.character。如果有人为此提供解决方案,那就太棒了!

谢谢!

的Stefan

1 个答案:

答案 0 :(得分:3)

我试图理解你在寻找什么,但我无法重现你的错误。但也许您可以查看以下代码以查看代码失败的位置。以下应用程序允许用户选择.xlsx文件,然后在显示相应的表之前检索工作表名称。

library(shiny)
library(readxl)

ui <- fluidPage(
  fileInput('file1', 'Insert File', accept = c(".xlsx")),
  textInput('file1sheet','Name of Sheet (Case-Sensitive)'),
  tableOutput("value")
)

server <- function(input, output) {

  sheets_name <- reactive({
    if (!is.null(input$file1)) {
      return(excel_sheets(path = input$file1$datapath))  
    } else {
      return(NULL)
    }
  })

  output$value <- renderTable({
    if (!is.null(input$file1) && 
        (input$file1sheet %in% sheets_name())) {
      return(read_excel(input$file1$datapath, 
                        sheet = input$file1sheet))
    } else {
      return(NULL)
    }
  })
}

shinyApp(ui, server)