【发布时间】:2021-09-19 10:21:32
【问题描述】:
到目前为止,我已经能够得到它,以便用户可以将数据上传到闪亮的应用程序(动态上传)。我怎样才能得到它,以便上传的数据框格式正确(见下面的链接)。我相信我想使用的库是 DT,但我对其他选择持开放态度。代码如下
## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
fileInput("file1", "Choose CSV File",
accept = c(
"text/csv",
"text/comma-separated-values,text/plain",
".csv")
),
tags$hr(),
checkboxInput("header", "Header", TRUE)
),
mainPanel(
tableOutput("contents")
)
)
)
server <- function(input, output) {
output$contents <- renderTable({
# input$file1 will be NULL initially. After the user selects
# and uploads a file, it will be a data frame with 'name',
# 'size', 'type', and 'datapath' columns. The 'datapath'
# column will contain the local filenames where the data can
# be found.
inFile <- input$file1
if (is.null(inFile))
return(NULL)
read.csv(inFile$datapath, header = input$header)
})
}
shinyApp(ui, server)
}
This is what I want the dataset that is uploaded to appear like for the user
【问题讨论】:
标签: r shiny shinydashboard shinyapps