Creates a shiny server object for the test_viz shiny app
test_viz_server(input, output)
input | shiny input |
---|---|
output | shiny output |
shiny server function
# NOT RUN { library(shiny) shinyApp(ui = test_viz_ui(), server = function(input, output) { test_viz_server(input, output) } ) # }