Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. library(shiny)
  2.  
  3. shinyServer(function(input, output, session) {
  4.  
  5. output$first <- renderUI({
  6. sliderInput('xScale', '',
  7. min=7.0,max=9.0, value=c(7.5, 8.5), step=0.01)
  8. })
  9.  
  10. session$onSessionEnded(function() {
  11. stopApp()
  12. })
  13. })
  14.  
  15. shinyUI(fluidPage(
  16.  
  17. titlePanel("Test"),
  18. sidebarLayout(
  19. sidebarPanel(
  20. uiOutput('first')
  21. ),
  22.  
  23. mainPanel(
  24. tabsetPanel(
  25. tabPanel('Text', includeHTML("post.html"))
  26. #tabPanel('Text', includeMarkdown('post.rmd'))
  27. )
  28. )
  29. )
  30. )
  31. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement