Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakubnowicki/dibbler
Small utility functions for R
https://github.com/jakubnowicki/dibbler
utility
Last synced: 2 days ago
JSON representation
Small utility functions for R
- Host: GitHub
- URL: https://github.com/jakubnowicki/dibbler
- Owner: jakubnowicki
- License: mit
- Created: 2021-02-28T16:19:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-02-28T20:27:22.000Z (over 3 years ago)
- Last Synced: 2024-10-11T18:23:17.754Z (27 days ago)
- Topics: utility
- Language: R
- Homepage: https://jakubnowicki.github.io/dibbler/
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dibbler
![R-CMD-check](https://github.com/jakubnowicki/dibbler/workflows/R-CMD-check/badge.svg)
[![codecov](https://codecov.io/gh/jakubnowicki/dibbler/branch/main/graph/badge.svg)](https://codecov.io/gh/jakubnowicki/dibbler)`dibbler` is a small package that tries to provide small functions that
are often used, but almost always copy-pasted between projects. Need an example? `ceiling`/`floor`, but with rounded to specified decimal. With `dibbler`
you can just use `dibbler::ceiling_digits(2.343, digits = 1)` (or `floor_digits`).## Installation
You can install the latest version with `remotes`:
``` r
remotes::install_github("jakubnowicki/dibbler@main")
```