-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
25 lines (23 loc) · 795 Bytes
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
library(shiny)
library(markdown)
shinyUI(pageWithSidebar(
headerPanel("R Data Exploration Tool"),
sidebarPanel(
h3("Specify Dataset"),
uiOutput("dataSetList"),
h3("Graph Settings"),
uiOutput("graphControlX"),
uiOutput("graphControlY"),
uiOutput("graphControlC"),
checkboxInput(inputId = "CasFactor",label = "Color As Factor",value = F),
checkboxInput(inputId = "showLM",label = "Show Linear Regression Line",value = F)
),
mainPanel(
tabsetPanel(
tabPanel("Plot", imageOutput('Oplot')),
tabPanel("Table", dataTableOutput("Otable")),
tabPanel("Documentation/HELP",includeMarkdown("assets/help.md"))
),
textOutput(outputId = 'warningO')
)
))