R/ol_ui.R

Defines functions ol_ui

ol_ui<-function(){
library(shiny)
shinyUI(fluidPage(
  titlePanel("Outliers"),
  sidebarLayout(
    sidebarPanel(
      width = 3,
      textInput(
        'exp',
        'Experiment',
        value = "",
        width = NULL,
        placeholder = NULL
      ),
      fileInput("file", label = h3("File input"), multiple = T),
      radioButtons("group", "Grouping:",
                   c("All", "byFile")),
      radioButtons("ptype", "Plot Type:",
                   c("Density", "Bar")),
      radioButtons("copy_asyrs", "include asyr files in export:",
                   c("Yes", "No")),
      downloadButton('export', "Export as Zip")
      
    ),
    mainPanel(plotOutput("olplot")
              #,dataTableOutput('table')
              )
  )
))
}
JARS3N/LiveLongAndProsper documentation built on Feb. 7, 2023, 1:11 a.m.