Make an app to display the AUC curve, the user should be able to upload the data in the excel file, and select the columns for creating charts. Below the chart provide data table with a provision to filter the data. use DT and bslib packages
Drop files here
or click to upload
library(shiny)
library(readxl)
library(ggplot2)
library(DT)
library(bslib)
source("ui.R")
source("server.R")
shinyApp(ui = ui, server = server)
Hi! I can help you with any questions about Shiny and R. What would you like to know?