Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.