Guest User

Untitled

a guest
Oct 23rd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. shinyServer(function(input, output) {
  2.  
  3. output$text <- renderText({
  4. call = system2('pdftk',stdout = TRUE)
  5. 'meh'
  6. })
  7. })
  8.  
  9. shinyUI(fluidPage(
  10. textOutput("text")
  11. ))
Add Comment
Please, Sign In to add comment