https://github.com/jakubnowicki/dibbler
Small utility functions for R
https://github.com/jakubnowicki/dibbler
utility
Last synced: 3 months 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 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-28T20:27:22.000Z (over 4 years ago)
- Last Synced: 2025-02-14T12:33:17.028Z (5 months 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

[](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")
```