Description Usage Arguments Details Value Examples
SystemPipeShiny app main function
1 |
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
1 2 3 4 5 6 7 8 9 | if(interactive()){
spsInit()
sps_app <- sps(
tabs = "",
server_expr = {
msg("Hello World", "GREETING", "green")
}
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.