Ниже приведен код моего блестящего приложения.Конечная цель для пользователя состоит в том, чтобы загрузить 2 файла CSV, которые имеют одинаковые заголовки столбцов, и выходные данные должны быть строками, которые отличаются между файлами 2 CSV.Кажется, приложение загружает CSV-файлы, но в блестящем приложении таблица не отображается.Кроме того, я надеюсь в конце концов экспортировать полную таблицу вывода в csv, но мне еще предстоит включить это в мой код.
library(shiny)
library(dplyr)
library(gridExtra)
library(grid)
library(stringr)
ui <- fluidPage(
titlePanel("Uploading Files"),
sidebarLayout(
sidebarPanel(
fileInput("file1", "Choose First Data File",
multiple = FALSE, accept = c("text/csv", "text/comma-separated-values, text/plain",
".csv")),
fileInput("file2", "Choose Second Data File",
multiple = FALSE, accept = c("text/csv", "text/comma-separated-values, text/plain",
".csv")),
tags$hr(),
checkboxInput("header", "Header", TRUE),
radioButtons("sep", "Separator", choices = c(Comma = ",",
Semicolon = ";",
Tab = "\t"),
selected = ","),
radioButtons("quote", "Quote", choices = c(None = "",
"Double Quote" = '"',
"Single Quote" = "'"),
selected = '"'),
tags$hr(),
radioButtons("disp", "Display", choices = c(Head = "head", All = "all"), selected = "head")
),
mainPanel(
tableOutput("contents", "export")
)
)
)
options(shiny.maxRequestSize = 30*1024^2)
server <- function(input, output) {
data <- reactive({
df <- read.csv(input$file1$datapath,
header = input$header
quote = input$quote)
df2 <- read.csv(input$file2$datapath,
header = input$header
quote = input$quote)
df$COLUMNA <- str_replace_all(df$COLUMNA, "[[:punct:]]", "")
df2$COLUMNA <- str_replace_all(df2$COLUMNA, "[[:punct:]]", "")
diff_df <- anti_join(df, df2, by = c("COLUMNA", "COLUMNB", "COLUMNC"))
return(diff_df)
})
}
output$contents <- renderTable({
req(input$file1, input$file2)
if(input$disp == "head") {
head(data()$diff_df)
}
else {data()$diff_df}
})
shinyApp(ui, server)