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.
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 |
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.