https://github.com/predictiveecology/spades.addins
Tools and RStudio addins for 'SpaDES' and 'SpaDES' module development
https://github.com/predictiveecology/spades.addins
r-package
Last synced: 6 months ago
JSON representation
Tools and RStudio addins for 'SpaDES' and 'SpaDES' module development
- Host: GitHub
- URL: https://github.com/predictiveecology/spades.addins
- Owner: PredictiveEcology
- License: gpl-3.0
- Created: 2017-05-12T23:03:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-25T23:03:44.000Z (over 1 year ago)
- Last Synced: 2025-04-02T13:14:58.732Z (over 1 year ago)
- Topics: r-package
- Language: R
- Homepage: http://spades-addins.predictiveecology.org
- Size: 397 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# SpaDES.addins
[](https://github.com/PredictiveEcology/SpaDES.addins/actions)
[](https://cran.r-project.org/package=SpaDES.addins)
[](https://cran.r-project.org/package=SpaDES.addins)
[](https://app.codecov.io/gh/PredictiveEcology/SpaDES.addins?branch=master)

## Development tools for `SpaDES` and `SpaDES` modules
Provides 'RStudio' addins for 'SpaDES' packages and 'SpaDES' module development.
See `?SpaDES.addins` or the package vignettes for an overview of the tools provided.
## Installation
The suggested package `fastshp` can be installed with:
```{r}
install.packages("fastshp", repos = "https://rforge.net", type = "source")
```
Building packages from source requires the appropriate development libraries for your operating system (*e.g.*, Windows users should install [Rtools](https://cran.r-project.org/bin/windows/Rtools/)).
### Current stable release
**Install from CRAN:**
```r
install.packages("SpaDES.addins")
```
**Install from GitHub:**
```r
#install.packages("devtools")
library("devtools")
install_github("PredictiveEcology/SpaDES.addins", dependencies = TRUE) # stable
```
### Development version (unstable)
**Install from GitHub:**
```r
#install.packages("devtools")
library("devtools")
install_github("PredictiveEcology/SpaDES.addins", ref = "development", dependencies = TRUE) # unstable
```