Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gaborcsardi/brokenpackage
broken don't use
https://github.com/gaborcsardi/brokenpackage
Last synced: 13 days ago
JSON representation
broken don't use
- Host: GitHub
- URL: https://github.com/gaborcsardi/brokenpackage
- Owner: gaborcsardi
- License: gpl-3.0
- Created: 2020-12-10T20:08:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-10T21:41:14.000Z (about 4 years ago)
- Last Synced: 2024-11-05T03:42:13.495Z (2 months ago)
- Language: R
- Size: 55.1 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![R-CMD-check](https://github.com/ITSLeeds/brokenPackage/workflows/R-CMD-check/badge.svg)](https://github.com/ITSLeeds/brokenPackage/actions)
# RpackageTemplate
Template to form the basis of ITSLeeds R packages
## Installation
Install the package with **remotes** as follows:
``` r
install.packages("remotes") # If you do not already have the remotes package
Change the contents to "user/repo", e.g:
# remotes::install_github("ropensci/stplanr") # for the stplanr package
remotes::install_github("ITSleeds/RpackageTemplate")
```## Usage
To create a new package and get it on your computer:
- Create a new repo on GitHub in an appropriate organisation. You can
use this template by clicking the “[Use this
template](https://github.com/ITSLeeds/RpackageTemplate/generate)”
button in the top right hand corner of this page.
- Clone the package onto your computer, e.g. by typing `git clone
[email protected]:itsleeds/youPackageName` in a Linux terminal (try
pressing `Ctl+Shift+T` in RStudio to get to the terminal or open
Windows Powershell)
- Change the name of the .Rproj file, e.g. with the following commands
in terminal``` bash
cd testPackage
mv RpackageTemplate.Rproj yourPackageName.Rproj
```- Open the project in RStudio as follows:
``` r
rstudioapi::openProject("/path/to/yourPackageName")
```## Continuous integration
To add continuous integration, use the following commands:
``` r
remotes::install_github("ropensci/tic")
tic::use_tic()
```You can use defaults, such as:
``` r
tic::use_tic(wizard = FALSE, linux = "ghactions", mac = "ghactions", windows = "ghactions",
deploy = "ghactions", matrix = "none")
```Which will use GitHub Actions.
If you want to create a package website, you can use the following
command:``` r
usethis::use_pkgdown()
```## Resources
See these resources for further information:
- Free and open source book on creating R packages:
- Excellent documentation on continuous integration:
-
-## Acknowledgement
Acknowledge all the fine people who helped build this package.
## Contribution
Please note that the `RpackageTemplate` project is released with a
[Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to
this project, you agree to abide by its terms.## Package Status
This package is part of ongoing research at the University of Leeds, it
is provided “as is” and is likely to be updated and changed without
warning to meet the research needs of the University.