Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s-fleck/sfmisc
A collection of private utility functions
https://github.com/s-fleck/sfmisc
Last synced: 10 days ago
JSON representation
A collection of private utility functions
- Host: GitHub
- URL: https://github.com/s-fleck/sfmisc
- Owner: s-fleck
- License: other
- Created: 2018-06-04T13:43:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-16T06:23:35.000Z (about 1 year ago)
- Last Synced: 2024-12-01T12:47:17.813Z (11 days ago)
- Language: R
- Homepage: https://s-fleck.github.io/sfmisc/
- Size: 720 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - s-fleck/sfmisc - A collection of private utility functions (R)
README
# sfmisc
Utility functions that I use across many of my packages, but that
don't warrant an external dependency. All functions in sfmisc depend only on
base-R.sfmisc can be loaded like any normal R package, but it can also be
embedded into other R packages with `sfmisc::use_sfmisc()`. Since all functions
are small and self-contained, this is a convenient way to get some extra
utilities into an R-package without adding an external dependency.**Note:** Many (but not all) of the helpers included in this package overlap
with tidyverse functions of the same name (but without compilation dependencies)## Installation
[![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)
``` r
# install.packages("devtools")
devtools::install_github("s-fleck/sfmisc")
```