https://github.com/stephlocke/shinymodulesdesignpatterns
Code samples for different design patterns as I learn shiny modules a bit more thoroughly this time!
https://github.com/stephlocke/shinymodulesdesignpatterns
Last synced: 1 day ago
JSON representation
Code samples for different design patterns as I learn shiny modules a bit more thoroughly this time!
- Host: GitHub
- URL: https://github.com/stephlocke/shinymodulesdesignpatterns
- Owner: stephlocke
- Created: 2016-04-07T17:33:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-19T09:48:41.000Z (almost 9 years ago)
- Last Synced: 2025-04-04T16:13:37.763Z (10 days ago)
- Language: R
- Size: 89.8 KB
- Stars: 27
- Watchers: 4
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - stephlocke/shinymodulesdesignpatterns - Code samples for different design patterns as I learn shiny modules a bit more thoroughly this time! (R)
README
---
output:
md_document:
variant: markdown_github
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README/README-"
)
library(DiagrammeR)
```This repo is intended to show various design patterns I encounter in developing with shiny modules.
- [Passing input values around](input_to_multiplemodules)