Skip to contents

Server function for standalone app function

Value

server argument in shinyApp()

Details

The launch_app() function is as a wrapper for shinyApp():

shinyApp(movies_ui, movies_server)

In launch_app():

  • UI is stored in movies_ui()

  • server is stored in movies_server()

var_input module

mod_var_input_server() returns following reactive values:

  • x

  • y

  • z

  • alpha

  • size

  • plot_title

scatter_display module

mod_scatter_display_server() displays the ggplot2 graph with the scatter_plot() function.

Communication

The output from mod_var_input_server() should be supplied to the var_inputs argument of mod_scatter_display_server().