demoShiny {demoShiny} | R Documentation |
demoShiny
Description
Runs a Shiny app as demo or shows an overview of all Shiny demo apps related to a topic
.
If more than one app relates to topic
a list of apps is returned otherwise the app is run.
For more details see vignettes('demoShiny')
.
Usage
demoShiny(topic)
Arguments
topic |
character: the topic which should be demonstrated |
Value
nothing
Examples
# collect all apps of loaded packages
demoShiny()
# collect all apps of the package demoShiny or with the name demoShiny
demoShiny('demoShiny')
if(interactive()) {
demoShiny('demoShiny::hist')
demoShiny('silhouette')
# use partial matching
demoShiny('silh')
}
[Package demoShiny version 0.1 Index]