https://github.com/tiernanmartin/shmodules
A collection of Shiny modules for data exploration and visualization
https://github.com/tiernanmartin/shmodules
Last synced: 5 months ago
JSON representation
A collection of Shiny modules for data exploration and visualization
- Host: GitHub
- URL: https://github.com/tiernanmartin/shmodules
- Owner: tiernanmartin
- Archived: true
- Created: 2016-09-06T17:03:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-17T19:02:52.000Z (over 7 years ago)
- Last Synced: 2024-08-13T07:15:17.171Z (8 months ago)
- Language: R
- Homepage:
- Size: 52.1 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - tiernanmartin/shmodules - A collection of Shiny modules for data exploration and visualization (R)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# shmodules
This package is a collection of functions that act as "building blocks" for shiny modules. The package is primarily for internal use.
### Installation
```{r installation, eval = FALSE}
devtools::install_github("tiernanmartin/shmodules")
```
### Quick demosWhile this package is made up of many functions, the intent is for them to be used in concert to create [shiny modules](http://shiny.rstudio.com/articles/modules.html), which are added to apps.
Examples of these modules can be accessed with the `shmodules::launchExample()` function, as demonstrated below:
```{r, eval=FALSE}
#Run this code in the console
shmodules::launchExample(name = 'linkedScatter')
```