Skip to content

yonicd/bplyr

Repository files navigation

Travis-CI Build Status Codecov test coverage lifecycle Covrpage Summary

base + plyr = bplyr

Run basic functions of dplyr and tidyr with only base R and rlang.

Disclaimer: this is experimental, use deliberately and with caution.

Previously called noplyr

When could this package be useful?

  • Non DBI related data manipulations
  • Continuous integration R scripts
  • Low package dependency workflows or products

All functions in bplyr mimic specific functions in dplyr and tidyr, and have a trailing prefix b_* to them. so arrange is b_arrange and so forth.

This has been done as to not create namespace conflicts with dplyr or tidyr, as this package does not try to replace the intended full features of those packages, but create light weight, fast installing alternatives when applicable.

Installation

remotes::install_github('yonicd/bplyr')

Current Build

data.frame(package = c('rlang','dplyr','tidyr'),
           stringsAsFactors = FALSE)%>%
  bplyr::b_group_by(package)%>%
  bplyr::b_mutate(version = as.character(packageVersion(package)))%>%
  knitr::kable()
package version
dplyr 0.8.4
rlang 0.4.4
tidyr 1.0.2

dplyr

  • arrange
  • count
  • filter
  • group_by
  • mutate
  • rename
  • select
  • summarize

tidyr

  • gather
  • spread
  • unite

todo

  • do
  • joins
  • binds
  • separate

Similar Packages

  • freebase : A ‘usethis’-esque Package for Base R Versions of ‘tidyverse’ Code

  • tbltools: Tools for Working with Tibbles

CoC

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

About

basic dplyr and tidyr functionality without the tidyverse dependencies

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages