https://github.com/rcppcore/drat
Repository for Rcpp packages
https://github.com/rcppcore/drat
Last synced: 3 months ago
JSON representation
Repository for Rcpp packages
- Host: GitHub
- URL: https://github.com/rcppcore/drat
- Owner: RcppCore
- Created: 2015-02-27T02:46:36.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T16:15:52.000Z (11 months ago)
- Last Synced: 2025-01-13T10:11:31.619Z (4 months ago)
- Homepage:
- Size: 258 MB
- Stars: 5
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## drat repository
This [drat](http://dirk.eddelbuettel.com/code/drat.html) package repository provides packages from other RcppCore code repositories.
### Usage
#### Usage via drat
```{.r}
# first add the repo
drat:::add("RcppCore")
# either install just one or more given packages
install.packages("Rcpp")
# or update already installed packages
update.packages()
```#### Usage without drat
```{r}
# pass the repo info directly to install.packages()
install.packages("Rcpp", repos="https://RcppCore.github.io/drat")
```#### Usage without drat on the shell
```{sh}
Rscript -e 'install.packages("Rcpp", repos="https://RcppCore.github.io/drat")'
```### License
Packages in this repository are available under their respective license, which is generally GPL version 2 or newer.