https://github.com/stufield/helpr
The helpr package contains numerous helpers, wrappers, and utilities used throughout my analysis suite. It intentionally favors base R over higher level *tidyverse* to minimize imports.
https://github.com/stufield/helpr
Last synced: 3 months ago
JSON representation
The helpr package contains numerous helpers, wrappers, and utilities used throughout my analysis suite. It intentionally favors base R over higher level *tidyverse* to minimize imports.
- Host: GitHub
- URL: https://github.com/stufield/helpr
- Owner: stufield
- License: other
- Created: 2024-09-29T18:36:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-02-17T23:30:45.000Z (4 months ago)
- Last Synced: 2026-02-18T04:51:05.742Z (4 months ago)
- Language: R
- Homepage: https://stufield.github.io/helpr/
- Size: 4.22 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r setup, include = FALSE}
options(width = 100)
Sys.setlocale("LC_COLLATE", "en_US.UTF-8") # ensure common sorting envir
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
ver <- desc::desc_get_version(".")
ver <- paste0("https://img.shields.io/badge/Version-", ver,
"-success.svg?style=flat&logo=github")
```
# The `helpr` package

[](https://cran.r-project.org/package=helpr)
[](https://github.com/stufield/helpr/actions)
[](https://cran.r-project.org/package=helpr)
[](https://app.codecov.io/gh/stufield/helpr?branch=main)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[](https://choosealicense.com/licenses/mit/)
## Overview
The `helpr` package contains numerous helper functions
necessary for generalized machine learning analyses.
It contains and exports numerous utilities and S3 generics
used throughout the my personal analysis suite.
It intentionally favors base R over higher
level *tidyverse* to keep imports to a minimum.
----------------
## Installation
```{r install-github, eval = FALSE}
# current dev version
remotes::install_github("stufield/helpr")
# or a specific version
remotes::install_github("stufield/helpr@v0.0.2")
```
----------------
## Usage
To load `helpr` simply make a call to `library()` as usual:
```{r load, eval = FALSE}
library(helpr)
```
## Help summary of the package
```{r help, eval = FALSE}
library(help = helpr)
```
## Notes about the package
* [ ] TODO
* [ ] TODO
* [ ] TODO