3

For example when the shiny app runs, I can pass input$num and the output will be reactive, in this case in the renderPlot:

renderPlot({ 
    hist(rnorm(input$num))
)}

Is there a way to view the entire input object while the app is running?

jrzelling
  • 405
  • 2
  • 17
  • 3
    Did you have a look at this? [link](http://stackoverflow.com/questions/31920286/effectively-debugging-shiny-apps) and this `options(shiny.trace=TRUE)` – amrrs Aug 13 '16 at 19:22
  • 1
    You can probably `str(cat(input))` to see the inputs in the console, or you can render them into a textOutput – DeanAttali Aug 15 '16 at 06:50

0 Answers0