Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shapiromatron/rscaffold
An opinionated starter template for building an R package
https://github.com/shapiromatron/rscaffold
Last synced: 2 days ago
JSON representation
An opinionated starter template for building an R package
- Host: GitHub
- URL: https://github.com/shapiromatron/rscaffold
- Owner: shapiromatron
- License: other
- Created: 2024-02-27T19:29:33.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T19:23:57.000Z (4 months ago)
- Last Synced: 2024-11-25T06:59:59.322Z (2 months ago)
- Language: R
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RScaffold
An opinionated template for building a modern R package.
Developer commands:
```bash
# document, build, and test
R -e "devtools::document()"
R -e "devtools::build()"
R -e "devtools::install()"
R -e "devtools::test()"# generate coverage report
R -e "covr::report(file='coverage/index.html')"
```