-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
28 lines (21 loc) · 820 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
26
27
28
library(shiny)
# Define UI for miles per gallon application
shinyUI(pageWithSidebar(
# Application title
headerPanel("Commonality of US Names"),
sidebarPanel( textInput("bName", label = h3("Birth Name"), value = ""),
radioButtons("radio", label = h3("Gender"),
choices = list("Female" = "F", "Male" = "M"),
selected = 1),
actionButton("goButton", "Go!"),
tags$hr(),
p("Enter Name in Text Box"),
p("Select gender"),
tags$hr(),
tags$a(href="http://gregorut.github.io/NameCommonalityDocs/", "Name Commonality Tool Additional Help")
),
mainPanel(
plotOutput("plot1", width = 400, height = 300)
)
)
)