| select_se | R Documentation |
Select columns. To remove columns please see deselect. Also accepts -column notation.
select_se(.data, colNames)
.data |
data.frame |
colNames |
character vector of columns to keep |
.data with only selected columns
deselect, select, select_at
datasets::mtcars %.>%
select_se(., c("cyl", "gear")) %.>%
head(.)
# essentially dplyr::select_at()
data.frame(a=1, b=2) %.>% select_se(., '-b')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.