Description Usage Arguments Details Author(s) See Also
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.
1 | server_function(input, output, session)
|
input |
shiny input parameters |
output |
shiny output parameters |
session |
shiny session parameter |
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.
Roman Pahl, roman.pahl@gmail.com
For more details see shinyServer.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.