Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samuel-bohman/module-example-1
Modularized Shiny app example
https://github.com/samuel-bohman/module-example-1
r shiny
Last synced: 3 months ago
JSON representation
Modularized Shiny app example
- Host: GitHub
- URL: https://github.com/samuel-bohman/module-example-1
- Owner: samuel-bohman
- License: mit
- Created: 2016-12-20T20:09:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-15T09:34:22.000Z (over 7 years ago)
- Last Synced: 2024-05-21T02:54:47.990Z (6 months ago)
- Topics: r, shiny
- Language: R
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# module_example_1
A Shiny module is a piece of code that is included as part of a Shiny app. This simple modularized shiny app is based on the Hello Shiny example that comes with the Shiny package. You can run it by typing the following in the R console:``` {.r}
library(shiny)
runExample("01_hello")
```Hello Shiny uses the sidebarLayout, with a sliderInput in the sidebarPanel and a histogram displayed in the mainPanel. My version of the app modularizes the sidebarPanel part of the sidebarLayout.