Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. library(shiny)
  2.  
  3. ui <- fluidPage(
  4.  
  5. sidebarPanel(
  6. h4("Title"),
  7. p("Subtitle",
  8. br(),"Line1",
  9. br(),"Line2",
  10. br(),"Line3"),
  11.  
  12. downloadButton("Download Metadata", label = "Download")
  13. )
  14. )
  15.  
  16. server <- function(input, output, session){
  17.  
  18. output$downlaodData <- downloadHandler(
  19. filename = function(){
  20. paste("data-", Sys.Date(), ".txt", sep = "")
  21. },
  22. content = function(file) {
  23. write.txt(data, file)
  24. }
  25. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement