Let’s load the data and use the R shiny template provided in 9-2-ShinyStructure.
era_table <- read.csv("data/era_table.csv", header=T) ui <- fluidPage( # Application title titlePanel("Title"), sidebarPanel( # Define some inputs here ), mainPanel( # output (from the server) go here ) ) server <- function(input, output) { # do something }