Creates a shiny server object for the test_viz shiny app

test_viz_server(input, output)

Arguments

input

shiny input

output

shiny output

Value

shiny server function

Examples

# NOT RUN {
library(shiny)

shinyApp(ui = test_viz_ui(),
        server = function(input, output) {
          test_viz_server(input, output)
        }
)
# }