Get some Shiny stuff going.

This commit is contained in:
Matt
2016-04-14 17:08:05 -05:00
parent f3a565aa98
commit 881c635ad7
4 changed files with 48 additions and 27 deletions

26
ui.R
View File

@ -10,24 +10,8 @@
library(shiny)
# Define UI for application that draws a histogram
shinyUI(fluidPage(
# Application title
titlePanel("Old Faithful Geyser Data"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30)
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot")
)
)
))
shinyUI(basicPage(
h2('Journal'),
dataTableOutput('mytable')
)
)