Skip to content

Instantly share code, notes, and snippets.

View JulianStopp's full-sized avatar

Julian Stopp JulianStopp

  • Institute of Science and Technology
  • Austria
View GitHub Profile
@stephlocke
stephlocke / app.R
Last active April 2, 2024 09:21
Demo shiny app for multiple file uploads and a single read step
library(shiny)
library(data.table)
ui <- fluidPage(
titlePanel("Multiple file uploads"),
sidebarLayout(
sidebarPanel(
fileInput("csvs",
label="Upload CSVs here",
multiple = TRUE)