https://github.com/ardata-fr/Shiny-Modules-Tutorials
This repository is related to the blogpost
https://github.com/ardata-fr/Shiny-Modules-Tutorials
Last synced: 4 months ago
JSON representation
This repository is related to the blogpost
- Host: GitHub
- URL: https://github.com/ardata-fr/Shiny-Modules-Tutorials
- Owner: ardata-fr
- License: other
- Created: 2019-01-25T15:41:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-25T13:54:18.000Z (almost 6 years ago)
- Last Synced: 2024-08-13T07:15:19.385Z (8 months ago)
- Language: R
- Homepage: https://www.ardata.fr/post/2019/04/26/share-reactive-among-shiny-modules/
- Size: 243 KB
- Stars: 35
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ardata-fr/Shiny-Modules-Tutorials - This repository is related to the blogpost (R)
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```## Install the package
````{r, eval = FALSE}
# install.packages("remotes")
remotes::install_github("ardata-fr/Shiny-Modules-Tutorials")
````## List & run Shiny applications examples
````{r, eval = FALSE}
library(shinyModulesTuto)
listEx()
runEx(listEx()[1])
````## List of examples applications :
* Data from Application to Module, [Online app](https://qfazille.shinyapps.io/app-vs-module/)
````{r, eval = FALSE}
runEx("app-vs-module")
````* Data from Module to Application, [Online app](https://qfazille.shinyapps.io/module-vs-app/)
````{r, eval = FALSE}
runEx("module-vs-app")
````* Data from Application updated in Module, [Online app](https://qfazille.shinyapps.io/app-pong-module/)
````{r, eval = FALSE}
runEx("app-pong-module")
````* Application with all examples, [Online app](https://qfazille.shinyapps.io/whole-app/)
````{r, eval = FALSE}
runEx("whole-app")
````