-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
91 lines (64 loc) · 2.45 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
output: github_document
always_allow_html: yes
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
library(bplyr)
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
[](https://travis-ci.org/yonicd/bplyr)
[](https://codecov.io/gh/yonicd/bplyr?branch=master)
[](https://www.tidyverse.org/lifecycle/#experimental)
[](http://tinyurl.com/y4cpzsxq)
# 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
```{r, eval=FALSE}
remotes::install_github('yonicd/bplyr')
```
## Current Build
```{r}
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
- arrange
- count
- filter
- group_by
- mutate
- rename
- select
- summarize
### tidyr
- gather
- spread
- unite
### todo
- do
- joins
- binds
- separate
### Similar Packages
- [freebase](https://github.com/hrbrmstr/freebase) : A ‘usethis’-esque Package for Base R Versions of ‘tidyverse’ Code
- [tbltools](https://github.com/mkearney/tbltools): Tools for Working with Tibbles
### CoC
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md).
By participating in this project you agree to abide by its terms.