我正在创建一个Shiny应用程序,它采用Excel文件并自动处理数据。我希望用户输入他们想要查看的特定Excel工作表的名称。我在UI中找不到使用textInput的方法,并在服务器中输入$ filesheet。我的代码可能有助于更好地理解这个问题:
UI
fileInput('file1', 'Insert File',
accept = c(".xlsx"),
textInput('file1sheet','Name of Sheet (Case-Sensitive)')
服务器
inFile1 <- input$file1
sheetname1 <- input$file1sheet
df1 <- read_excel(inFile1$datapath,sheet = sheetname1)
问题是sheetname1似乎不起作用,因为read_excel不会将其识别为正确的表达式。我尝试了一些东西,包括ShQuote和as.character。如果有人有解决方案,这将是非常棒的!
谢谢!
斯特凡
我试图了解你在寻找什么,我无法重现你的错误。但也许您可以查看以下代码以查看代码失败的位置。以下应用程序允许用户选择.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)