-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
32 lines (23 loc) · 735 Bytes
/
Copy pathui.R
File metadata and controls
32 lines (23 loc) · 735 Bytes
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
# Rely on the 'WorldPhones' dataset in the datasets
# package (which generally comes preloaded).
library(datasets)
# Use a fluid Bootstrap layout
fluidPage(
# Give the page a title
titlePanel("Interest Rate Trends"),
# Generate a row with a sidebar
sidebarLayout(
# Define the sidebar with one input
sidebarPanel(
selectInput("region", "Interest Rate Code:",
choices=faithful[,2]),
# dateRangeInput("dates","Effective Dates",start = "1952-08-31",end = "2014-02-28 "),
hr(),
helpText("Interest Rate Tenor :5Y")
),
# Create a spot for the barplot
mainPanel(
plotOutput("phonePlot")
)
)
)