library(bplyr)

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

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?

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()

dplyr

tidyr

todo

Similar Packages

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.



yonicd/noplyr documentation built on Feb. 22, 2020, 11:26 a.m.