https://github.com/predictiveecology/spades.shiny
Utilities for building 'shiny' apps for 'SpaDES' simulations
https://github.com/predictiveecology/spades.shiny
r-package shiny-apps
Last synced: over 1 year ago
JSON representation
Utilities for building 'shiny' apps for 'SpaDES' simulations
- Host: GitHub
- URL: https://github.com/predictiveecology/spades.shiny
- Owner: PredictiveEcology
- License: gpl-3.0
- Created: 2017-06-28T20:53:11.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-02-05T16:31:01.000Z (over 1 year ago)
- Last Synced: 2025-02-05T17:24:52.559Z (over 1 year ago)
- Topics: r-package, shiny-apps
- Language: R
- Homepage: http://spades-shiny.predictiveecology.org/
- Size: 1020 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/PredictiveEcology/SpaDES.shiny)
[](https://ci.appveyor.com/project/achubaty/spades.shiny/branch/master)
[](https://coveralls.io/github/PredictiveEcology/SpaDES.shiny?branch=master)
[](https://cran.r-project.org/package=SpaDES.shiny)
[](https://cran.r-project.org/package=SpaDES.shiny)

# SpaDES.shiny
Utilities for building `shiny`-based apps for `SpaDES` simulations.
## Installation
### Current stable release
**Install from CRAN:**
```r
#install.packages("SpaDES.shiny") ## not yet on CRAN. Install via GitHub per below.
```
**Install from GitHub:**
```r
#install.packages("devtools")
library("devtools")
install_github("PredictiveEcology/SpaDES.shiny", dependencies = TRUE) # stable
```
### Development version (unstable)
**Install from GitHub:**
```r
#install.packages("devtools")
library("devtools")
install_github("PredictiveEcology/SpaDES.shiny", ref = "development", dependencies = TRUE) # unstable
```
## Using the package
`SpaDES.shiny` provides you with a set of reusable shiny modules that allow you to speed up the development process, as well as an app generator that allows you to bootstrap your application.
See the accompanying vignettes to get started:
```r
browseVignettes("SpaDES.shiny")
```