mirror of
https://github.com/bspeice/betterwithdata_cleaning_4
synced 2025-07-01 13:56:26 -04:00
first commit of web app
This commit is contained in:
24
shiny-app/ui.R
Normal file
24
shiny-app/ui.R
Normal file
@ -0,0 +1,24 @@
|
||||
library(shiny)
|
||||
|
||||
# Define UI for application that draws a histogram
|
||||
shinyUI(fluidPage(
|
||||
|
||||
# Application title
|
||||
titlePanel("Hello Shiny!"),
|
||||
|
||||
# Sidebar with a slider input for the 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")
|
||||
)
|
||||
)
|
||||
))
|
Reference in New Issue
Block a user