library(bplyr) knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
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
R
scriptsAll 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.
remotes::install_github('yonicd/bplyr')
data.frame(package = c('rlang','dplyr','tidyr'), stringsAsFactors = FALSE)%>% bplyr::b_group_by(package)%>% bplyr::b_mutate(version = as.character(packageVersion(package)))%>% knitr::kable()
freebase : A ‘usethis’-esque Package for Base R Versions of ‘tidyverse’ Code
tbltools: Tools for Working with Tibbles
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.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.