Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- library(shiny)
- shinyUI(fluidPage(
- # Application title
- titlePanel("銷售搜尋"),
- # Sidebar with a slider input for number of bins
- sidebarLayout(
- sidebarPanel(
- fileInput("file1","上傳檔案"),
- dateRangeInput("date","搜尋期間"),
- textInput("clean","篩選字")
- ),
- # Show a plot of the generated distribution
- mainPanel(
- dataTableOutput("mermer")
- )
- )
- ))
Add Comment
Please, Sign In to add comment