qry_app_flow | R Documentation |
Returns a dataframe showing the ordered layout of a shinymgr app (e.g., tabs, modules, and the order of presentation).
qry_app_flow(appName, shinyMgrPath)
appName |
The name of the app in the shinymgr database (e.g. iris_explorer) |
shinyMgrPath |
File path to the main shiny manager project directory |
Dataframe consisting of the specified rows and columns
The qry_app_flow() function is described in the "app_modules" tutorial.
The shinymgr learnr tutorials include, in order:
learnr::run_tutorial(name = "intro", package = "shinymgr")
learnr::run_tutorial(name = "shiny", package = "shinymgr")
learnr::run_tutorial(name = "modules", package = "shinymgr")
learnr::run_tutorial(name = "app_modules", package = "shinymgr")
learnr::run_tutorial(name = "tests", package = "shinymgr")
learnr::run_tutorial(name = "shinymgr", package = "shinymgr")
learnr::run_tutorial(name = "database", package = "shinymgr")
learnr::run_tutorial(name = "shinymgr_modules", package = "shinymgr")
learnr::run_tutorial(name = "apps", package = "shinymgr")
learnr::run_tutorial(name = "analyses", package = "shinymgr")
learnr::run_tutorial(name = "reports", package = "shinymgr")
learnr::run_tutorial(name = "deployment", package = "shinymgr")
https://code.usgs.gov/vtcfwru/shinymgr
Other qry:
qry_app_stitching()
,
qry_insert()
,
qry_mod_info()
,
qry_row()
# set the file path to the main shinymgr directory
parentPath <- tempdir()
shinyMgrPath <- paste0(parentPath, '/shinymgr')
shinymgr_setup(parentPath = parentPath, demo = TRUE)
# get the structure of the iris_explorer app
qry_app_flow(appName = "iris_explorer", shinyMgrPath = shinyMgrPath)
# remove demo
unlink(shinyMgrPath, recursive = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.