The R shiny server responsible for storing a state for each session, handling inputs from the UI to the server, and plotting outputs to the UI. The arguments are all handled by the shiny package and this function should not be instantiated manually.
server(input, output, session)
object that holds the UI state (Managed automatically by shiny)
sends new outputs to the UI (Managed automatically by shiny)
controls each open instance (Managed automatically by shiny)
Jan Okul