我创建了一个 Shiny App,它接受 Excel 和 csv 文件作为输入。此外,它应该预测可以在上传文件中找到的指标。为了能够在文件中定义正确的列,用户应该能够选择应该预测的列。这就是为什么我想要一个选择输入区域,其中显示文件的所有列名。但我没有找到正确的解决方案。
到目前为止,在以下我的应用程序中:
用户界面:
ui <- fluidPage(
#definition which file input is allowed
fileInput(
'file',
label = h4("Welche Datei soll hochgeladen werden?"),
multiple= FALSE,
accept = c(
'text/csv',
'text/comma-separated-values,text/plain',
'.csv',
'.xlsx'
)
),
服务器:
server <- function(input, output) {
#read data
data <- reactive({
validate(need(input$file, ""))
infile <- input$file
if (input$type == "1") {
read.csv(infile$datapath,
header = input$header,
sep = input$sep,
stringsAsFactors = FALSE)
} else {
read_xlsx(infile$datapath)
}
})
我在服务器中想过这样的事情,但最终无法解决问题:
names <- reactive({
df <- data()
if (is.null(df)) return(NULL)
items=names(df)
names(items)=items
return(names(items))
})
谢谢你的帮助!