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?
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?