Description Usage Arguments Value Author(s) See Also Examples
Mimics dplyr::select using base R and rlang
1 2 3 4 5 6 7 |
.data |
data.frame |
... |
unquoted variable names or character names |
data.frame
Jonathan Sidi
1 2 3 4 5 6 7 8 9 10 11 | airquality%>%
b_select(c(Day,Temp))%>%
head()
airquality%>%
b_select(c('Day','Temp'))%>%
head()
airquality%>%
b_select(-c(Day,Temp))%>%
head()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.