server_function: Shiny server function

Description Usage Arguments Details Author(s) See Also

Description

The server-side logic of the Shiny application is defined/started via the function shinyServer, which itself has a function as its argument, which, in turn, is defined here.

Usage

1
server_function(input, output, session)

Arguments

input

shiny input parameters

output

shiny output parameters

session

shiny session parameter

Details

Note that this function does not return anything, but rather the work is done in the function body, using and modifying the input, output, and session parameters as well as calling other shiny functions such as observe and observeEvent, in order to control elements of the GUI.

Author(s)

Roman Pahl, roman.pahl@gmail.com

See Also

For more details see shinyServer.


rpahl/Squash documentation built on May 28, 2019, 12:35 a.m.