https://github.com/kapsner/kdry
Kapsner's "Don't repeat yourself"-collection
https://github.com/kapsner/kdry
dry helper-functions r r-package tools
Last synced: about 1 year ago
JSON representation
Kapsner's "Don't repeat yourself"-collection
- Host: GitHub
- URL: https://github.com/kapsner/kdry
- Owner: kapsner
- License: gpl-3.0
- Created: 2022-09-20T07:10:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-12T11:02:50.000Z (almost 2 years ago)
- Last Synced: 2025-04-19T10:58:28.089Z (about 1 year ago)
- Topics: dry, helper-functions, r, r-package, tools
- Language: R
- Homepage:
- Size: 133 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# kdry - K's "Don't repeat yourself"-collection
[](https://cran.r-project.org/package=kdry)
[](https://cran.r-project.org/web/checks/check_results_kdry.html)
[](https://cran.r-project.org/package=kdry)
[](https://cran.r-project.org/package=kdry)
[](https://cran.r-project.org/package=kdry)
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[](https://github.com/kapsner/kdry/actions)
[](https://github.com/kapsner/kdry/actions)
[](https://github.com/kapsner/kdry/actions)
[](https://app.codecov.io/gh/kapsner/kdry)
This R package provides a collection of helper functions and code snippets to avoid redundancy in the spirit of the *"Don't repeat yourself"* software development principle.
| prefix | description |
| ------ | ----------- |
| - | No prefix for very basic helper functions |
| dtr_ | Data transform helper functions |
| mlh_ | Machine learning helper functions |
| pch_ | Parallel computing helper functions |
| misc_ | Miscellaneous functions |
| plt_ | Plots|
| rep_ | Reporting helper functions |
| sts_ | Statistical helper functions |
## Installation
To install from CRAN:
```{r}
install.packages("kdry")
```
You can install the development version of `kdry` with:
```{r}
install.packages("remotes")
remotes::install_github("kapsner/kdry")
```