Guest User

Untitled

a guest
Sep 22nd, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. library(shiny)
  2.  
  3. shinyUI(fluidPage(
  4.  
  5. # Application title
  6. titlePanel("銷售搜尋"),
  7.  
  8. # Sidebar with a slider input for number of bins
  9. sidebarLayout(
  10. sidebarPanel(
  11. fileInput("file1","上傳檔案"),
  12. dateRangeInput("date","搜尋期間"),
  13. textInput("clean","篩選字")
  14. ),
  15.  
  16. # Show a plot of the generated distribution
  17. mainPanel(
  18. dataTableOutput("mermer")
  19. )
  20. )
  21. ))
Add Comment
Please, Sign In to add comment