Let’s load the data and use the R shiny template provided in 9-2-ShinyStructure.
target_mean_by_era <- read.csv("dataforshiny/target_mean_by_era.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 }