forked from COVIDiSTRESS/COVIDiStress-Shiny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShiny_All-in-1.R
34 lines (33 loc) · 1.06 KB
/
Shiny_All-in-1.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
26
27
28
29
30
31
32
33
library(shiny)
library(shinythemes)
ui <- fluidPage(
navbarPage(theme = shinytheme("flatly"), collapsible = TRUE,
"COVIDiSURVEY",
tabPanel("Sample Description",
sidebarLayout(
sidebarPanel(),
mainPanel(
tabsetPanel(
tabPanel("Gender"),
tabPanel("Age"),
tabPanel("Edu")
)
)
)
),
tabPanel("Results",
sidebarLayout(
sidebarPanel(),
mainPanel(
tabsetPanel(
tabPanel("Isolation"),
tabPanel("Stress"),
tabPanel("Corona Concern")
)
)
)
)
)
)
server <- function(input, output) {}
shinyApp(ui = ui, server = server)