sps {systemPipeShiny} | R Documentation |
SystemPipeShiny app main function
sps(tabs = "", server_expr = NULL, app_path = getwd())
tabs |
custom visualization tab IDs that you want to display, in a character
vector. Use |
server_expr |
additional top level sever expression you want
to run. This will run after the default server expressions. It means you can
have access to internal server expression objects, like the
|
app_path |
SPS project path |
You must set the project root as working directory for this function to find required files.
a list contains the UI and server
if(interactive()){ spsInit() sps_app <- sps( tabs = "", server_expr = { msg("Hello World", "GREETING", "green") } ) }