Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. shinyServer(
  2. function(input, output) {
  3. output$plotOut <- renderPlot({
  4. s <- sample(input$sampleRange, input$sampleCount, replace=TRUE)
  5. hist(s)
  6. })
  7. }
  8. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement