-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui.R
80 lines (71 loc) · 2.43 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# This is the user-interface definition of a Shiny web application.
# You can find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com
#
library(shiny)
library(DT)
shinyUI(fluidPage(
# Application title
titlePanel("Estimate Samples for a Proportions Test"),
# User Inputs including alpha, beta values among others
sidebarLayout(
sidebarPanel(
radioButtons("alpha",
"Alpha Value:",
c("0.01","0.025","0.05", "0.1")),
radioButtons("tail",
"Tails:",
c("one", "two")),
radioButtons("beta",
"Beta Value:",
c("0.05","0.1","0.2", "0.25")),
sliderInput(inputId = "p1",
label = "p1(%):",
min = 0,
max = 100,
step = 1,
value = 8),
sliderInput(inputId = "p2",
label = "p2(%):",
min = 0,
max = 100,
step = 1,
value = 10),
numericInput(inputId = 'r',
label = "Ratio:",
value = 1,
min = 1,
max = 10,
step = 1),
numericInput(inputId = 'ph',
label = "Samples per Week:",
value = 25,
min = 1,
step =1)
),
# Show a table of the generated sample values
mainPanel(
tabsetPanel(id = "tabs",
tabPanel("Samples",
dataTableOutput("samples")),
tabPanel("Constant P1",
dataTableOutput("pOne"),
plotOutput("plot_pOne")),
tabPanel("Constant P2",
dataTableOutput("pTwo"),
plotOutput("plot_pTwo")),
tabPanel("Constant Alpha",
dataTableOutput("alpha")
,
plotOutput("plot_alpha")
),
tabPanel("Constant Beta",
dataTableOutput("beta")
,
plotOutput("plot_beta")
)
)
)
)
))